* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-color: #FFFFFF;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #FFFFFF;
    color: #fff;
}

/* Header */
.header {
    background-color: #00031F;
    border-bottom: 1px solid #1a1f2e;
}

.header-content {
    display: flex;
    max-width: 1440px;
    width: 100%;
    padding: 16px 56px;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 50px;
    width: auto;
}

.logo-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #b8860b, #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1.5rem;
}

.logo-letter {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav a:hover {
    color: #ffd700;
}

.nav .btn-buy-tickets,
a.btn-buy-tickets {
    display: inline-block;
    background-color: #fff;
    color: #222A35 !important;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.16px;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s;
}

.nav .btn-buy-tickets:hover,
a.btn-buy-tickets:hover {
    transform: scale(1.05);
    color: #222A35 !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.raffle-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.raffle-logo img {
    max-width: 300px;
    height: auto;
}

.raffle-logo-fallback {
    display: inline-block;
}

.logo-badge {
    background: linear-gradient(135deg, #1a1f2e 0%, #0a0e1a 100%);
    border: 3px solid #ffd700;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    text-align: center;
}

.badge-text {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.badge-logo {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0.5rem 0;
    letter-spacing: 3px;
}

.badge-raffle {
    display: block;
    font-size: 1.2rem;
    letter-spacing: 4px;
    margin-top: 0.5rem;
}

.hero-description {
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: #FFF;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Raffle Card */
.raffle-card {
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 100%);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.draw-date {
    margin-bottom: 2rem;
}

.draw-label {
    display: block;
    color: #D3D8E0;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.draw-info {
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.jackpot-section {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.jackpot-item {
    text-align: center;
}

.jackpot-label {
    display: block;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    color: #D3D8E0;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jackpot-amount {
    text-align: center;
    font-family: 'Anton', sans-serif;
    font-size: 72px;
    font-style: normal;
    font-weight: 400;
    line-height: 75px;
    color: #FFF;
    text-transform: uppercase;
}

.btn-buy-tickets-large {
    display: inline-block;
    background-color: #fff;
    color: #222A35;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.16px;
    border: none;
    padding: 1rem 3rem;
    border-radius: 30px;
    cursor: pointer;
    margin: 2rem 0 1rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-buy-tickets-large:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.link-previous-winners {
    display: inline-block;
    color: #fff;
    text-decoration: underline;
    font-size: 0.95rem;
    margin-top: 1rem;
    transition: color 0.3s;
}

.link-previous-winners:hover {
    color: #ffd700;
}

/* Buy Tickets Section */
.buy-tickets-section {
    background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.buy-tickets-content {
    max-width: 800px;
    margin: 0 auto;
}

.buy-tickets-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1.5rem;
}

.buy-tickets-description {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* App Section */
.app-section {
    background: #FFFFFF;
    padding: 4rem 2rem;
    color: #000;
    position: relative;
}

.app-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.app-title {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    color: #00031F;
    margin-bottom: 1rem;
}

.app-description {
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: #00031F;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.app-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.app-button {
    display: inline-block;
    transition: transform 0.2s;
    position: relative;
    z-index: 10;
}

.app-button:hover {
    transform: scale(1.05);
}

.app-button img {
    height: 70px;
    width: auto;
}

.app-button img[alt*="App Store"] {
    height: 54px;
}

.phone-mockups {
    position: relative;
    height: 600px;
    margin-top: 3rem;
    background: #FFFFFF;
}

.decoration {
    position: absolute;
}

.star {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700, #b8860b);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    z-index: 3;
}

.star-1 {
    top: 15%;
    left: 5%;
    opacity: 0.8;
}

.star-2 {
    top: 50%;
    right: 10%;
    opacity: 0.6;
    transform: scale(0.8);
}

.star-3 {
    bottom: 15%;
    right: 40%;
    opacity: 0.7;
    transform: scale(0.6);
}

.dot {
    width: 20px;
    height: 20px;
    background-color: #c41e3a;
    border-radius: 50%;
    z-index: 3;
}

.dot-1 {
    top: 25%;
    left: 15%;
    opacity: 0.8;
}

.dot-2 {
    top: 10%;
    right: 30%;
    opacity: 0.7;
    transform: scale(0.8);
}

.dot-3 {
    bottom: 25%;
    left: 10%;
    opacity: 0.6;
    transform: scale(1.2);
}

/* Palm Trees */
.palm-tree {
    position: fixed;
    height: 600px;
    width: auto;
    opacity: 0.7;
    pointer-events: none;
    z-index: 1;
}

.palm-tree-left {
    left: 0;
    top: 80px;
}

.palm-tree-right {
    right: 0;
    top: 80px;
}

/* Phone Mockups */
.phone-mockup {
    position: absolute;
    height: 600px;
    width: auto;
    z-index: 2;
}

.phone-left {
    left: 2%;
    bottom: -50px;
    width: 606.707px;
    height: 677.859px;
    transform: rotate(-41.238deg);
}

.phone-right {
    right: 2%;
    bottom: -50px;
    width: 877px;
    height: 821px;
    transform: rotate(7.703deg);
}

/* Footer */
.footer {
    background-color: #00031F;
    padding: 2rem;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background-color 0.3s, transform 0.2s;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.copyright {
    font-size: 0.85rem;
    color: #888;
    letter-spacing: 1px;
}

/* FAQ Section */
.faq-section {
    background: #FFFFFF;
    padding: 4rem 2rem;
    min-height: 60vh;
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #00031F;
    margin-bottom: 0.5rem;
}

.faq-subtitle {
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    color: #666;
    margin-bottom: 3rem;
}

.faq-category {
    margin-bottom: 3rem;
}

.category-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #C41E3A;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #C41E3A;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #F8F9FA;
    border-radius: 8px;
    border-left: 4px solid #C41E3A;
}

.faq-question {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #00031F;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-answer {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ol {
    margin: 1rem 0 1rem 1.5rem;
    padding-left: 0.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.faq-answer a {
    color: #C41E3A;
    text-decoration: underline;
    transition: color 0.3s;
}

.faq-answer a:hover {
    color: #8b0000;
}

.faq-answer strong {
    color: #00031F;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    /* Header */
    .header {
        padding: 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        width: 100%;
    }
    
    .logo-container {
        width: 100%;
        justify-content: center;
    }
    
    .header-logo {
        height: 40px;
    }

    .nav {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        align-items: stretch;
    }
    
    .nav a {
        font-size: 14px;
        text-align: center;
        padding: 0.5rem;
    }
    
    .nav .btn-buy-tickets,
    a.btn-buy-tickets {
        width: 100%;
        padding: 0.75rem 1rem;
        text-align: center;
    }

    /* Hero Section */
    .hero {
        padding: 2rem 1rem;
    }
    
    .raffle-logo img {
        max-width: 200px;
    }
    
    .hero-description {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 2rem;
    }
    
    /* Raffle Card */
    .raffle-card {
        padding: 1.5rem;
    }
    
    .draw-info {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .jackpot-section {
        flex-direction: column;
        gap: 1.5rem;
    }

    .jackpot-amount {
        font-size: 48px;
        line-height: 50px;
    }
    
    .jackpot-label {
        font-size: 14px;
        line-height: 14px;
    }
    
    .btn-buy-tickets-large {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    /* App Section */
    .app-section {
        padding: 2rem 1rem;
    }
    
    .app-title {
        font-size: 24px;
        line-height: 28px;
    }
    
    .app-description {
        font-size: 14px;
        line-height: 20px;
    }
    
    .app-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .app-button img {
        height: 50px;
    }
    
    .app-button img[alt*="App Store"] {
        height: 38px;
    }
    
    /* Phone Mockups */
    .phone-mockups {
        height: 400px;
    }
    
    .phone-mockup {
        height: 400px;
    }
    
    .phone-left {
        left: -5%;
        bottom: -100px;
        width: 350px;
        height: auto;
    }
    
    .phone-right {
        right: -5%;
        bottom: -100px;
        width: 500px;
        height: auto;
    }
    
    /* Palm Trees */
    .palm-tree {
        height: 400px;
    }
    
    /* Decorative Elements */
    .star {
        width: 25px;
        height: 25px;
    }
    
    .dot {
        width: 12px;
        height: 12px;
    }
    
    /* Footer */
    .footer {
        padding: 1.5rem 1rem;
    }
    
    .social-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    /* FAQ Section */
    .faq-section {
        padding: 2rem 1rem;
    }
    
    .faq-title {
        font-size: 36px;
    }
    
    .faq-subtitle {
        font-size: 16px;
    }
    
    .category-title {
        font-size: 20px;
    }
    
    .faq-item {
        padding: 1rem;
    }
    
    .faq-question {
        font-size: 16px;
    }
    
    .faq-answer {
        font-size: 15px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .header-content {
        padding: 0.75rem;
    }
    
    .header-logo {
        height: 35px;
    }
    
    .nav a {
        font-size: 13px;
    }
    
    .raffle-logo img {
        max-width: 150px;
    }
    
    .hero-description {
        font-size: 13px;
        line-height: 18px;
        padding: 0 0.5rem;
    }
    
    .raffle-card {
        padding: 1rem;
    }
    
    .draw-info {
        font-size: 1rem;
    }
    
    .jackpot-amount {
        font-size: 36px;
        line-height: 40px;
    }
    
    .jackpot-label {
        font-size: 13px;
    }
    
    .btn-buy-tickets-large {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .app-title {
        font-size: 20px;
        line-height: 24px;
    }
    
    .app-description {
        padding: 0 0.5rem;
    }
    
    .app-button img {
        height: 45px;
    }
    
    .app-button img[alt*="App Store"] {
        height: 34px;
    }
    
    .phone-left {
        width: 250px;
        left: -10%;
    }
    
    .phone-right {
        width: 350px;
        right: -10%;
    }
    
    .palm-tree {
        height: 300px;
    }
    
    .buy-tickets-title {
        font-size: 2rem;
    }
    
    .buy-tickets-description {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
    
    /* FAQ Section */
    .faq-section {
        padding: 1.5rem 0.75rem;
    }
    
    .faq-title {
        font-size: 28px;
    }
    
    .faq-subtitle {
        font-size: 14px;
        margin-bottom: 2rem;
    }
    
    .category-title {
        font-size: 18px;
    }
    
    .faq-item {
        padding: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .faq-question {
        font-size: 15px;
    }
    
    .faq-answer {
        font-size: 14px;
    }
    
    .faq-answer ol {
        margin-left: 1rem;
        padding-left: 0.25rem;
    }
}

/* Loading state */
.loading {
    opacity: 0.5;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}
