/* LondonVeelvetHall.com - Game Page Styles */

/* Game Header */
.lvhGameHeader {
    background: linear-gradient(135deg, var(--lvhVeelvetNavy) 0%, var(--lvhVeelvetTeal) 100%);
    padding: 7rem 0 4rem;
    margin-top: 80px;
}

.lvhGameHeaderContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.lvhGameBreadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.lvhGameBreadcrumb a {
    color: var(--lvhPlaster);
    text-decoration: none;
    transition: color var(--lvhTransitionFast);
}

.lvhGameBreadcrumb a:hover {
    color: var(--lvhGoldLine);
}

.lvhBreadcrumbSeparator {
    color: var(--lvhGoldLine);
}

.lvhBreadcrumbCurrent {
    color: var(--lvhGoldLine);
    font-weight: 500;
}

.lvhGameHeaderTitle {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--lvhGalleryStone);
    margin-bottom: 1rem;
}

.lvhGameHeaderSubtitle {
    font-size: 1.15rem;
    color: var(--lvhPlaster);
    line-height: 1.6;
    max-width: 800px;
}

/* Game Section */
.lvhGameSection {
    padding: 4rem 0;
    background: var(--lvhGalleryStone);
}

.lvhGameContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.lvhGameIframeWrapper {
    margin-bottom: 3rem;
}

.lvhGameIframe {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--lvhShadowMedium);
    background: var(--lvhVeelvetNavy);
    aspect-ratio: 16 / 9;
}

.lvhGameIframe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--lvhVeelvetNavy) 0%, var(--lvhVeelvetTeal) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    opacity: 1;
    transition: opacity var(--lvhTransitionMedium);
}

.lvhGameIframe.loaded::before {
    opacity: 0;
    pointer-events: none;
}

.lvhGameIframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 2;
}

.lvhGameIframe.loading::after {
    content: 'Loading game...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--lvhGalleryStone);
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    z-index: 3;
}

/* Game Info */
.lvhGameInfo {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.lvhGameInfoSection {
    margin-bottom: 2.5rem;
}

.lvhGameInfoTitle {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    color: var(--lvhVeelvetNavy);
    margin-bottom: 1rem;
}

.lvhGameInfoText {
    color: var(--lvhMuted);
    line-height: 1.7;
}

.lvhGameInfoList {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lvhGameInfoList li {
    color: var(--lvhMuted);
    padding-left: 1.5rem;
    position: relative;
}

.lvhGameInfoList li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--lvhGoldLine);
    font-weight: bold;
}

.lvhGameFeatures {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.lvhGameFeature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--lvhPlaster);
    border-radius: 8px;
    border: 1px solid var(--lvhBorder);
    transition: all var(--lvhTransitionFast);
}

.lvhGameFeature:hover {
    border-color: var(--lvhGoldLine);
    transform: translateY(-2px);
}

.lvhGameFeatureIcon {
    font-size: 1.5rem;
}

.lvhGameFeatureText {
    color: var(--lvhVeelvetNavy);
    font-weight: 500;
}

.lvhGameNotice {
    background: var(--lvhVeelvetTeal);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--lvhGoldLine);
}

.lvhGameNotice p {
    color: var(--lvhGalleryStone);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.lvhGameNotice p:last-child {
    margin-bottom: 0;
}

.lvhGameNotice strong {
    color: var(--lvhGoldLine);
}

.lvhGameActions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.lvhGameActions .lvhBtn {
    flex: 1;
    min-width: 150px;
}

/* Similar Games Section */
.lvhSimilarGames {
    padding: 6rem 0;
    background: var(--lvhPlaster);
    text-align: center;
}

.lvhSimilarGamesContainer {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.lvhSimilarGamesTitle {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--lvhVeelvetNavy);
    margin-bottom: 1rem;
}

.lvhSimilarGamesText {
    color: var(--lvhMuted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Game Loading Animation */
@keyframes lvhPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.lvhGameIframe.loading::before {
    animation: lvhPulse 1.5s ease-in-out infinite;
}

/* Fullscreen Button */
.lvhFullscreenBtn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    background: var(--lvhVeelvetNavy);
    color: var(--lvhGalleryStone);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--lvhTransitionFast);
}

.lvhFullscreenBtn:hover {
    background: var(--lvhNeonCoral);
    transform: scale(1.1);
}

.lvhFullscreenBtn svg {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .lvhGameInfo {
        grid-template-columns: 1fr;
    }

    .lvhGameFeatures {
        grid-template-columns: 1fr;
    }

    .lvhGameActions {
        flex-direction: column;
    }

    .lvhGameActions .lvhBtn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .lvhGameHeader {
        padding: 5rem 0 3rem;
    }

    .lvhGameSection {
        padding: 3rem 0;
    }

    .lvhGameIframe {
        aspect-ratio: 4 / 3;
    }

    .lvhGameBreadcrumb {
        flex-wrap: wrap;
    }

    .lvhSimilarGames {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .lvhGameInfoTitle {
        font-size: 1.25rem;
    }

    .lvhGameFeature {
        padding: 0.75rem;
    }

    .lvhGameNotice {
        padding: 1rem;
    }
}

/* Game Info Sidebar */
.lvhGameInfoSidebar {
    position: sticky;
    top: 100px;
}

.lvhGameInfoCard {
    background: var(--lvhPlaster);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--lvhBorder);
}

.lvhGameInfoCardTitle {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    color: var(--lvhVeelvetNavy);
    margin-bottom: 1rem;
}

.lvhGameInfoCardContent {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lvhGameInfoCardItem {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--lvhBorder);
}

.lvhGameInfoCardItem:last-child {
    border-bottom: none;
}

.lvhGameInfoCardLabel {
    color: var(--lvhMuted);
    font-size: 0.9rem;
}

.lvhGameInfoCardValue {
    color: var(--lvhVeelvetNavy);
    font-weight: 600;
}

/* Error State */
.lvhGameIframe.error {
    background: var(--lvhVeelvetWine);
}

.lvhGameIframe.error::before {
    content: 'Game Failed to Load';
    opacity: 1;
}

.lvhGameIframe.error iframe {
    display: none;
}

.lvhGameError {
    background: var(--lvhVeelvetWine);
    color: var(--lvhGalleryStone);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 2rem;
}

.lvhGameErrorTitle {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.lvhGameErrorText {
    margin-bottom: 1.5rem;
}

.lvhGameErrorBtn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--lvhGalleryStone);
    color: var(--lvhVeelvetWine);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--lvhTransitionFast);
}

.lvhGameErrorBtn:hover {
    background: var(--lvhNeonCoral);
    color: var(--lvhGalleryStone);
    transform: translateY(-2px);
}
