/* Game Page Styles */

:root {
    --vcr-velvet-plum: #160B1E;
    --vcr-burgundy-stage: #221028;
    --vcr-room-panel: #2B1432;
    --vcr-text: #FAF3FF;
    --vcr-muted: #D6C2E3;
    --vcr-gold: #F7C97A;
    --vcr-copper: #D47A4C;
    --vcr-satin: #0B0A0D;
    --vcr-lilac: #BDA8FF;
    --vcr-border: rgba(250, 243, 255, 0.10);
    --vcr-shadow-soft: 0 8px 32px rgba(11, 10, 13, 0.4);
    --vcr-shadow-glow: 0 0 40px rgba(247, 201, 122, 0.15);
}

/* Game Header */
.vcr-game-header {
    padding: 140px 0 40px;
    text-align: center;
}

.vcr-game-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.vcr-breadcrumb-link {
    color: var(--vcr-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.vcr-breadcrumb-link:hover {
    color: var(--vcr-gold);
}

.vcr-breadcrumb-separator {
    color: var(--vcr-gold);
    font-size: 14px;
}

.vcr-breadcrumb-current {
    color: var(--vcr-gold);
    font-size: 14px;
}

.vcr-game-page-title {
    font-family: 'Italiana', serif;
    font-size: 56px;
    color: var(--vcr-gold);
    margin-bottom: 16px;
}

.vcr-game-page-subtitle {
    font-size: 18px;
    color: var(--vcr-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .vcr-game-header {
        padding: 120px 0 30px;
    }
    .vcr-game-page-title {
        font-size: 40px;
    }
    .vcr-game-page-subtitle {
        font-size: 16px;
    }
}

/* Game Section */
.vcr-game-section {
    padding: 40px 0 80px;
}

.vcr-game-wrapper {
    margin-bottom: 48px;
}

.vcr-iframe-container {
    position: relative;
    width: 100%;
    background: var(--vcr-satin);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--vcr-border);
    box-shadow: var(--vcr-shadow-glow);
}

.vcr-iframe-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(247, 201, 122, 0.2) 0%, transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.vcr-iframe-container iframe {
    display: block;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    border: none;
}

@media (max-width: 768px) {
    .vcr-iframe-container iframe {
        height: 50vh;
        min-height: 400px;
    }
}

/* Game Details */
.vcr-game-details {
    background: linear-gradient(180deg, rgba(43, 20, 50, 0.4) 0%, rgba(34, 16, 40, 0.4) 100%);
    border: 1px solid var(--vcr-border);
    border-radius: 16px;
    overflow: hidden;
}

.vcr-game-details-content {
    padding: 40px;
}

.vcr-game-details-title {
    font-family: 'Italiana', serif;
    font-size: 32px;
    color: var(--vcr-gold);
    margin-bottom: 16px;
}

.vcr-game-details-text {
    color: var(--vcr-muted);
    line-height: 1.7;
    margin-bottom: 32px;
    font-size: 16px;
}

/* Game Features */
.vcr-game-features {
    margin-bottom: 32px;
}

.vcr-game-features-title {
    font-family: 'Italiana', serif;
    font-size: 24px;
    color: var(--vcr-gold);
    margin-bottom: 20px;
}

.vcr-game-features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.vcr-game-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(11, 10, 13, 0.3);
    border: 1px solid var(--vcr-border);
    border-radius: 8px;
    color: var(--vcr-muted);
    font-size: 14px;
    transition: all 0.3s ease;
}

.vcr-game-feature-item:hover {
    border-color: rgba(247, 201, 122, 0.2);
    transform: translateX(8px);
}

.vcr-feature-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(247, 201, 122, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Game Notice */
.vcr-game-notice {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: rgba(247, 201, 122, 0.05);
    border: 1px solid rgba(247, 201, 122, 0.2);
    border-radius: 12px;
}

.vcr-notice-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(247, 201, 122, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vcr-notice-content h4 {
    font-family: 'Italiana', serif;
    font-size: 18px;
    color: var(--vcr-gold);
    margin-bottom: 8px;
}

.vcr-notice-content p {
    color: var(--vcr-muted);
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 640px) {
    .vcr-game-details-content {
        padding: 24px;
    }
    .vcr-game-details-title {
        font-size: 24px;
    }
    .vcr-game-features-list {
        grid-template-columns: 1fr;
    }
    .vcr-game-notice {
        flex-direction: column;
        text-align: center;
    }
}

/* More Games CTA */
.vcr-more-games {
    padding: 60px 0 120px;
    text-align: center;
}

.vcr-more-games-content {
    max-width: 700px;
    margin: 0 auto;
}

.vcr-more-games-title {
    font-family: 'Italiana', serif;
    font-size: 40px;
    color: var(--vcr-gold);
    margin-bottom: 16px;
}

.vcr-more-games-desc {
    font-size: 18px;
    color: var(--vcr-muted);
    margin-bottom: 32px;
}

/* Loading Animation */
@keyframes vcrGameLoad {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.vcr-iframe-container {
    animation: vcrGameLoad 0.5s ease-out;
}

/* Responsive iframe adjustments */
@media (max-width: 480px) {
    .vcr-iframe-container iframe {
        height: 45vh;
        min-height: 350px;
    }
}
