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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #192434;
    background: #f4f7f9;
}

.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(25, 36, 52, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-gate-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.age-gate-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #192434;
}

.age-gate-content p {
    margin-bottom: 25px;
    color: #666;
}

.age-gate-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #96539d 0%, #e84393 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(150, 83, 157, 0.4);
}

.btn-secondary {
    background: white;
    color: #192434;
    padding: 15px 40px;
    border: 2px solid #192434;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: #192434;
    color: white;
}

.age-restriction {
    margin-top: 20px;
    padding: 20px;
    background: #fee;
    border-radius: 10px;
    color: #c00;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #192434;
    color: white;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-link {
    color: white;
    text-decoration: underline;
    cursor: pointer;
}

/* Header */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #96539d 0%, #e84393 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

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

.nav a {
    text-decoration: none;
    color: #192434;
    font-weight: 500;
    transition: color 0.2s;
}

.nav a:hover {
    color: #96539d;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f4f7f9 0%, #e8eef3 100%);
    padding: 80px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #192434;
}

.hero-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #96539d 0%, #e84393 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(150, 83, 157, 0.4);
}

.hero-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.visual-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.visual-card.tall {
    grid-row: span 2;
    background: linear-gradient(135deg, #96539d 0%, #e84393 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visual-card h3 {
    font-size: 48px;
    background: linear-gradient(135deg, #96539d 0%, #e84393 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.visual-card.tall h3 {
    color: white;
    -webkit-text-fill-color: white;
}

.visual-card p {
    color: #666;
    font-size: 14px;
}

.visual-card.tall p {
    color: white;
}

/* About Platform */
.about-platform {
    padding: 80px 20px;
    background: white;
}

.about-platform h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: #192434;
}

.about-platform > .container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: #666;
}

.platform-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-box {
    padding: 30px;
    background: #f4f7f9;
    border-radius: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #192434;
}

.feature-box p {
    color: #666;
    line-height: 1.7;
}

/* Games Section */
.games-section {
    padding: 80px 20px;
    background: #f4f7f9;
}

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

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #192434;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.game-card {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.game-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #96539d;
    opacity: 0;
    transition: opacity 0.3s;
}

.game-card:hover .play-btn {
    opacity: 1;
}

.game-content {
    padding: 20px;
}

.game-badge {
    display: inline-block;
    background: linear-gradient(135deg, #96539d 0%, #e84393 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 10px;
}

.game-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #192434;
}

.game-desc {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.game-btn {
    background: linear-gradient(135deg, #96539d 0%, #e84393 100%);
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
    display: inline-block;
    text-decoration: none;
}

.game-btn:hover {
    transform: scale(1.05);
}

/* How It Works */
.how-it-works {
    padding: 80px 20px;
    background: white;
}

.how-it-works h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #192434;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #96539d 0%, #e84393 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #192434;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 80px 20px;
    background: #192434;
    color: white;
}

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

.features-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: background 0.3s;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.7);
}

/* Age Notice */
.age-notice {
    padding: 60px 20px;
    background: linear-gradient(135deg, #96539d 0%, #e84393 100%);
    color: white;
    text-align: center;
}

.age-notice h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.age-text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.age-notice p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.age-notice a {
    color: white;
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #96539d 0%, #e84393 100%);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    background: white;
    color: #96539d;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background: #192434;
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-18-notice {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    text-align: center;
}

.footer-18-notice p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-logos {
    max-width: 1200px;
    margin: 0 auto 40px;
    text-align: center;
}

.footer-logos h3 {
    font-size: 24px;
    margin-bottom: 25px;
}

.support-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.support-logos a {
    display: block;
}

.support-logos img {
    height: 60px;
    width: 150px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.2s, opacity 0.2s;
}

.support-logos img:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

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

.content-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #192434;
}

.content-page h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #192434;
}

.content-page h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #192434;
}

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

.content-page ul,
.content-page ol {
    margin-bottom: 20px;
    margin-left: 30px;
    line-height: 1.8;
    color: #666;
}

.content-page a {
    color: #96539d;
    text-decoration: underline;
}

.content-page a:hover {
    color: #e84393;
}

.contact-info {
    background: #f4f7f9;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
    color: #192434;
}

.contact-item a {
    color: #96539d;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .platform-features {
        grid-template-columns: 1fr;
    }

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

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

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav {
        flex-direction: column;
        gap: 10px;
    }

    .cookie-content {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .hero-visual {
        grid-template-columns: 1fr;
    }

    .visual-card.tall {
        grid-row: span 1;
    }

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

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

    .support-logos {
        flex-direction: column;
        gap: 20px;
    }

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