.game-info-read-more:hover, .game-info-read-more:focus, .game-info-read-more:active {
    color: #000;
	background: #fff0;
	box-shadow: none;
}
/* Frontend styles for Game Info Block */
.game-info-block {
    display: flex;
    align-items: stretch;
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
    margin: 20px 0;
    min-height: 400px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.game-info-block.media-right {
    flex-direction: row-reverse;
}

.game-info-media {
    flex: 0 0 45%;
    position: relative;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.game-info-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.game-info-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-info-media iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.game-info-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.game-info-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #1a1a1a;
    line-height: 1.2;
}

.game-info-text-wrapper {
    flex: 1;
    margin-bottom: 30px;
    position: relative;
}

.game-info-text {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    max-height: 120px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.3s ease;
}

.game-info-text-wrapper.expanded .game-info-text {
    max-height: none;
}

.game-info-text-wrapper::after {
    content: '';
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #f8f9fa);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.game-info-text-wrapper.expanded::after {
    opacity: 0;
}

.game-info-read-more {
    background: none;
    border: none;
    color: #666;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s ease;
    float: right;
}

.game-info-read-more:hover {
    color: #333;
}

.game-info-read-more .arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.game-info-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.game-info-play-button {
    background: #ffc107;
    color: #000;
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.game-info-play-button:hover {
    background: #ffb300;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.game-info-play-button .play-icon {
    font-size: 20px;
}

.game-info-trailer-button {
    background: transparent;
    color: #333;
    border: 2px solid #333;
    border-radius: 50px;
    padding: 13px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.game-info-trailer-button:hover {
    background: #333;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .game-info-block,
    .game-info-block.media-right {
        flex-direction: column;
        min-height: auto;
    }
    
    .game-info-media {
        flex: none;
        height: 250px;
    }
    
    .game-info-content {
        padding: 30px 20px;
    }
    
    .game-info-title {
        font-size: 24px;
    }
    
    .game-info-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .game-info-play-button,
    .game-info-trailer-button {
        text-align: center;
        justify-content: center;
    }
}