@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Lato:wght@300;400;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(135deg, #1a1625 0%, #2d1b3d 100%);
    color: #e8e0f0;
    min-height: 100vh;
}

/* Header */
header {
    background: linear-gradient(135deg, #4a148c 0%, #6a1b9a 100%);
    box-shadow: 0 5px 25px rgba(106, 27, 154, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #ffd700;
}

.header-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
}

.site-title {
    font-family: 'Cinzel', serif;
    font-size: 44px;
    font-weight: 900;
    color: #ffd700;
    text-decoration: none;
    letter-spacing: 3px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 15px;
}

.crown-icon {
    font-size: 50px;
}

.main-menu {
    display: flex;
}

.main-menu ul {
    display: flex;
    list-style: none;
    gap: 5px;
}

.main-menu ul li a {
    display: block;
    padding: 14px 28px;
    color: #e8e0f0;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.05);
}

.main-menu ul li a:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: #ffd700;
    color: #ffd700;
}

.mobile-trigger {
    display: none;
    background: #ffd700;
    border: none;
    padding: 14px 18px;
    cursor: pointer;
    border-radius: 5px;
}

.mobile-trigger span {
    display: block;
    width: 26px;
    height: 3px;
    background: #4a148c;
    margin: 5px 0;
    border-radius: 2px;
}

/* Main Content */
.page-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 70px 40px;
}

.intro-section {
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.3) 0%, rgba(106, 27, 154, 0.3) 100%);
    padding: 80px 70px;
    border: 3px solid #ffd700;
    border-radius: 10px;
    margin-bottom: 70px;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
    position: relative;
}

.intro-section::before {
    content: '♔';
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 120px;
    color: rgba(255, 215, 0, 0.1);
}

.intro-section h1 {
    font-family: 'Cinzel', serif;
    font-size: 64px;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 30px;
    letter-spacing: 4px;
}

.intro-section p {
    font-size: 19px;
    line-height: 1.9;
    margin-bottom: 22px;
    max-width: 1000px;
}

/* Key Points */
.key-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin: 70px 0;
}

.point-card {
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.4) 0%, rgba(106, 27, 154, 0.4) 100%);
    padding: 50px 40px;
    border: 2px solid #ffd700;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.point-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

.point-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.3);
}

.point-symbol {
    font-size: 52px;
    margin-bottom: 20px;
}

.point-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    color: #ffd700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.point-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #d0c5e0;
}

/* Game Section */
.game-showcase {
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.3) 0%, rgba(106, 27, 154, 0.3) 100%);
    padding: 70px 60px;
    border: 3px solid #ffd700;
    border-radius: 10px;
    margin: 70px 0;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
}

.game-showcase h2 {
    font-family: 'Cinzel', serif;
    font-size: 52px;
    color: #ffd700;
    text-align: center;
    margin-bottom: 45px;
    letter-spacing: 4px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.game-frame-container {
    width: 100%;
    max-width: 1000px;
    height: 630px;
    border: 4px solid #ffd700;
    border-radius: 8px;
    margin: 0 auto;
    display: block;
    background: #000;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

/* Text Section */
.text-block {
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.3) 0%, rgba(106, 27, 154, 0.3) 100%);
    padding: 60px 55px;
    border-left: 6px solid #ffd700;
    border-radius: 8px;
    margin-bottom: 45px;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.15);
}

.text-block h2 {
    font-family: 'Cinzel', serif;
    font-size: 44px;
    color: #ffd700;
    margin-bottom: 30px;
    letter-spacing: 3px;
}

.text-block h3 {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: #dda520;
    margin: 35px 0 20px;
    letter-spacing: 2px;
}

.text-block p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 22px;
    color: #d0c5e0;
}

.text-block ul {
    margin-left: 40px;
    margin-bottom: 22px;
}

.text-block ul li {
    color: #d0c5e0;
    line-height: 1.9;
    margin-bottom: 14px;
    font-size: 16px;
}

.text-block strong {
    color: #ffd700;
    font-weight: 700;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #4a148c 0%, #6a1b9a 100%);
    border-top: 4px solid #ffd700;
    padding: 60px 40px;
    margin-top: 90px;
    box-shadow: 0 -5px 25px rgba(106, 27, 154, 0.4);
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.footer-heading {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: #ffd700;
    margin-bottom: 30px;
    letter-spacing: 3px;
}

.support-links {
    display: flex;
    justify-content: center;
    gap: 45px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.support-links a {
    color: #e8e0f0;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.support-links a:hover {
    color: #ffd700;
}

.copyright {
    color: #b0a0c0;
    font-size: 14px;
    margin-top: 20px;
}

/* Age Modal */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 22, 37, 0.98);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-inner {
    background: linear-gradient(135deg, #4a148c 0%, #6a1b9a 100%);
    padding: 75px 65px;
    border: 5px solid #ffd700;
    border-radius: 10px;
    text-align: center;
    max-width: 620px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.age-inner h2 {
    font-family: 'Cinzel', serif;
    font-size: 46px;
    color: #ffd700;
    margin-bottom: 30px;
    letter-spacing: 4px;
}

.age-inner p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 45px;
    color: #e8e0f0;
}

.age-controls {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.age-btn {
    padding: 20px 55px;
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 700;
    border: 3px solid #ffd700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 5px;
}

.age-yes {
    background: #ffd700;
    color: #4a148c;
}

.age-yes:hover {
    background: #ffed4e;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.age-no {
    background: transparent;
    color: #e8e0f0;
}

.age-no:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .mobile-trigger {
        display: block;
    }

    .main-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #4a148c;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }

    .main-menu.open {
        max-height: 500px;
    }

    .main-menu ul {
        flex-direction: column;
        padding: 25px;
        gap: 8px;
    }

    .intro-section {
        padding: 50px 35px;
    }

    .intro-section h1 {
        font-size: 42px;
    }

    .intro-section::before {
        font-size: 80px;
        top: 20px;
        right: 20px;
    }

    .key-points {
        grid-template-columns: 1fr;
    }

    .game-showcase {
        padding: 40px 25px;
    }

    .game-frame-container {
        height: 500px;
    }

    .text-block {
        padding: 40px 30px;
    }

    .age-inner {
        padding: 50px 35px;
        margin: 20px;
    }

    .age-controls {
        flex-direction: column;
    }

    .age-btn {
        width: 100%;
    }
}
