.cont-rig {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Game message notification */
.game-message {
    background: #f8f8f8;
    border-left: 4px solid #666;
    padding: 12px 20px;
    margin-bottom: 5px;
}

.game-message p {
    margin: 0;
    font-size: 13px;
    color: #666;
    font-style: italic;
}

/* Game container*/
.game {
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    padding: 0;
    margin: 0;
}

/* Game header section */
.game-header {
    color: #fff;
    padding: 25px 30px;
}

.game-name {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
    color: #fff;
}

/* Game content area */
.game-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    padding: 30px;
}

/* Left sidebar - thumbnail and meta */
.game-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.game-thumbnail {
    width: 100%;
    aspect-ratio: 1;
    border: 3px solid #ddd;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.game-thumbnail:hover {
    border-color: #000;
}

.game-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Meta info cards */
.game-meta-card {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    padding: 15px;
}

.game-meta-card h4 {
    font-size: 13px;
    font-weight: 700;
    color: #000;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Rating display */
.rating-display {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    display: flex;
    gap: 3px;
}

.star {
    width: 18px;
    height: 18px;
    fill: #000;
}

.star.empty {
    fill: #ccc;
}

.rating-number {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

/* Dimensions */
.dimensions-text {
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dimensions-text svg {
    width: 16px;
    height: 16px;
    fill: #666;
}

/* Play button in sidebar */
.play-button-wrapper {
    margin-top: auto;
}

.play {
    display: block;
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: #000;
    border: 2px solid #000;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 2px;
}

.play:hover {
    background: #fff;
    color: #000;
}

/* Right main content */
.game-main {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Video section */
.game-video-section {
    width: 100%;
}

.game-video {
    width: 100%;
    border: 2px solid #ddd;
    overflow: hidden;
}

.game-video video {
    width: 100%;
    height: auto;
    display: block;
}

.game-video.hidden {
    display: none;
}

/* Description section */
.game-description {
    line-height: 1.8;
    font-size: 15px;
    color: #444;
    text-align: justify;
}

/* Info section */
.game-info-section {
    background: #f9f9f9;
    border-left: 3px solid #000;
    padding: 20px;
}

.game-info-section h4 {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-info-section p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Tags section */
.game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-block;
    padding: 8px 16px;
    background: #f0f0f0;
    color: #333;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Responsive design */
@media screen and (max-width: 900px) {
    .game-content {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 20px;
    }

    .game-sidebar {
        max-width: 400px;
        margin: 0 auto;
    }

    .game-name {
        font-size: 24px;
    }

    .game-header {
        padding: 20px;
    }
}

@media screen and (max-width: 500px) {
    .game-sidebar {
        max-width: 100%;
    }

    .game-content {
        padding: 15px;
    }

    .game-header {
        padding: 15px;
    }

    .game-name {
        font-size: 20px;
    }
}