* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(to bottom, #1a1a1a, #2d2d2d, #1a1a1a);
    color: #e0e0e0;
    line-height: 1.7;
    min-height: 100vh;
}

/* Age Modal */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-modal.visible {
    display: flex;
}

.modal-content {
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    border: 3px solid #d4af37;
    border-radius: 15px;
    max-width: 600px;
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.3);
}

.modal-header {
    background: #d4af37;
    padding: 25px;
    border-radius: 12px 12px 0 0;
}

.modal-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: #000;
    text-align: center;
    font-weight: 700;
}

.modal-body {
    padding: 40px;
    text-align: center;
}

.modal-body p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.modal-footer {
    padding: 0 40px 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-accept,
.btn-reject {
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Lato', sans-serif;
}

.btn-accept {
    background: #d4af37;
    color: #000;
}

.btn-accept:hover {
    background: #f0c84b;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-reject {
    background: #8b0000;
    color: #ffffff;
}

.btn-reject:hover {
    background: #a00000;
    transform: translateY(-3px);
}

/* Header */
.site-header {
    background: rgba(26, 26, 26, 0.98);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #d4af37;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 900;
    color: #d4af37;
    letter-spacing: 2px;
}

.nav-burger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
}

.burger-line {
    width: 30px;
    height: 3px;
    background: #d4af37;
    border-radius: 3px;
    transition: 0.3s;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.link-item {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 17px;
    font-weight: 400;
    transition: color 0.3s;
    position: relative;
    padding: 8px 0;
}

.link-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s;
}

.link-item:hover::after,
.link-item.active::after {
    width: 100%;
}

.link-item.active {
    color: #d4af37;
}

@media (max-width: 768px) {
    .nav-burger {
        display: flex;
        z-index: 1001;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 300px;
        background: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        padding: 120px 40px 40px;
        transition: right 0.4s;
        border-left: 3px solid #d4af37;
    }
    
    .nav-links.active {
        right: 0;
    }
}

/* Main Content */
.main-content {
    width: 100%;
}

/* Hero Banner */
.hero-banner {
    padding: 130px 30px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.12), transparent);
}

.hero-inner {
    max-width: 950px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 58px;
    font-weight: 900;
    color: #d4af37;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-description {
    font-size: 21px;
    color: #c0c0c0;
    margin-bottom: 45px;
    line-height: 1.8;
}

.hero-cta {
    display: inline-block;
    padding: 20px 55px;
    font-size: 19px;
    font-weight: 700;
    background: #d4af37;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.hero-cta:hover {
    background: #f0c84b;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

/* Sections */
.introduction,
.game-display,
.important-notices,
.features-showcase,
.responsible-message {
    padding: 100px 30px;
}

.intro-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.intro-box {
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    padding: 60px;
    border-radius: 20px;
    border: 2px solid #d4af37;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.intro-icon {
    font-size: 80px;
    display: block;
    margin-bottom: 30px;
}

.intro-heading {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 30px;
}

.intro-text {
    font-size: 19px;
    color: #c0c0c0;
    line-height: 1.9;
}

/* Game Display */
.display-container {
    max-width: 1400px;
    margin: 0 auto;
}

.display-heading {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    font-weight: 700;
    color: #d4af37;
    text-align: center;
    margin-bottom: 50px;
}

.game-window {
    background: #000;
    padding: 25px;
    border-radius: 20px;
    border: 3px solid #d4af37;
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.2);
}

.game-player {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 15px;
}

/* Important Notices */
.notices-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 35px;
}

.notice-block {
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    padding: 45px;
    border-radius: 15px;
    border-left: 5px solid;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.notice-block.style-gold {
    border-left-color: #d4af37;
}

.notice-block.style-silver {
    border-left-color: #c0c0c0;
}

.notice-block.style-bronze {
    border-left-color: #cd7f32;
}

.notice-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 20px;
}

.notice-content {
    font-size: 17px;
    color: #c0c0c0;
    line-height: 1.8;
}

/* Features Showcase */
.features-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.features-heading {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    font-weight: 700;
    color: #d4af37;
    text-align: center;
    margin-bottom: 60px;
}

.features-collection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.feature-card {
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.feature-symbol {
    font-size: 60px;
    display: block;
    margin-bottom: 25px;
}

.feature-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 18px;
}

.feature-desc {
    font-size: 16px;
    color: #c0c0c0;
    line-height: 1.7;
}

/* Responsible Message */
.message-container {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    padding: 60px;
    border-radius: 20px;
    border: 2px solid #d4af37;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.message-heading {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 30px;
}

.message-text {
    font-size: 19px;
    color: #c0c0c0;
    line-height: 1.9;
}

/* Play Page */
.play-intro {
    padding: 100px 30px 50px;
    text-align: center;
}

.play-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 20px;
}

.play-subtitle {
    font-size: 20px;
    color: #c0c0c0;
}

.play-area {
    padding: 50px 30px 100px;
}

.play-container {
    max-width: 1400px;
    margin: 0 auto;
}

.play-frame-wrapper {
    background: #000;
    padding: 25px;
    border-radius: 20px;
    border: 3px solid #d4af37;
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.2);
}

.play-frame {
    width: 100%;
    height: 850px;
    border: none;
    border-radius: 15px;
}

.play-information {
    padding: 50px 30px;
}

.info-container {
    max-width: 1400px;
    margin: 0 auto;
}

.info-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.info-panel {
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #d4af37;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.panel-heading {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 20px;
}

.panel-text {
    font-size: 17px;
    color: #c0c0c0;
    line-height: 1.8;
}

/* Legal Pages */
.document-header {
    padding: 100px 30px 50px;
    text-align: center;
}

.document-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 15px;
}

.document-date {
    font-size: 16px;
    color: #808080;
}

.document-body {
    padding: 50px 30px 100px;
}

.document-container {
    max-width: 1100px;
    margin: 0 auto;
}

.legal-article {
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    padding: 60px;
    border-radius: 20px;
    border: 2px solid #d4af37;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.legal-article h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    color: #d4af37;
    margin: 45px 0 25px;
}

.legal-article h2:first-child {
    margin-top: 0;
}

.legal-article p {
    font-size: 17px;
    color: #c0c0c0;
    margin-bottom: 20px;
    line-height: 1.9;
}

.legal-article ul {
    margin: 25px 0;
    padding-left: 40px;
}

.legal-article li {
    font-size: 17px;
    color: #c0c0c0;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-article a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.legal-article a:hover {
    color: #f0c84b;
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background: #0d0d0d;
    border-top: 2px solid #d4af37;
    padding: 70px 30px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 16px;
    color: #c0c0c0;
    line-height: 1.7;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 14px;
}

.footer-menu a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #d4af37;
}

.footer-base {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-base p {
    font-size: 14px;
    color: #808080;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 38px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .game-player {
        height: 550px;
    }
    
    .play-frame {
        height: 650px;
    }
    
    .notices-container {
        grid-template-columns: 1fr;
    }
    
    .legal-article {
        padding: 40px 25px;
    }
    
    .brand-name {
        font-size: 24px;
    }
}