.GamePageNavigation {
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid var(--space-gray);
}

.GameBreadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.BreadcrumbLink {
    color: var(--hologram-silver);
    text-decoration: none;
    transition: color 0.3s ease;
}

.BreadcrumbLink:hover {
    color: var(--neon-aqua);
}

.BreadcrumbSeparator {
    color: var(--space-gray);
}

.CurrentGameName {
    color: var(--cyberpunk-violet);
    font-weight: 600;
}

.GameHeroSection {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--dark-cosmos) 0%, var(--midnight-blue) 100%);
}

.GameHeroContainer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 25px;
}

.GameInfoPanel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.GamePageTitle {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--quantum-white) 0%, var(--gaming-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.GamePageDescription {
    font-size: 18px;
    line-height: 1.6;
    color: var(--hologram-silver);
    margin-bottom: 30px;
}

.GameFeaturesList {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.FeatureItem {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--quantum-white);
}

.FeatureItemIcon {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(65%) sepia(77%) saturate(1945%) hue-rotate(347deg);
}

.GameImagePreview {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-deep);
}

.GamePreviewImage {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.ImageOverlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.GameImagePreview:hover .ImageOverlay {
    opacity: 1;
}

.PlayNowBtn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--gaming-orange), var(--energy-yellow));
    border: none;
    border-radius: 30px;
    color: var(--dark-cosmos);
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.PlayNowBtn:hover {
    transform: scale(1.05);
}

.PlayBtnIcon {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(13%) sepia(94%) saturate(7482%) hue-rotate(296deg);
}

.GamePlaySection {
    padding: 80px 0;
    background: var(--midnight-blue);
}

.GameContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.GameHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.GameSectionTitle {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 700;
    color: var(--quantum-white);
}

.GameControls {
    display: flex;
    gap: 15px;
}

.FullscreenBtn, .BackToGamesBtn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(138, 43, 226, 0.2);
    border: 1px solid var(--cyberpunk-violet);
    border-radius: 25px;
    color: var(--neon-aqua);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.FullscreenBtn:hover, .BackToGamesBtn:hover {
    background: var(--cyberpunk-violet);
    color: var(--quantum-white);
}

.ControlIcon {
    width: 16px;
    height: 16px;
    filter: brightness(0) saturate(100%) invert(71%) sepia(99%) saturate(2167%) hue-rotate(161deg);
}

.GameFrameWrapper {
    position: relative;
    background: var(--dark-cosmos);
    border-radius: 15px;
    overflow: hidden;
    min-height: 600px;
    border: 2px solid var(--space-gray);
}

.LoadingScreen {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark-cosmos);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 10;
}

.LoadingSpinner {
    animation: spin 2s linear infinite;
}

.SpinnerIcon {
    width: 40px;
    height: 40px;
    filter: brightness(0) saturate(100%) invert(71%) sepia(99%) saturate(2167%) hue-rotate(161deg);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.LoadingText {
    font-size: 18px;
    color: var(--hologram-silver);
}

#gameIframe {
    border-radius: 15px;
}

.GameDisclaimer {
    margin-top: 30px;
}

.DisclaimerBox {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 107, 53, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--gaming-orange);
}

.DisclaimerIcon {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(65%) sepia(77%) saturate(1945%) hue-rotate(347deg);
}

.RelatedGamesSection {
    padding: 80px 0;
    background: var(--space-gray);
}

.RelatedContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.RelatedTitle {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--quantum-white);
}

.RelatedGamesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.RelatedGameCard {
    background: rgba(22, 33, 62, 0.8);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease;
    border: 1px solid var(--space-gray);
}

.RelatedGameCard:hover {
    transform: translateY(-5px);
    border-color: var(--neon-aqua);
}

.RelatedGameImage {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.RelatedGameInfo {
    padding: 20px;
}

.RelatedGameTitle {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: var(--quantum-white);
    margin-bottom: 8px;
}

.RelatedGameDesc {
    font-size: 14px;
    color: var(--hologram-silver);
}

@media (max-width: 768px) {
    .GameInfoPanel {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .GamePageTitle {
        font-size: 36px;
    }

    .GameHeader {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .GameControls {
        justify-content: center;
    }

    .RelatedGamesGrid {
        grid-template-columns: 1fr;
    }
}