/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0e1a;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header-top {
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
}

.nav a:hover {
    color: #7c3aed;
    background: rgba(124, 58, 237, 0.1);
}

.cta-header .cta-btn {
    background: linear-gradient(45deg, #7c3aed, #a855f7);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.cta-header .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1b3a 50%, #2d1b69 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(124, 58, 237, 0.3) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #a855f7);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(45deg, #ef4444, #dc2626);
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(239, 68, 68, 0.4);
}

.bonus-card {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
}

.bonus-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.bonus-amount {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Main Content */
.main-content {
    padding: 80px 0;
    background: #0a0e1a;
}

.content-block {
    margin-bottom: 80px;
    text-align: center;
}

.content-block h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #ffffff;
    font-weight: 700;
}

.content-block h3 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: #a855f7;
    font-weight: 600;
}

.content-block p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.content-block ul {
    max-width: 800px;
    margin: 30px auto;
    text-align: left;
    list-style: none;
}

.content-block li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    opacity: 0.9;
}

.content-block li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #7c3aed;
    font-weight: bold;
}

.text-image-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 40px auto;
    max-width: 1000px;
}

.content-img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-container {
    margin: 50px 0;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(45deg, #ef4444, #dc2626);
    color: white;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.4);
}

/* FAQ Section */
.faq-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 60px 40px;
    border-radius: 20px;
    margin-top: 80px;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #ffffff;
}

.faq-item {
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item h3 {
    font-size: 1.5rem;
    color: #7c3aed;
    margin-bottom: 15px;
    text-align: left;
}

.faq-item p {
    text-align: left;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #050814;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3,
.footer-links h4,
.providers h4,
.payments h4 {
    color: #7c3aed;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-info p,
.footer-links a {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #7c3aed;
}

.age-warning {
    color: #ef4444 !important;
    font-weight: bold;
    opacity: 1 !important;
}

.update-date {
    font-size: 0.9rem;
    opacity: 0.7;
}

.provider-logos,
.payment-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.provider-logo,
.payment-logo {
    width: 80px;
    height: 40px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
        padding: 10px 0;
    }
    
    .nav {
        display: none;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .content-block h2 {
        font-size: 2rem;
    }
    
    .content-block h3 {
        font-size: 1.5rem;
    }
    
    .text-image-block {
        flex-direction: column;
        gap: 20px;
    }
    
    .content-img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .provider-logos,
    .payment-logos {
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .bonus-card {
        padding: 30px 20px;
    }
    
    .bonus-amount {
        font-size: 2.5rem;
    }
    
    .content-block {
        margin-bottom: 60px;
    }
    
    .content-block p,
    .content-block li {
        font-size: 1rem;
    }
}
.author-bio {
    background-color: #2a2a2a;
    padding: 40px 0;
    border-top: 1px solid #ddd;
    margin-top: 40px;
}

.author-container {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.author-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ccc;
}

.author-text {
    flex: 1;
    min-width: 250px;
}

.author-text h3 {
    margin-top: 0;
    font-size: 1.5em;
    color: #fffffff;
}

.author-text p {
    margin-top: 10px;
    font-size: 1em;
    color: #ffffff;
    line-height: 1.6;
}