/* Gamevers Game Content Section Styles - Refined */
.gv-game-content-section {
    position: relative;
    width: 100%;
    background-color: transparent;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    padding-bottom: 20px;
}

.gv-gc-container {
    display: flex;
    flex-direction: column;
    /* Stack Head and Body vertically */
    background-color: transparent;
    color: #fff;
    /* White Text */
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
}

/* --- ROW 1: HEADERS --- */
.gv-gc-header-row {
    display: flex;
    min-height: 80px;
    width: 100%;
    align-items: flex-start;
}

.gv-gc-header-left {
    height: 60px;
    display: flex;
    align-items: center;
    position: relative;
}

.gv-gc-header-right {
    /* Requested 40% */
    padding: 20px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center the rating box */
}

/* Text styles */
.gv-gc-header-left h2 {
    font-size: 26px !important;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0px;
    letter-spacing: -0.5px;
    margin-top: 0px;
}

/* --- ROW 2: BODY --- */
.gv-gc-body-row {
    display: flex;
    width: 100%;
}

.gv-gc-body-left {
    flex: 1 1 60%;
    /* Requested 60% */
    padding: 0 30px 0 0;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Vertical Divider (Subtle) */
.gv-gc-body-left::after {
    content: "";
    position: absolute;
    right: 0;
    top: 5%;
    bottom: 5%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.gv-gc-body-right {
    flex: 1 1 40%;
    /* Requested 40% */
    padding: 0 0 0 30px;
    display: flex;
    flex-direction: column;
}

/* Desc Content */
.gv-gc-desc-content {
    font-size: 15px;
    line-height: 1.65;
    color: #7a7a7a;
    /* Requested color */
    font-weight: 400;

    /* Line Clamp Logic */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Expanded State */
.gv-gc-desc-content.gv-expanded {
    -webkit-line-clamp: unset;
    display: block;
}

.gv-gc-desc-content p {
    margin: 0;
    margin-bottom: 0px;
}

/* Show More Button ("Read more") */
.gv-show-more-btn {
    display: inline-block;
    color: #7a7a7a !important;
    /* Force Start Lighter */
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    margin-top: 5px;
    transition: color 0.2s;
}

.gv-show-more-btn:hover {
    text-decoration: none;
    color: #b1b0b0 !important;
    /* Force Hover Darker */
}

.gv-arrow {
    font-size: 10px;
    margin-left: 4px;
}

/* Tags */
.gv-gc-tags-container {
    margin-top: auto;
    padding-top: 20px;
    border: none;
    background: transparent;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.gv-tags-label {
    font-weight: 700;
    font-size: 14px;
    margin-right: 6px;
    color: #fff;
}

.gv-gc-tags-container a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.08);
    /* Frosted */
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 4px 12px;
    border-radius: 20px;
    /* Pill shape */
    transition: all 0.2s ease;
    display: inline-block;
    letter-spacing: 0.3px;
}

.gv-gc-tags-container a:hover {
    background: #fff;
    color: #1a1a1a;
    border-color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* --- LISTS --- */
.gv-gc-split-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gv-gc-list {
    list-style: none;
    width: 260px;
    margin: 0;
    padding: 0;
}

.gv-gc-item {
    margin-bottom: 5px;
    font-size: 13px;
    display: block;
    line-height: 1.4;
}

/* Labels: Muted Gray */
.gv-gc-label {
    font-weight: 500;
    color: #7a7a7a;
    /* Requested Color */
    margin-right: 4px;
    display: inline-block;
}

/* Values: Text (Non-clickable) - #7a7a7a */
.gv-gc-value {
    font-weight: 600;
    color: #7a7a7a;
    /* Requested color for non-clickable */
}

/* Values: Links (Clickable) - #cecece -> Purple hover */
.gv-gc-value a,
.gv-gc-link {
    color: #cecece !important;
    text-decoration: none;
    border-bottom: none !important;
    /* Removed underline */
    transition: all 0.2s ease;
}

.gv-gc-value a:hover,
.gv-gc-link:hover {
    color: #d580ff !important;
    /* Bright Purple */
    text-shadow: 0 0 8px rgba(213, 128, 255, 0.4);
}

/* Publisher / Brand Match */
.gv-gc-item-publisher {
    display: flex;
    align-items: center;
}

.gv-gc-item-publisher .gv-gc-label {
    margin-right: 4px;
}

/* Rating Box */
/* Rating Box */
.gv-rating-box {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Increased gap */
}

/* Progress Circle (Donut Chart) */
.gv-rating-circle {
    width: 54px;
    /* Slightly larger */
    height: 54px;
    border-radius: 50%;
    /* Conic Gradient for Progress: Variable Color for %, Transparent (shows inner BG) for rest */
    background: conic-gradient(var(--gv-rating-color, #00e676) var(--gv-rating-pct, 100%), rgba(255, 255, 255, 0.1) 0);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Remove old border */
    border: none;
}

/* Inner Circle (The Hole - Mask) */
.gv-rating-circle::before {
    content: "";
    position: absolute;
    top: 4px;
    /* Thickness of border = 4px */
    bottom: 4px;
    left: 4px;
    right: 4px;
    background-color: #1a1a1a;
    /* Match panel BG or darker */
    border-radius: 50%;
    z-index: 1;
}

/* The Value Text (Inside hole) */
.gv-rating-val {
    position: relative;
    z-index: 2;
    font-weight: 800;
    font-size: 18px;
    /* Bigger value */
    color: #fff;
    line-height: 1;
}

/* Bigger font for single digit (e.g. "9") */
.gv-rating-single {
    font-size: 28px;
    top: -1px;
    /* Optical alignment */
}

.gv-rating-text {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    color: #e0e0e0;
    line-height: 1.3;
}

.gv-rt-label {
    font-weight: 800;
    font-size: 13px;
    /* Bigger per request (was 10px) */
    text-transform: uppercase;
    color: #8b8b8b;
    /* Slightly lighter */
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.gv-rt-count {
    color: #fff;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
    .gv-game-content-section {
        flex-direction: column;
    }

    .gv-gc-header-left::after,
    .gv-gc-body-left::after {
        display: none;
        /* Hide dividers on mobile */
    }

    .gv-gc-header-left,
    .gv-gc-header-right,
    .gv-gc-body-left,
    .gv-gc-body-right {
        flex: 1 1 100%;
        padding: 15px 20px;
    }

    .gv-gc-split-lists {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Platform Icons */
.gv-platform-icons {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.gv-platform-icons img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.gv-platform-icons img:hover {
    opacity: 1;
}

.gv-text-icon {
    font-size: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 3px 6px;
    border-radius: 3px;
    line-height: 1;
}

/* External Link Icon (Sleek SVG Arrow) */
.gv-external-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.gv-external-link::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    /* Clean Arrow Up Right SVG */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999999' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17l9.2-9.2M17 17V7H7'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
    transition: all 0.2s ease;
    transform: translateY(1px);
    /* Optical alignment */
}

.gv-external-link:hover::after {
    /* Bright white on hover */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17l9.2-9.2M17 17V7H7'/%3E%3C/svg%3E");
    opacity: 1;
    transform: translate(2px, -1px);
    /* Slight movement */
}