/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Age Gate Modal */
.age-gate-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.age-gate-modal.age-gate-active {
    opacity: 1;
    visibility: visible;
}

.age-gate-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.age-gate-content {
    position: relative;
    z-index: 1;
    max-width: 500px;
    width: 90%;
    margin: 0 auto;
}

.age-gate-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.age-gate-modal.age-gate-active .age-gate-card {
    transform: translateY(0);
}

.age-gate-icon {
    margin-bottom: 24px;
}

.age-gate-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.age-gate-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.5;
}

.age-gate-buttons {
    display: flex;
    gap: 16px;
    flex-direction: column;
}

.age-gate-btn {
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.age-gate-btn-primary {
    background: linear-gradient(135deg, #3355FF, #4F46E5);
    color: white;
}

.age-gate-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(51, 85, 255, 0.3);
}

.age-gate-btn-secondary {
    background: #f8f9fa;
    color: #666;
    border: 2px solid #e9ecef;
}

.age-gate-btn-secondary:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

.access-denied-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.access-denied-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.access-denied-card h2 {
    font-size: 28px;
    font-weight: 700;
    color: #dc3545;
    margin-bottom: 16px;
}

.access-denied-card p {
    font-size: 16px;
    color: #666;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid #e9ecef;
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.cookie-consent-visible {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-consent p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.cookie-consent a {
    color: #3355FF;
    text-decoration: none;
}

.cookie-consent a:hover {
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-primary {
    background: #3355FF;
    color: white;
}

.cookie-btn-primary:hover {
    background: #2844CC;
}

.cookie-btn-secondary {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #e9ecef;
}

.cookie-btn-secondary:hover {
    background: #e9ecef;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.main-nav {
    padding: 0 20px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    color: #1a1a1a;
}

.nav-logo-text {
    color: #1a1a1a;
}

.nav-logo-accent {
    color: #3355FF;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #3355FF;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3355FF;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.9;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-title-accent {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.7s forwards;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #3355FF, #4F46E5);
    color: white;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.9s forwards;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(51, 85, 255, 0.4);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Platforms Section */
.platforms-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.platform-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.platform-card.platform-card-visible {
    opacity: 1;
    transform: translateY(0);
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.platform-card-featured {
    border: 3px solid #3355FF;
    transform: scale(1.05);
}

.platform-card-featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.platform-ribbon {
    position: absolute;
    top: 20px;
    right: -10px;
    background: linear-gradient(135deg, #3355FF, #4F46E5);
    color: white;
    padding: 8px 20px;
    border-radius: 20px 0 0 20px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(51, 85, 255, 0.3);
}

.platform-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.platform-logo {
    width: 80px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    background: #0f6dca;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.platform-rating {
    text-align: right;
}

.platform-score {
    font-size: 24px;
    font-weight: 700;
    color: #3355FF;
    margin-bottom: 4px;
}

.platform-stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #FFD700;
    font-size: 16px;
}

.platform-content {
    text-align: center;
}

.platform-name {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.platform-bonus {
    margin-bottom: 24px;
}

.bonus-badge {
    display: inline-block;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.bonus-text {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

.platform-payments {
    margin-bottom: 30px;
    text-align: left;
}

.payment-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    display: block;
}

.payment-icons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.payment-icon {
    width: 40px;
    height: 25px;
    object-fit: contain;
}

.platform-cta {
    display: inline-block;
    background: linear-gradient(135deg, #3355FF, #4F46E5);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.platform-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(51, 85, 255, 0.3);
}

/* Why Us Section */
.why-us-section {
    padding: 100px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 16px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.feature-card-visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    margin-bottom: 24px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

/* Responsible Section */
.responsible-section {
    padding: 60px 0;
    background: #fff3cd;
}

.responsible-banner {
    display: flex;
    align-items: center;
    gap: 24px;
    background: white;
    padding: 30px;
    border-radius: 16px;
    border-left: 5px solid #ffc107;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.responsible-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.responsible-content {
    flex: 1;
}

.responsible-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.responsible-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.responsible-link {
    color: #3355FF;
    text-decoration: none;
    font-weight: 600;
}

.responsible-link:hover {
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
}

.faq-item.faq-item-visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-icon {
    transition: transform 0.3s ease;
    color: #3355FF;
}

.faq-item.faq-item-active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.faq-item-active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: #666;
    line-height: 1.6;
}

/* Footer */
.main-footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    color: white;
    margin-bottom: 20px;
}

.footer-logo-text {
    color: white;
}

.footer-logo-accent {
    color: #3355FF;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-disclaimers {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.disclaimer-text {
    font-size: 14px;
    color: #999;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #3355FF;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.footer-copyright {
    color: #999;
    font-size: 14px;
}

/* Page Styles */
.page-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 20px 60px;
    min-height: 100vh;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.page-content {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
}

.page-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 40px 0 20px;
}

.page-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 30px 0 15px;
}

.page-content p {
    margin-bottom: 20px;
    color: #666;
}

.page-content ul, .page-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.page-content li {
    margin-bottom: 10px;
    color: #666;
}

.page-content a {
    color: #3355FF;
    text-decoration: none;
}

.page-content a:hover {
    text-decoration: underline;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #3355FF;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 40px;
}

.back-button:hover {
    background: #2844CC;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.nav-menu-active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.nav-toggle-active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.nav-toggle-active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.nav-toggle-active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .platform-card-featured {
        transform: none;
    }
    
    .platform-card-featured:hover {
        transform: translateY(-10px);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .responsible-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 40px;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
    
    .age-gate-buttons {
        flex-direction: column;
    }
    
    .page-content {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .section-container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .platform-card {
        padding: 20px;
    }
    
    .feature-card {
        padding: 30px 15px;
    }
    
    .responsible-banner {
        padding: 20px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 16px;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
    }
}