* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: #0a0a0a;
    color: #e8e8e8;
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-gate.hidden {
    display: none;
}

.age-gate-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    padding: 4rem 3rem;
    border-radius: 10px;
    max-width: 550px;
    text-align: center;
    border: 3px solid #ffd700;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.3);
}

.age-gate-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.age-gate-content h1 {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.age-gate-content > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.age-gate-info {
    background: rgba(255, 215, 0, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 1px solid #ffd700;
}

.age-gate-info p {
    font-size: 1.1rem;
    margin: 0.5rem 0;
    color: #ffd700;
    font-weight: 700;
}

.age-gate-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-confirm,
.btn-deny {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    border: 2px solid #ffd700;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-confirm {
    background: #ffd700;
    color: #000;
}

.btn-confirm:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

.btn-deny {
    background: transparent;
    color: #ffd700;
}

.btn-deny:hover {
    background: rgba(255, 215, 0, 0.1);
}

header {
    background: #000;
    border-bottom: 2px solid #ffd700;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffd700;
    letter-spacing: 2px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle .bar {
    width: 30px;
    height: 3px;
    background: #ffd700;
    transition: all 0.3s;
}

.navigation {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: #e8e8e8;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s;
}

.nav-link:hover {
    color: #ffd700;
}

.nav-link:hover::before {
    width: 100%;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(9px, 9px);
    }
    
    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(9px, -9px);
    }
    
    .navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 6rem 2rem;
        transition: right 0.3s;
        border-left: 2px solid #ffd700;
    }
    
    .navigation.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.3rem;
        padding: 1rem 0;
    }
}

.hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 50%, #1a1a1a 100%);
    border-bottom: 1px solid #333;
}

.hero-inner {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.9;
    margin-bottom: 3rem;
    color: #c8c8c8;
}

.btn-hero {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: #ffd700;
    color: #000;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    border: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-hero:hover {
    background: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.highlights {
    padding: 5rem 0;
    background: #000;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.highlight-item {
    text-align: center;
    padding: 2.5rem;
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 8px;
    transition: all 0.3s;
}

.highlight-item:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.highlight-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.highlight-item h3 {
    font-size: 1.6rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.highlight-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #c8c8c8;
}

.game-showcase {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.section-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #c8c8c8;
    line-height: 1.8;
}

.game-embed {
    max-width: 1100px;
    margin: 0 auto;
    border: 3px solid #ffd700;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

.game-iframe {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

.about-platform {
    padding: 6rem 0;
    background: #000;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    font-size: 2.8rem;
    color: #ffd700;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #c8c8c8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-badge {
    background: #1a1a1a;
    padding: 2rem;
    border-left: 4px solid #ffd700;
    border-radius: 5px;
}

.feature-badge h4 {
    font-size: 1.4rem;
    color: #ffd700;
    margin-bottom: 0.8rem;
}

.feature-badge p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #c8c8c8;
}

.key-info {
    padding: 6rem 0;
    background: #0a0a0a;
}

.info-panel {
    background: #1a1a1a;
    padding: 4rem;
    border: 3px solid #ffd700;
    border-radius: 10px;
}

.info-panel h2 {
    font-size: 2.8rem;
    color: #ffd700;
    text-align: center;
    margin-bottom: 3rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-item h3 {
    font-size: 1.6rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.info-item p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #c8c8c8;
}

.additional-content {
    padding: 6rem 0;
    background: #000;
}

.content-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.content-block {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid #333;
}

.content-block h3 {
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #c8c8c8;
}

.play-intro {
    padding: 4rem 0;
    text-align: center;
    background: #0a0a0a;
}

.play-intro h1 {
    font-size: 3.5rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.play-subtitle {
    font-size: 1.25rem;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.9;
    color: #c8c8c8;
}

.game-player {
    padding: 3rem 0;
    background: #000;
}

.player-wrapper {
    border: 3px solid #ffd700;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.3);
}

.player-frame {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
}

.play-info {
    padding: 5rem 0;
    background: #0a0a0a;
}

.play-info h2 {
    font-size: 2.8rem;
    color: #ffd700;
    text-align: center;
    margin-bottom: 3rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-box {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid #333;
    transition: all 0.3s;
}

.info-box:hover {
    border-color: #ffd700;
    transform: translateY(-3px);
}

.info-box h3 {
    font-size: 1.4rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.info-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #c8c8c8;
}

.play-notice {
    padding: 4rem 0;
    background: #000;
}

.notice-card {
    background: #1a1a1a;
    padding: 3rem;
    border: 3px solid #ffd700;
    border-radius: 10px;
    text-align: center;
}

.notice-card h3 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.notice-card p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #c8c8c8;
}

.legal-container {
    max-width: 950px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-container h1 {
    font-size: 3.5rem;
    color: #ffd700;
    text-align: center;
    margin-bottom: 1rem;
}

.legal-date {
    text-align: center;
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 4rem;
}

.legal-article {
    margin-bottom: 3.5rem;
}

.legal-article h2 {
    font-size: 1.9rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.legal-article p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.2rem;
    color: #c8c8c8;
}

.disclaimer-important {
    background: #1a1a1a;
    padding: 2.5rem;
    border: 3px solid #ffd700;
    border-radius: 10px;
}

.emphasis-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffd700;
}

.disclaimer-acknowledgment {
    background: #1a1a1a;
    padding: 2.5rem;
    border: 2px solid #ffd700;
    border-radius: 10px;
}

footer {
    background: #000;
    border-top: 2px solid #ffd700;
    padding: 4rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-column h4 {
    font-size: 1.4rem;
    color: #ffd700;
    margin-bottom: 1.2rem;
}

.footer-column p {
    line-height: 1.8;
    color: #c8c8c8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #c8c8c8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .content-blocks {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .game-iframe {
        height: 450px;
    }
    
    .player-frame {
        height: 500px;
    }
    
    .play-intro h1 {
        font-size: 2.3rem;
    }
    
    .legal-container h1 {
        font-size: 2.5rem;
    }
    
    .info-panel {
        padding: 2.5rem 1.5rem;
    }
}
