* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: #FFF5F7;
    color: #2D2D2D;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

.site-header {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 999;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-title {
    font-size: 28px;
    color: #D4AF37;
    font-weight: 700;
    letter-spacing: 1px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-line {
    width: 28px;
    height: 3px;
    background: #D4AF37;
    border-radius: 2px;
    transition: 0.3s;
}

.main-navigation {
    display: flex;
    gap: 35px;
}

.nav-item {
    color: #555;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav-item:hover,
.nav-item.active {
    color: #D4AF37;
    border-bottom-color: #D4AF37;
}

.main-wrapper {
    min-height: calc(100vh - 200px);
}

.intro-section {
    background: linear-gradient(135deg, #FFE5EC 0%, #FFF0F5 100%);
    padding: 100px 30px;
    text-align: center;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-title {
    font-size: 56px;
    color: #D4AF37;
    margin-bottom: 30px;
    font-weight: 700;
}

.intro-text {
    font-size: 20px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 40px;
}

.primary-button {
    display: inline-block;
    background: #D4AF37;
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.notice-section {
    padding: 80px 30px;
    background: white;
}

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

.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.notice-card {
    background: #FFF5F7;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #FFE5EC;
    transition: transform 0.3s, box-shadow 0.3s;
}

.notice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.notice-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.notice-card h3 {
    font-size: 24px;
    color: #D4AF37;
    margin-bottom: 15px;
}

.notice-card p {
    color: #666;
    line-height: 1.8;
}

.game-preview-section {
    padding: 80px 30px;
    background: #FFF0F5;
}

.section-heading {
    font-size: 42px;
    color: #D4AF37;
    text-align: center;
    margin-bottom: 20px;
}

.divider-line {
    width: 80px;
    height: 3px;
    background: #D4AF37;
    margin: 0 auto 30px;
}

.section-description {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.game-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.game-embed {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 10px;
    display: block;
}

.game-caption {
    text-align: center;
    margin-top: 25px;
    font-size: 16px;
    color: #999;
}

.advantages-section {
    padding: 80px 30px;
    background: white;
}

.advantages-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.advantage-item {
    position: relative;
    padding-left: 80px;
}

.advantage-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 48px;
    font-weight: 700;
    color: #FFE5EC;
    font-family: 'Playfair Display', serif;
}

.advantage-item h4 {
    font-size: 22px;
    color: #D4AF37;
    margin-bottom: 12px;
}

.advantage-item p {
    color: #666;
    line-height: 1.8;
}

.disclaimer-section {
    padding: 80px 30px;
    background: #FFF5F7;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    border: 2px solid #FFE5EC;
}

.disclaimer-box h3 {
    font-size: 32px;
    color: #D4AF37;
    margin-bottom: 25px;
    text-align: center;
}

.disclaimer-box > p {
    font-size: 18px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 30px;
}

.disclaimer-list {
    list-style: none;
    padding: 0;
}

.disclaimer-list li {
    padding: 15px 0 15px 35px;
    position: relative;
    color: #666;
    line-height: 1.8;
    border-bottom: 1px solid #FFE5EC;
}

.disclaimer-list li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #D4AF37;
    font-size: 24px;
}

.site-footer {
    background: #2D2D2D;
    color: #CCC;
    padding: 60px 30px 20px;
}

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

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: #D4AF37;
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-column p {
    line-height: 1.9;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin: 12px 0;
}

.footer-links a {
    color: #CCC;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #D4AF37;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #999;
    font-size: 14px;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.modal-overlay.show {
    display: flex;
}

.modal-container {
    background: white;
    padding: 60px 50px;
    border-radius: 25px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid #D4AF37;
}

.modal-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.modal-container h2 {
    font-size: 32px;
    color: #D4AF37;
    margin-bottom: 20px;
}

.modal-container p {
    font-size: 17px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.7;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.modal-buttons button {
    flex: 1;
    padding: 18px 30px;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-accept {
    background: #D4AF37;
    color: white;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-decline {
    background: #E74C3C;
    color: white;
}

.btn-decline:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.document-section {
    padding: 80px 30px;
    background: white;
}

.document-content {
    max-width: 1000px;
    margin: 0 auto;
    background: #FFF5F7;
    padding: 60px;
    border-radius: 20px;
    border: 2px solid #FFE5EC;
}

.document-content h3 {
    font-size: 26px;
    color: #D4AF37;
    margin: 35px 0 20px;
}

.document-content p,
.document-content li {
    color: #555;
    line-height: 1.9;
    margin-bottom: 15px;
}

.document-content ul {
    margin: 15px 0 25px 30px;
}

.document-content strong {
    color: #D4AF37;
}

.important-notice {
    background: #FFF0F5;
    border: 3px solid #D4AF37;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.important-notice h3 {
    margin-top: 0;
}

.page-intro {
    background: linear-gradient(135deg, #FFE5EC 0%, #FFF0F5 100%);
    padding: 80px 30px;
    text-align: center;
}

.page-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.8;
}

.gameplay-section {
    padding: 80px 30px;
    background: white;
}

.game-display {
    max-width: 1100px;
    margin: 0 auto;
    background: #FFF5F7;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.game-embed-full {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 10px;
    display: block;
}

.instructions-section {
    padding: 80px 30px;
    background: #FFF0F5;
}

.instruction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.instruction-box {
    background: white;
    padding: 35px 30px;
    border-radius: 15px;
    border: 2px solid #FFE5EC;
}

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

.instruction-box p {
    color: #666;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .main-navigation {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
        transition: left 0.3s;
        gap: 0;
    }

    .main-navigation.active {
        left: 0;
    }

    .nav-item {
        padding: 15px 0;
        border-bottom: 1px solid #FFE5EC;
    }

    .page-title {
        font-size: 38px;
    }

    .intro-text {
        font-size: 17px;
    }

    .game-embed {
        height: 450px;
    }

    .game-embed-full {
        height: 500px;
    }

    .modal-container {
        margin: 20px;
        padding: 40px 30px;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .document-content {
        padding: 35px 25px;
    }

    .advantage-item {
        padding-left: 0;
        padding-top: 60px;
    }

    .advantage-number {
        left: 50%;
        transform: translateX(-50%);
    }
}
