.breadcrumbs {
    background: rgba(10, 22, 40, 0.6);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    border-bottom: 1px solid rgba(94, 189, 249, 0.2);
    margin-bottom: 0;
}

.breadcrumbs .container {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 4px;
}

.breadcrumbs a:hover {
    color: #5ebdf9;
    background: rgba(94, 189, 249, 0.1);
}

.breadcrumbs span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.breadcrumbs #breadcrumbName {
    color: #5ebdf9;
    font-weight: 600;
}

.game-hero {
    background: linear-gradient(135deg, rgba(26, 144, 218, 0.1) 0%, rgba(10, 22, 40, 0.3) 100%);
    backdrop-filter: blur(10px);
    padding: 60px 0;
    border-bottom: 1px solid rgba(94, 189, 249, 0.2);
    margin-bottom: 50px;
}

.game-hero-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.game-hero-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(94, 189, 249, 0.3);
}

.game-hero-image a {
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.game-hero-image a:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.game-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.game-hero-text h1 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
    background: linear-gradient(135deg, #5ebdf9 0%, #1a90da 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-hero-text .game-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

@media (max-width: 968px) {
    .game-hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .game-hero-text h1 {
        font-size: 28px;
    }

    .game-hero-text .game-description {
        font-size: 16px;
    }
}
