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

:root {
    --primary-color: #FF6B35;
    --secondary-color: #004E89;
    --accent-color: #FFD700;
    --dark-bg: #0A1128;
    --dark-card: #1C2541;
    --text-primary: #FFFFFF;
    --text-secondary: #B8C1CC;
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    --gradient-secondary: linear-gradient(135deg, #004E89 0%, #1A659E 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Age Gate */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 40, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.age-gate.hidden {
    display: none;
}

.age-gate-content {
    background: var(--dark-card);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    box-shadow: var(--shadow-lg);
    animation: scaleIn 0.4s ease;
}

.age-gate-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.age-gate-content h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.age-gate-content p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-size: 16px;
}

.age-warning {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 24px;
}

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

.age-gate-buttons button {
    flex: 1;
    min-width: 180px;
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--text-secondary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.age-refused {
    margin-top: 24px;
    padding: 24px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    border: 2px solid var(--primary-color);
}

.refused-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.age-refused h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--dark-card);
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    max-width: 400px;
    z-index: 9999;
    animation: slideInLeft 0.4s ease;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content p {
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-secondary);
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: none;
}

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

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

.cookie-buttons button {
    flex: 1;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-accept {
    background: var(--gradient-primary);
    color: white;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.btn-decline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--text-secondary);
}

.btn-decline:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

.navbar.scrolled {
    background: rgba(28, 37, 65, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 700;
}

.logo svg {
    color: var(--primary-color);
}

.logo .accent {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--text-primary);
}

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

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0A1128 0%, #1C2541 50%, #0A1128 100%);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    display: inline-block;
    padding: 16px 48px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: scroll 2s ease-in-out infinite;
}

/* Platforms Section */
.platforms {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-card) 100%);
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 60px;
    font-size: 18px;
}

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

.platform-card {
    background: var(--dark-bg);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
}

.platform-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.2);
}

.platform-ribbon {
    position: absolute;
    top: -12px;
    right: 32px;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    color: white;
}

.ribbon-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.ribbon-silver {
    background: linear-gradient(135deg, #C0C0C0 0%, #808080 100%);
    box-shadow: 0 4px 12px rgba(192, 192, 192, 0.4);
}

.ribbon-bronze {
    background: linear-gradient(135deg, #CD7F32 0%, #8B4513 100%);
    box-shadow: 0 4px 12px rgba(205, 127, 50, 0.4);
}

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

.platform-logo {
    flex: 1;
}

.platform-logo img {
    width: 100%;
    max-width: 180px;
    height: auto;
    border-radius: 8px;
}

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

.rating-score {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-color);
    display: block;
    margin-bottom: 4px;
}

.stars {
    display: flex;
    gap: 2px;
    font-size: 16px;
}

.star {
    color: #444;
}

.star.filled {
    color: var(--accent-color);
}

.platform-bonus {
    background: rgba(255, 107, 53, 0.1);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
}

.bonus-label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 8px;
}

.bonus-text {
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.5;
}

.platform-payments {
    margin-bottom: 24px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-label {
    font-size: 13px;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 8px;
}

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

.payment-icon {
    width: 32px;
    height: auto;
    object-fit: contain;
    filter: grayscale(0.3);
    transition: var(--transition);
}

.payment-icon:hover {
    filter: grayscale(0);
    transform: scale(1.2);
}

.btn-platform {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-platform:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Why Us Section */
.why-us {
    padding: 100px 20px;
    background: var(--dark-bg);
}

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

.why-card {
    background: var(--dark-card);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.why-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.why-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
}

/* Responsible Banner */
.responsible-banner {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 78, 137, 0.1) 100%);
}

.responsible-content {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--dark-card);
    padding: 32px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
}

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

.responsible-text h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.responsible-text p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.responsible-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

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

/* FAQ Section */
.faq {
    padding: 100px 20px;
    background: var(--dark-bg);
}

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

.faq-item {
    margin-bottom: 16px;
    background: var(--dark-card);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 28px;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-item.open .faq-icon {
    transform: rotate(90deg);
}

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

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--dark-card);
    padding: 60px 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-logo svg {
    color: var(--primary-color);
}

.footer-logo .accent {
    color: var(--primary-color);
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-warning {
    background: rgba(255, 107, 53, 0.1);
    padding: 12px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    font-size: 13px;
    color: var(--text-secondary);
}

.footer-warning strong {
    color: var(--primary-color);
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 14px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

@keyframes scroll {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    40% {
        opacity: 1;
    }
    80% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    100% {
        opacity: 0;
    }
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .platforms-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .responsible-content {
        flex-direction: column;
        text-align: center;
    }

    .age-gate-buttons {
        flex-direction: column;
    }

    .age-gate-buttons button {
        width: 100%;
    }

    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 28px;
    }

    .platform-header {
        flex-direction: column;
        text-align: center;
    }

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

/* Page Styles for secondary pages */
.page-header {
    padding: 120px 20px 60px;
    background: var(--gradient-secondary);
    text-align: center;
}

.page-title {
    font-size: 42px;
    margin-bottom: 16px;
}

.page-content {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.page-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.page-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.page-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.page-content ul,
.page-content ol {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
    padding-left: 24px;
}

.page-content a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.back-button {
    display: inline-block;
    margin-bottom: 24px;
    padding: 12px 24px;
    background: var(--dark-card);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
}

.back-button:hover {
    background: var(--primary-color);
    transform: translateX(-4px);
}
