﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #2563eb;
    --color-primary-dark: #1e40af;
    --color-primary-light: #3b82f6;
    --color-emerald: #10b981;
    --color-teal: #14b8a6;
    --color-cyan: #06b6d4;
    --color-sky: #0ea5e9;
    --color-blue: #3b82f6;
    --color-violet: #8b5cf6;
    --color-fuchsia: #d946ef;
    --color-rose: #f43f5e;
    --color-orange: #f97316;
    --color-amber: #f59e0b;
    --color-yellow: #eab308;
    --color-lime: #84cc16;
    --color-bg: #0f172a;
    --color-bg-light: #1e293b;
    --color-bg-card: #334155;
    --color-text: #f1f5f9;
    --color-text-muted: #cbd5e1;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.5);
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

    .header.scrolled {
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: var(--shadow-md);
        padding: 12px 0;
    }

    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    color: var(--color-text);
}

.logo-icon {
    font-size: 32px;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.logo-text {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
        transition: var(--transition);
    }

    .nav-link:hover {
        color: var(--color-primary-light);
    }

        .nav-link:hover::after {
            width: 100%;
        }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

    .menu-toggle span {
        width: 28px;
        height: 3px;
        background: var(--color-text);
        border-radius: 2px;
        transition: var(--transition);
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #312e81 100%);
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--color-primary);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: var(--color-violet);
    top: 50%;
    right: -150px;
    animation-delay: 5s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: var(--color-amber);
    bottom: -100px;
    left: 20%;
    animation-delay: 10s;
}

.shape-4 {
    width: 300px;
    height: 300px;
    background: var(--color-fuchsia);
    top: 20%;
    right: 30%;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(50px, -50px) scale(1.1);
    }

    50% {
        transform: translate(-30px, 30px) scale(0.9);
    }

    75% {
        transform: translate(30px, 50px) scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 56px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.title-line {
    display: block;
    animation: slideUp 0.8s ease-out;
}

.title-highlight {
    background: linear-gradient(135deg, #f59e0b 0%, #ec4899 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideUp 0.8s ease-out 0.2s both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 20px;
    color: var(--color-text-muted);
    margin-bottom: 48px;
    animation: slideUp 0.8s ease-out 0.4s both;
}

.countdown-card {
    background: rgba(51, 65, 85, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 32px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.8s ease-out 0.6s both;
}

.countdown-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.countdown-value {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 80px;
    text-align: center;
}

.countdown-divider {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-text-muted);
}

.countdown-label-small {
    font-size: 14px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-info-card {
    position: relative;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(124, 58, 237, 0.15) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 32px 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 0 1px rgba(37, 99, 235, 0.3);
    animation: slideUp 0.8s ease-out 0.6s both, cardGlow 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    overflow: hidden;
}

    .game-info-card::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(45deg, #2563eb, #7c3aed, #ec4899, #f59e0b);
        border-radius: 20px;
        z-index: -1;
        animation: borderRotate 4s linear infinite;
        opacity: 0.6;
    }

    .game-info-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        animation: shimmer 3s ease-in-out infinite;
    }

@keyframes borderRotate {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(360deg);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    50%, 100% {
        left: 200%;
    }
}

@keyframes cardGlow {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 0 1px rgba(37, 99, 235, 0.3), 0 0 30px rgba(37, 99, 235, 0.2);
    }

    50% {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 0 1px rgba(124, 58, 237, 0.4), 0 0 50px rgba(124, 58, 237, 0.3);
    }
}

.game-info-icon {
    font-size: 56px;
    animation: pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(245, 158, 11, 0.3));
    position: relative;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }

    25% {
        transform: scale(1.05) rotate(-5deg);
    }

    50% {
        transform: scale(1.15) rotate(0deg);
        opacity: 0.9;
    }

    75% {
        transform: scale(1.05) rotate(5deg);
    }
}

.game-info-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.game-info-label {
    font-size: 14px;
    font-weight: 700;
    color: rgba(148, 163, 184, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.game-info-value {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 40%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    line-height: 1.2;
}

.btn-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    animation: slideUp 0.8s ease-out 0.8s both;
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
    }

    .btn-primary:active {
        transform: translateY(-1px);
    }

.btn-large {
    font-size: 20px;
    padding: 20px 48px;
}

.btn-icon {
    font-size: 24px;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-coin {
    position: absolute;
    font-size: 48px;
    animation: floatCoin 6s ease-in-out infinite;
}

.coin-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.coin-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.coin-3 {
    bottom: 25%;
    left: 15%;
    animation-delay: 3s;
}

.coin-4 {
    top: 40%;
    right: 8%;
    animation-delay: 4.5s;
}

@keyframes floatCoin {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 1;
    }
}

.section-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 20px;
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: 64px;
}

.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #0c4a6e 0%, #0f172a 50%, #1e1b4b 100%);
    position: relative;
    overflow: hidden;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.step-card {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.2);
}

    .step-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #0ea5e9 0%, #8b5cf6 100%);
        transform: scaleX(0);
        transition: var(--transition);
    }

    .step-card:hover {
        transform: translateY(-8px);
        border-color: rgba(14, 165, 233, 0.5);
        box-shadow: 0 12px 48px rgba(14, 165, 233, 0.4);
    }

        .step-card:hover::before {
            transform: scaleX(1);
        }

    .step-card.animate-in {
        animation: fadeInUp 0.6s ease-out forwards;
    }

    .step-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .step-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .step-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .step-card:nth-child(4) {
        animation-delay: 0.4s;
    }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(14, 165, 233, 0.6));
}

.step-icon-1 {
    animation-delay: 0s;
}

.step-icon-2 {
    animation-delay: 0.2s;
}

.step-icon-3 {
    animation-delay: 0.4s;
}

.step-icon-4 {
    animation-delay: 0.6s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.step-number {
    font-size: 14px;
    font-weight: 700;
    color: #0ea5e9;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.step-title {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--color-text);
}

.step-description {
    color: var(--color-text-muted);
    line-height: 1.6;
}

.why-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #064e3b 0%, #0f172a 50%, #581c87 100%);
    position: relative;
    overflow: hidden;
}

.why-us-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.why-us .container {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--border-radius);
    padding: 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.feature-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.glow-1 {
    background: #10b981;
    top: -100px;
    left: -100px;
}

.glow-2 {
    background: #14b8a6;
    top: -100px;
    right: -100px;
}

.glow-3 {
    background: #06b6d4;
    bottom: -100px;
    left: -100px;
}

.glow-4 {
    background: #8b5cf6;
    bottom: -100px;
    right: -100px;
}

.glow-5 {
    background: #a78bfa;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.glow-6 {
    background: #10b981;
    top: -100px;
    left: 50%;
}

.feature-card:hover .feature-glow {
    opacity: 0.3;
}

.feature-card-1 {
    border-color: rgba(16, 185, 129, 0.3);
}

.feature-card-2 {
    border-color: rgba(20, 184, 166, 0.3);
}

.feature-card-3 {
    border-color: rgba(6, 182, 212, 0.3);
}

.feature-card-4 {
    border-color: rgba(139, 92, 246, 0.3);
}

.feature-card-5 {
    border-color: rgba(167, 139, 250, 0.3);
}

.feature-card-6 {
    border-color: rgba(16, 185, 129, 0.3);
}

.feature-card.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(5) {
    animation-delay: 0.5s;
}

.feature-card:nth-child(6) {
    animation-delay: 0.6s;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.4);
}

.feature-card-1:hover {
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.4);
}

.feature-card-2:hover {
    box-shadow: 0 20px 60px rgba(20, 184, 166, 0.4);
}

.feature-card-3:hover {
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.4);
}

.feature-card-4:hover {
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4);
}

.feature-card-5:hover {
    box-shadow: 0 20px 60px rgba(167, 139, 250, 0.4);
}

.feature-card-6:hover {
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.4);
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.8));
}

.feature-title {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--color-text);
}

.feature-description {
    color: var(--color-text-muted);
    line-height: 1.6;
}

.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #7c2d12 0%, #0f172a 50%, #4c1d95 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 30% 30%, rgba(249, 115, 22, 0.1) 0%, transparent 50%), radial-gradient(circle at 70% 70%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, rgba(168, 85, 247, 0.08) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(249, 115, 22, 0.3);
    border-radius: var(--border-radius);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: rgba(249, 115, 22, 0.2);
    line-height: 1;
}

.testimonial-card.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.testimonial-card:nth-child(1) {
    animation-delay: 0.1s;
    border-color: rgba(249, 115, 22, 0.3);
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.2s;
    border-color: rgba(168, 85, 247, 0.3);
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.3s;
    border-color: rgba(236, 72, 153, 0.3);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(249, 115, 22, 0.4);
}

.testimonial-card:nth-child(2):hover {
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.4);
}

.testimonial-card:nth-child(3):hover {
    box-shadow: 0 20px 60px rgba(236, 72, 153, 0.4);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316 0%, #a855f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.5);
}

.testimonial-card:nth-child(2) .testimonial-avatar {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.5);
}

.testimonial-card:nth-child(3) .testimonial-avatar {
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
    box-shadow: 0 4px 16px rgba(236, 72, 153, 0.5);
}

.testimonial-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
}

.testimonial-location {
    font-size: 14px;
    color: var(--color-text-muted);
}

.testimonial-rating {
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-text {
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
}

.business-model {
    padding: 100px 0;
    background: linear-gradient(135deg, #14532d 0%, #0f172a 50%, #1e3a8a 100%);
    position: relative;
    overflow: hidden;
}

.business-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(34, 197, 94, 0.03) 35px, rgba(34, 197, 94, 0.03) 70px);
    z-index: 0;
}

.business-model .container {
    position: relative;
    z-index: 1;
}

.business-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.business-description {
    color: var(--color-text-muted);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.business-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

    .business-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--color-text);
        font-size: 16px;
        font-weight: 500;
    }

.list-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #22c55e 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.4);
}

.business-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-icon-large {
    font-size: 200px;
    animation: pulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(34, 197, 94, 0.6));
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.faq {
    padding: 100px 0;
    background: linear-gradient(135deg, #831843 0%, #0f172a 50%, #3730a3 100%);
    position: relative;
    overflow: hidden;
}

.faq-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 40% 40%, rgba(236, 72, 153, 0.1) 0%, transparent 50%), radial-gradient(circle at 60% 60%, rgba(79, 70, 229, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.faq .container {
    position: relative;
    z-index: 1;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.08) 0%, rgba(79, 70, 229, 0.08) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(236, 72, 153, 0.3);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

    .faq-item.animate-in {
        animation: fadeInUp 0.6s ease-out forwards;
    }

    .faq-item:nth-child(1) {
        animation-delay: 0.1s;
    }

    .faq-item:nth-child(2) {
        animation-delay: 0.2s;
    }

    .faq-item:nth-child(3) {
        animation-delay: 0.3s;
    }

    .faq-item:nth-child(4) {
        animation-delay: 0.4s;
    }

    .faq-item:hover {
        border-color: rgba(236, 72, 153, 0.5);
        box-shadow: 0 8px 32px rgba(236, 72, 153, 0.3);
    }

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    color: var(--color-text);
    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: #ec4899;
    }

.faq-toggle {
    font-size: 28px;
    font-weight: 300;
    transition: var(--transition);
    color: #ec4899;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #134e4a 0%, #0f172a 50%, #581c87 100%);
    position: relative;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(20, 184, 166, 0.1) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-input {
    padding: 16px 20px;
    background: rgba(20, 184, 166, 0.1);
    border: 2px solid rgba(20, 184, 166, 0.3);
    border-radius: 12px;
    color: var(--color-text);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

    .form-input:focus {
        outline: none;
        border-color: #14b8a6;
        box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.2);
        background: rgba(20, 184, 166, 0.15);
    }

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #14b8a6 0%, #8b5cf6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(20, 184, 166, 0.4);
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--color-text);
}

.contact-item p {
    color: var(--color-text-muted);
}

.footer {
    background: linear-gradient(135deg, #0c0a09 0%, #0f172a 100%);
    padding: 80px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-description {
    color: var(--color-text-muted);
    line-height: 1.6;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-text);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .footer-links a {
        color: var(--color-text-muted);
        transition: var(--transition);
    }

        .footer-links a:hover {
            color: var(--color-primary-light);
            transform: translateX(4px);
        }

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(51, 65, 85, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: var(--transition);
}

    .social-link:hover {
        background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
        border-color: transparent;
        transform: translateY(-4px);
    }

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-muted);
}

@media (max-width: 968px) {
    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(10px);
        padding: 32px;
        gap: 20px;
        transform: translateX(100%);
        transition: var(--transition);
        box-shadow: var(--shadow-xl);
    }

        .nav.active {
            transform: translateX(0);
        }

    .menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 40px;
    }

    .game-info-card {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        gap: 16px;
    }

    .game-info-icon {
        font-size: 48px;
    }

    .game-info-text {
        align-items: center;
    }

    .game-info-label {
        font-size: 12px;
    }

    .game-info-value {
        font-size: 20px;
    }

    .section-title {
        font-size: 36px;
    }

    .steps-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .business-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .countdown-value {
        font-size: 36px;
        min-width: 60px;
    }

    .countdown-divider {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .countdown-card {
        padding: 24px;
    }

    .countdown-value {
        font-size: 28px;
        min-width: 50px;
    }

    .countdown-divider {
        font-size: 28px;
    }

    .btn-large {
        font-size: 16px;
        padding: 16px 32px;
    }

    .floating-coin {
        font-size: 32px;
    }

    .business-icon-large {
        font-size: 120px;
    }
}

.legal-page {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #312e81 100%);
    min-height: 100vh;
}

.legal-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-updated {
    font-size: 16px;
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: 48px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(51, 65, 85, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 48px;
    box-shadow: var(--shadow-xl);
}

.legal-section {
    margin-bottom: 40px;
}

    .legal-section:last-child {
        margin-bottom: 0;
    }

    .legal-section h2 {
        font-size: 28px;
        color: var(--color-text);
        margin-bottom: 16px;
        padding-bottom: 12px;
        border-bottom: 2px solid rgba(59, 130, 246, 0.3);
    }

    .legal-section h3 {
        font-size: 22px;
        color: var(--color-text);
        margin-top: 24px;
        margin-bottom: 12px;
    }

    .legal-section p {
        color: var(--color-text-muted);
        line-height: 1.8;
        margin-bottom: 16px;
    }

    .legal-section ul,
    .legal-section ol {
        color: var(--color-text-muted);
        line-height: 1.8;
        margin-left: 24px;
        margin-bottom: 16px;
    }

    .legal-section li {
        margin-bottom: 8px;
    }

    .legal-section a {
        color: var(--color-primary-light);
        text-decoration: underline;
        transition: var(--transition);
    }

        .legal-section a:hover {
            color: var(--color-primary);
        }

.notice-box {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 24px;
}

    .notice-box p {
        color: rgba(34, 197, 94, 0.9);
        margin-bottom: 8px;
    }

        .notice-box p:last-child {
            margin-bottom: 0;
        }

    .notice-box strong {
        color: rgb(34, 197, 94);
        font-weight: 700;
    }

.contact-info {
    background: rgba(37, 99, 235, 0.1);
    border-left: 4px solid rgba(37, 99, 235, 0.5);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

    .contact-info p {
        margin-bottom: 12px;
    }

        .contact-info p:last-child {
            margin-bottom: 0;
        }

.contact-details {
    background: rgba(37, 99, 235, 0.1);
    border-left: 4px solid var(--color-primary);
    padding: 20px;
    margin-top: 16px;
    border-radius: 8px;
}

    .contact-details p {
        margin-bottom: 8px;
    }

.highlight-box {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text) !important;
}

.contact-page {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #134e4a 0%, #0f172a 50%, #581c87 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.contact-page-content {
    margin-top: 48px;
    display: grid;
    gap: 64px;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 32px;
    color: var(--color-text);
    margin-bottom: 16px;
}

.contact-info-section p,
.contact-form-section p {
    color: var(--color-text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.contact-method-card {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(20, 184, 166, 0.3);
    border-radius: var(--border-radius);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

    .contact-method-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 48px rgba(20, 184, 166, 0.3);
        border-color: rgba(20, 184, 166, 0.5);
    }

.contact-icon-large {
    font-size: 64px;
    margin-bottom: 16px;
}

.contact-method-card h3 {
    font-size: 24px;
    color: var(--color-text);
    margin-bottom: 12px;
}

.contact-method-card p {
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.contact-link {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #14b8a6;
    margin-bottom: 8px;
    transition: var(--transition);
}

    .contact-link:hover {
        color: #0ea5e9;
    }

.contact-note {
    font-size: 14px;
    color: var(--color-text-muted);
    font-style: italic;
}

.contact-form-section {
    background: rgba(51, 65, 85, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 48px;
    box-shadow: var(--shadow-xl);
}

.contact-form-full {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.contact-form-full label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.contact-form-full select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23cbd5e1' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.contact-form-full select option {
    background-color: #1e293b;
    color: var(--color-text);
    padding: 10px;
}

.contact-form-full select option:hover,
.contact-form-full select option:focus,
.contact-form-full select option:checked {
    background-color: #334155;
    color: var(--color-text);
}

.contact-additional {
    margin-top: 64px;
}

    .contact-additional h2 {
        font-size: 32px;
        text-align: center;
        color: var(--color-text);
        margin-bottom: 40px;
    }

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.faq-card {
    background: rgba(51, 65, 85, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

    .faq-card:hover {
        transform: translateY(-4px);
        border-color: rgba(20, 184, 166, 0.5);
        box-shadow: 0 8px 32px rgba(20, 184, 166, 0.2);
    }

.faq-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.faq-card h3 {
    font-size: 18px;
    color: var(--color-text);
    margin-bottom: 8px;
}

.faq-card p {
    font-size: 14px;
    color: var(--color-text-muted);
}

.support-hours {
    margin-top: 64px;
    background: rgba(51, 65, 85, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 48px;
}

    .support-hours h2 {
        font-size: 32px;
        text-align: center;
        color: var(--color-text);
        margin-bottom: 32px;
    }

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.hours-item {
    text-align: center;
}

    .hours-item h4 {
        font-size: 20px;
        color: var(--color-text);
        margin-bottom: 8px;
    }

    .hours-item p {
        color: var(--color-text-muted);
        font-size: 16px;
    }

.social-connect {
    margin-top: 64px;
    text-align: center;
}

    .social-connect h2 {
        font-size: 32px;
        color: var(--color-text);
        margin-bottom: 16px;
    }

    .social-connect > p {
        color: var(--color-text-muted);
        margin-bottom: 32px;
    }

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.social-link-large {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(51, 65, 85, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 24px;
    transition: var(--transition);
}

    .social-link-large:hover {
        background: linear-gradient(135deg, #14b8a6 0%, #8b5cf6 100%);
        border-color: transparent;
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(20, 184, 166, 0.4);
    }

.social-icon {
    font-size: 28px;
}

.social-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
}

.contact-note-box {
    margin-top: 64px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--border-radius);
    padding: 32px;
    text-align: center;
}

    .contact-note-box h3 {
        font-size: 24px;
        color: var(--color-text);
        margin-bottom: 12px;
    }

    .contact-note-box p {
        color: var(--color-text-muted);
        line-height: 1.6;
    }

    .contact-note-box a {
        color: var(--color-primary-light);
        text-decoration: underline;
        font-weight: 600;
    }

@media (max-width: 768px) {
    .legal-content {
        padding: 24px;
    }

    .legal-title {
        font-size: 32px;
    }

    .legal-section h2 {
        font-size: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-section {
        padding: 24px;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }
}
