/* ===== Game Page Styles ===== */
.game-page-section {
    min-height: 100vh;
    padding: 120px 20px 80px;
}

.game-page-header {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.game-page-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.game-page-breadcrumb a {
    color: #D8C9B6;
    transition: color 0.3s ease;
}

.game-page-breadcrumb a:hover {
    color: #F0A84A;
}

.breadcrumb-separator {
    color: #F0A84A;
}

.breadcrumb-current {
    color: #F0A84A;
}

.game-page-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #F6F1EA 0%, #F0A84A 50%, #FFD27A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-page-subtitle {
    color: #D8C9B6;
    font-size: 18px;
    line-height: 1.6;
}

/* ===== Game Container ===== */
.game-container-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 50px;
}

.game-frame-container {
    background: rgba(32, 22, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.game-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== Game Sidebar ===== */
.game-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.game-info-card {
    background: rgba(32, 22, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 25px;
}

.sidebar-title {
    font-size: 18px;
    color: #F6F1EA;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.game-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.game-info-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-label {
    color: #D8C9B6;
    font-size: 14px;
}

.info-value {
    color: #F0A84A;
    font-weight: 500;
    font-size: 14px;
}

.how-to-play-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.how-to-play-list li {
    color: #D8C9B6;
    font-size: 14px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.how-to-play-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #F0A84A;
    border-radius: 50%;
}

.game-disclaimer-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(214, 106, 60, 0.1);
    border: 1px solid rgba(214, 106, 60, 0.2);
    border-radius: 10px;
    padding: 15px;
}

.game-disclaimer-box svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.game-disclaimer-box p {
    color: #D8C9B6;
    font-size: 13px;
    line-height: 1.5;
}

/* ===== Game Description Section ===== */
.game-description-section {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.game-description-title {
    font-size: 28px;
    color: #F6F1EA;
    margin-bottom: 25px;
    text-align: center;
}

.game-description-title::after {
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #F0A84A, #D66A3C);
    margin: 12px auto 0;
    border-radius: 2px;
    content: '';
}

.game-description-text {
    color: #D8C9B6;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ===== Game Features Grid ===== */
.game-features-grid-section {
    max-width: 900px;
    margin: 0 auto 50px;
}

.game-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.game-feature-item {
    background: rgba(32, 22, 15, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.game-feature-item:hover {
    border-color: rgba(240, 168, 74, 0.2);
    background: rgba(32, 22, 15, 0.7);
    transform: translateY(-3px);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(240, 168, 74, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.feature-item-title {
    font-size: 18px;
    color: #F6F1EA;
    margin-bottom: 8px;
}

.feature-item-desc {
    color: #D8C9B6;
    font-size: 14px;
    line-height: 1.5;
}

/* ===== Game Page CTA ===== */
.game-page-cta {
    background: rgba(32, 22, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h3 {
    font-size: 24px;
    color: #F6F1EA;
    margin-bottom: 10px;
}

.cta-content p {
    color: #D8C9B6;
    margin-bottom: 25px;
}

/* ===== Responsive for Game Page ===== */
@media (max-width: 1024px) {
    .game-container-wrapper {
        grid-template-columns: 1fr;
    }

    .game-sidebar {
        order: 2;
    }

    .game-frame-container {
        order: 1;
    }
}

@media (max-width: 768px) {
    .game-page-section {
        padding: 100px 20px 60px;
    }

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

    .game-page-cta {
        padding: 30px 20px;
    }

    .game-info-card {
        padding: 20px;
    }

    .game-page-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .game-page-breadcrumb {
        font-size: 12px;
    }

    .game-page-subtitle {
        font-size: 15px;
    }

    .game-description-title {
        font-size: 22px;
    }

    .game-feature-item {
        padding: 20px;
    }
}

