/* ESPANOLGAMES — GAME PAGE */

/* ===============================================
   ULTIMATE GAME PAGE - DARK ORANGE THEME
   Premium UI/UX - 2026 Edition
   =============================================== */

:root {
    --bg-dark: #0a0a0a;
    --bg-card: #121212;
    --bg-card-hover: #1a1a1a;
    --bg-elevated: #1e1e1e;
    --border-light: #2a2a2a;
    --border-hover: #3a3a3a;
    --orange-primary: #ff6b00;
    --orange-dark: #e65100;
    --orange-light: #ff8533;
    --orange-glow: rgba(255, 107, 0, 0.3);
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-muted: #a0a0a0;
    --text-dim: #707070;
    --success: #00c853;
    --danger: #ff3d00;
    --warning: #ffc107;
    --info: #2196f3;
    --gradient-primary: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
    --gradient-hover: linear-gradient(135deg, var(--orange-dark), var(--orange-primary));
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
    --shadow-orange: 0 4px 20px rgba(255, 107, 0, 0.2);
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --border-radius-circle: 50%;
}

.elite-game-page {
    background: var(--bg-dark);
    color: var(--text-secondary);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== PREMIUM HERO SECTION ===== */
.elite-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    margin-top: -70px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0a0a0a;
    background-size: 100% auto;
    background-position: center center;
    background-repeat: no-repeat;
    filter: brightness(1.1);
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.1) 0%, 
        rgba(0,0,0,0.2) 50%,
        rgba(0,0,0,0.6) 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 60px 0;
    animation: fadeInUp 1s ease;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 14px;
}

.hero-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.hero-breadcrumb a:hover {
    color: var(--orange-primary);
}

.hero-breadcrumb i {
    font-size: 12px;
}

.hero-badge-wrapper {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-badge {
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
}

.badge-new {
    background: var(--gradient-primary);
    color: white;
}

.badge-hot {
    background: linear-gradient(135deg, #ff3d00, #ff6e40);
    color: white;
}

.badge-updated {
    background: linear-gradient(135deg, #00c853, #69f0ae);
    color: black;
}

.hero-title {
    font-size: 44px;
    font-weight: 900;
    color: var(--text-primary);
    margin: 0 0 20px 0;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    letter-spacing: -2px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 30px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 15px;
}

.meta-item i {
    color: var(--orange-primary);
    font-size: 16px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero-btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 0, 0.6);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 107, 0, 0.5);
    color: white;
}

.hero-btn-secondary:hover {
    background: var(--orange-primary);
    border-color: var(--orange-primary);
    transform: translateY(-3px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
    z-index: 10;
}

/* ===== INFO CARD ===== */
.info-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-light);
    padding: 32px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 20;
    margin-top: -60px;
}

.info-card-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
}

.info-cover {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cover-wrapper {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-light);
}

.cover-image {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.cover-wrapper:hover .cover-image {
    transform: scale(1.05);
}

.cover-badge {
    position: absolute;
    top: 16px;
    right: 16px;
}

.cover-badge .year {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 18px;
    box-shadow: var(--shadow-orange);
}

.cover-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    background: var(--bg-elevated);
    border-radius: var(--border-radius-md);
    padding: 16px;
    border: 1px solid var(--border-light);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--orange-primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 8px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-details {
    background: var(--bg-elevated);
    border-radius: var(--border-radius-md);
    padding: 24px;
    border: 1px solid var(--border-light);
}

.info-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--orange-primary);
}

.info-header h2 {
    font-size: 24px;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: 2px;
}

.info-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 44px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
    font-size: 18px;
}

.info-label i {
    color: var(--orange-primary);
    width: 18px;
}

.info-value {
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 500;
}

.category-link, .franchise-link {
    color: var(--orange-primary);
    text-decoration: none;
    transition: all 0.3s;
}

.category-link:hover, .franchise-link:hover {
    color: var(--orange-light);
    text-decoration: underline;
}

.separator {
    color: var(--text-muted);
    margin: 0 4px;
}

.language-badge, .version-badge {
    background: rgba(255, 107, 0, 0.2);
    color: var(--orange-primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--orange-primary);
}

.info-rating {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 16px;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.rating-stars i {
    color: #ffc107;
    font-size: 16px;
}

.rating-text {
    color: var(--text-muted);
    font-size: 14px;
}

/* ===== ELITE TABS ===== */
.elite-tabs-container {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--shadow-lg);
}

.tabs-header {
    display: flex;
    gap: 4px;
    padding: 16px;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border-light);
    overflow-x: auto;
    scrollbar-width: thin;
}

.tabs-header::-webkit-scrollbar {
    height: 4px;
}

.tabs-header::-webkit-scrollbar-thumb {
    background: var(--orange-primary);
    border-radius: 2px;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: transparent;
    border: none;
    border-radius: var(--border-radius-md);
    color: var(--text-muted);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.tab-btn i {
    font-size: 16px;
}

.tab-btn:hover {
    background: rgba(255, 107, 0, 0.1);
    color: var(--orange-primary);
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-orange);
}

.tab-btn-download {
    background: rgba(255, 107, 0, 0.2);
    border: 2px solid var(--orange-primary);
    color: var(--orange-primary);
}

.tab-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 12px;
}

.tabs-content {
    padding: 40px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

/* ===== DESCRIPTION TAB ===== */
.description-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.description-content {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.9;
}

.installation-card {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(255, 107, 0, 0.05));
    border-left: 6px solid var(--orange-primary);
    border-radius: var(--border-radius-md);
    padding: 24px;
}

.installation-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.installation-header i {
    color: var(--orange-primary);
    font-size: 24px;
}

.installation-header h3 {
    color: var(--orange-primary);
    margin: 0;
    font-size: 20px;
}

.installation-body {
    color: var(--text-secondary);
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-elevated);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-light);
}

.feature-item i {
    color: var(--success);
    font-size: 18px;
}

/* ===== SCREENSHOTS TAB ===== */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.screenshot-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/9;
    box-shadow: var(--shadow-md);
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.screenshot-item:hover img {
    transform: scale(1.1);
}

.screenshot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 107, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screenshot-item:hover .screenshot-overlay {
    opacity: 1;
}

.screenshot-overlay i {
    font-size: 48px;
    color: white;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.screenshot-item:hover .screenshot-overlay i {
    transform: scale(1);
}

/* ===== REQUIREMENTS TAB ===== */
.requirements-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.requirements-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--bg-elevated);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-light);
}

.req-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
}

.req-icon i {
    font-size: 30px;
    color: white;
}

.req-title h3 {
    color: var(--text-primary);
    margin: 0 0 8px 0;
    font-size: 20px;
}

.req-title p {
    color: var(--text-muted);
    margin: 0;
    font-size: 14px;
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.req-card {
    background: var(--bg-elevated);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.req-card-header {
    padding: 16px 20px;
    border-bottom: 2px solid;
    display: flex;
    align-items: center;
    gap: 12px;
}

.req-minimum .req-card-header {
    background: rgba(255, 107, 0, 0.1);
    border-bottom-color: var(--orange-primary);
}

.req-recommended .req-card-header {
    background: rgba(0, 200, 83, 0.1);
    border-bottom-color: var(--success);
}

.req-card-header i {
    font-size: 20px;
}

.req-minimum .req-card-header i {
    color: var(--orange-primary);
}

.req-recommended .req-card-header i {
    color: var(--success);
}

.req-card-header h4 {
    margin: 0;
    font-size: 18px;
    color: var(--text-primary);
}

.req-card-body {
    padding: 20px;
}

.req-spec {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.req-spec:last-child {
    border-bottom: none;
}

.spec-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
}

.spec-label i {
    color: var(--orange-primary);
    width: 18px;
}

.spec-value {
    color: var(--text-primary);
    font-size: 14px;
}

/* ===== DOWNLOAD TAB ===== */
.download-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.download-lock-card {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(255, 107, 0, 0.05));
    border: 2px dashed var(--orange-primary);
    border-radius: var(--border-radius-lg);
}

.lock-icon {
    font-size: 80px;
    color: var(--orange-primary);
    margin-bottom: 24px;
    animation: pulse 2s infinite;
}

.download-lock-card h3 {
    font-size: 32px;
    color: var(--text-primary);
    margin: 0 0 16px 0;
}

.download-lock-card p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.lock-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

.lock-actions .btn-login,
.lock-actions .btn-register {
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s;
}

.lock-actions .btn-login {
    background: transparent;
    border: 2px solid var(--orange-primary);
    color: var(--text-primary);
}

.lock-actions .btn-login:hover {
    background: var(--orange-primary);
    transform: translateY(-3px);
}

.lock-actions .btn-register {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-orange);
}

.lock-actions .btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.6);
}

.lock-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    color: var(--text-secondary);
}

.benefit-item i {
    color: var(--success);
}

.download-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 16px;
}

.download-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.download-title i {
    color: var(--orange-primary);
    font-size: 28px;
}

.download-title h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 24px;
}

.download-info {
    display: flex;
    gap: 20px;
    color: var(--text-muted);
    font-size: 14px;
}

.download-info i {
    color: var(--orange-primary);
    margin-right: 6px;
}

.download-links-grid {
    display: grid;
    gap: 20px;
}

.download-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: all 0.3s;
}

.download-card:hover {
    border-color: var(--orange-primary);
    box-shadow: var(--shadow-orange);
    transform: translateY(-2px);
}

.download-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 107, 0, 0.05);
    border-bottom: 1px solid var(--border-light);
}

.server-number {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
    color: white;
}

.server-info h4 {
    margin: 0 0 6px 0;
    color: var(--text-primary);
    font-size: 18px;
}

.file-type {
    color: var(--text-muted);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

.download-card-body {
    padding: 20px;
}

.server-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 14px;
    flex-wrap: wrap;
}

.server-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.server-password {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--orange-primary);
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.server-password i {
    color: var(--orange-primary);
}

.copy-password {
    background: transparent;
    border: none;
    color: var(--orange-primary);
    cursor: pointer;
    padding: 4px 8px;
    transition: all 0.3s;
}

.copy-password:hover {
    color: var(--orange-light);
    transform: scale(1.1);
}

.download-card-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 20px;
    border-top: 1px solid var(--border-light);
}

.btn-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

.btn-mirror {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: transparent;
    border: 2px solid var(--border-light);
    color: var(--text-muted);
    text-decoration: none;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    transition: all 0.3s;
}

.btn-mirror:hover {
    border-color: var(--orange-primary);
    color: var(--orange-primary);
}

.download-stats {
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.2);
    font-size: 12px;
    color: var(--text-muted);
    border-top: 1px solid var(--border-light);
    margin-top: 10px;
}

.click-count i,
.verified-date i {
    margin-right: 4px;
}

.verified-date i {
    color: var(--success);
}

.download-tips {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-elevated);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-light);
    margin-top: 16px;
}

.tip-icon i {
    font-size: 32px;
    color: var(--orange-primary);
}

.tip-content h4 {
    color: var(--text-primary);
    margin: 0 0 12px 0;
    font-size: 18px;
}

.tip-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 8px;
}

.tip-content li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
}

.tip-content li i {
    color: var(--success);
}

/* ===== RATING SECTION ===== */
.rating-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.rating-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    border: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating-left {
    text-align: center;
}

.rating-big {
    margin-bottom: 8px;
}

.rating-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--text-primary);
}

.rating-max {
    font-size: 24px;
    color: var(--text-muted);
}

.rating-stars-large {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-bottom: 8px;
}

.rating-stars-large i {
    color: #ffc107;
    font-size: 20px;
}

.rating-count {
    color: var(--text-muted);
    font-size: 13px;
}

.rating-right {
    text-align: right;
}

.rating-right h4 {
    color: var(--text-primary);
    margin: 0 0 12px 0;
    font-size: 18px;
}

.user-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
}

.star-rating {
    display: flex;
    gap: 8px;
}

.star-rating i {
    color: #ffc107;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.2s;
}

.star-rating i:hover,
.star-rating i.active {
    transform: scale(1.2);
    color: #ffc107;
}

.login-rating-prompt a {
    color: var(--orange-primary);
    text-decoration: none;
    font-weight: 600;
}

.share-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.share-label {
    display: flex;
    align-items: center;
    gap: 12px;
}

.share-label i {
    color: var(--orange-primary);
    font-size: 20px;
}

.share-label span {
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: 1px;
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.telegram {
    background: #0088cc;
}

.share-btn.copy {
    background: var(--border-light);
    color: var(--text-primary);
}

/* ===== RELATED GAMES ===== */
.related-section {
    margin-bottom: 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title i {
    color: var(--orange-primary);
    font-size: 28px;
}

.section-title h2 {
    color: var(--text-primary);
    margin: 0;
    font-size: 24px;
    letter-spacing: 2px;
}

.view-all {
    color: var(--orange-primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.view-all:hover {
    gap: 12px;
    color: var(--orange-light);
}

.related-carousel {
    position: relative;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 8px 4px;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.related-card {
    flex: 0 0 calc(20% - 16px);
    min-width: 200px;
    background: var(--bg-card);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    text-decoration: none;
    border: 1px solid var(--border-light);
    transition: all 0.3s;
}

.related-card:hover {
    transform: translateY(-5px);
    border-color: var(--orange-primary);
    box-shadow: var(--shadow-orange);
}

.related-card-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.related-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.related-card:hover .related-card-image img {
    transform: scale(1.1);
}

.related-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 107, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.related-card:hover .related-card-overlay {
    opacity: 1;
}

.related-card-overlay i {
    color: white;
    font-size: 40px;
}

.related-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
}

.related-badge.new {
    background: var(--gradient-primary);
}

.related-card-content {
    padding: 16px;
}

.related-card-content h4 {
    color: var(--text-primary);
    margin: 0 0 8px 0;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.related-card-meta {
    display: flex;
    gap: 12px;
    color: var(--text-muted);
    font-size: 12px;
}

.related-card-meta i {
    color: var(--orange-primary);
    margin-right: 4px;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius-circle);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-arrow:hover {
    background: var(--orange-primary);
    border-color: var(--orange-primary);
    color: white;
}

.carousel-prev {
    left: -20px;
}

.carousel-next {
    right: -20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

/* ===== COMMENTS SECTION ===== */
.comments-section {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-light);
    padding: 32px;
    margin-bottom: 40px;
}

.comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border-light);
}

.comments-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.comments-title i {
    color: var(--orange-primary);
    font-size: 24px;
}

.comments-title h2 {
    color: var(--text-primary);
    margin: 0;
    font-size: 20px;
}

.comments-count {
    background: var(--orange-primary);
    color: white;
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.comments-sort {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
}

.sort-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px 8px;
    transition: all 0.3s;
}

.sort-btn:hover,
.sort-btn.active {
    color: var(--orange-primary);
}

.comment-form-container {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.comment-user-avatar {
    flex-shrink: 0;
}

.comment-user-avatar img {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-circle);
    border: 2px solid var(--orange-primary);
}

.comment-form {
    flex: 1;
}

.comment-form textarea {
    width: 100%;
    padding: 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-md);
    color: var(--text-primary);
    font-size: 15px;
    resize: vertical;
    margin-bottom: 16px;
    transition: all 0.3s;
}

.comment-form textarea:focus {
    outline: none;
    border-color: var(--orange-primary);
    box-shadow: var(--shadow-orange);
}

.comment-form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comment-tools {
    display: flex;
    gap: 8px;
}

.tool-btn {
    width: 36px;
    height: 36px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-sm);
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s;
}

.tool-btn:hover {
    background: var(--orange-primary);
    color: white;
    border-color: var(--orange-primary);
}

.btn-submit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

.comment-login-card {
    padding: 24px;
    background: rgba(255, 107, 0, 0.1);
    border: 2px dashed var(--orange-primary);
    border-radius: var(--border-radius-md);
    margin-bottom: 32px;
}

.login-message {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.login-message i {
    color: var(--orange-primary);
    font-size: 24px;
}

.login-message a {
    color: var(--orange-primary);
    font-weight: 700;
    text-decoration: none;
}

.login-message a:hover {
    text-decoration: underline;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.comment-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-elevated);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-light);
}

.comment-avatar {
    position: relative;
    flex-shrink: 0;
}

.comment-avatar img {
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-circle);
    border: 2px solid var(--orange-primary);
}

.user-level {
    position: absolute;
    bottom: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 11px;
    font-weight: 700;
    border: 2px solid var(--bg-card);
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.comment-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.comment-username {
    color: var(--orange-primary);
    font-weight: 700;
    font-size: 15px;
}

.comment-time {
    color: var(--text-muted);
    font-size: 12px;
}

.comment-time i {
    margin-right: 4px;
}

.comment-actions {
    display: flex;
    gap: 8px;
}

.comment-action-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    transition: all 0.3s;
}

.comment-action-btn:hover {
    color: var(--orange-primary);
}

.comment-body {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.comment-footer {
    display: flex;
    gap: 20px;
}

.comment-like-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s;
}

.comment-like-btn:hover,
.comment-like-btn.liked {
    color: var(--orange-primary);
}

.comment-reply-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s;
}

.comment-reply-btn:hover {
    color: var(--orange-primary);
}

.reply-form-container {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.reply-form textarea {
    width: 100%;
    padding: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    margin-bottom: 12px;
}

.reply-form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.cancel-reply {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
}

.btn-reply-submit {
    padding: 8px 16px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
}

.comment-replies {
    margin-top: 16px;
    padding-left: 24px;
    border-left: 3px solid var(--orange-primary);
}

.reply-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: var(--bg-card);
    border-radius: var(--border-radius-sm);
    margin-bottom: 12px;
}

.reply-avatar img {
    width: 32px;
    height: 32px;
    border-radius: var(--border-radius-circle);
}

.reply-content {
    flex: 1;
}

.reply-header {
    display: flex;
    gap: 12px;
    margin-bottom: 4px;
}

.reply-username {
    color: var(--orange-primary);
    font-weight: 600;
    font-size: 13px;
}

.reply-time {
    color: var(--text-muted);
    font-size: 11px;
}

.reply-body {
    color: var(--text-secondary);
    font-size: 14px;
}

.view-more-replies {
    background: transparent;
    border: none;
    color: var(--orange-primary);
    font-size: 13px;
    cursor: pointer;
    padding: 8px 0;
}

.no-comments {
    text-align: center;
    padding: 60px 20px;
}

.no-comments-icon i {
    font-size: 60px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.no-comments h4 {
    color: var(--text-primary);
    font-size: 24px;
    margin-bottom: 12px;
}

.no-comments p {
    color: var(--text-muted);
}

/* ===== LIGHTBOX MODAL ===== */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: transparent;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 107, 0, 0.8);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-circle);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--orange-primary);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 16px;
}

/* ===== SHARE MODAL ===== */
.share-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.share-modal.active {
    display: flex;
}

.share-modal-content {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    max-width: 500px;
    width: 90%;
    border: 1px solid var(--orange-primary);
}

.share-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.share-modal-header h3 {
    color: var(--text-primary);
    margin: 0;
}

.share-modal-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
}

.share-modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.share-qr {
    text-align: center;
}

.share-qr img {
    border-radius: var(--border-radius-md);
    padding: 8px;
    background: white;
    margin-bottom: 8px;
}

.share-qr p {
    color: var(--text-muted);
    font-size: 13px;
}

.share-link {
    width: 100%;
}

.share-link span {
    display: block;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.share-link-box {
    display: flex;
    gap: 8px;
}

.share-link-box input {
    flex: 1;
    padding: 12px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
}

.share-link-box button {
    padding: 12px 16px;
    background: var(--orange-primary);
    border: none;
    border-radius: var(--border-radius-sm);
    color: white;
    cursor: pointer;
}

/* ===== EMPTY STATE ===== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon i {
    font-size: 64px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.empty-state h4 {
    color: var(--text-primary);
    font-size: 20px;
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--text-muted);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1200px) {
    .carousel-arrow {
        display: none;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 48px;
    }
    
    .info-card-grid {
        grid-template-columns: 1fr;
    }
    
    .info-cover {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .rating-section {
        grid-template-columns: 1fr;
    }
    
    .related-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .elite-hero {
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-meta {
        gap: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
    }
    
    .info-card {
        margin-top: -40px;
        padding: 24px;
    }
    
    .tabs-header {
        padding: 12px;
    }
    
    .tab-btn span {
        display: none;
    }
    
    .tab-btn i {
        font-size: 20px;
    }
    
    .tabs-content {
        padding: 24px;
    }
    
    .screenshots-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .download-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .download-card-footer {
        grid-template-columns: 1fr;
    }
    
    .related-card {
        flex: 0 0 calc(50% - 10px);
    }
    
    .comment-form-container {
        flex-direction: column;
    }
    
    .comment-user-avatar {
        display: none;
    }
    
    .comment-form-actions {
        flex-direction: column;
        gap: 16px;
    }
    
    .comment-tools {
        justify-content: center;
    }
    
    .btn-submit {
        width: 100%;
        justify-content: center;
    }
    
    .comment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .lock-actions {
        flex-direction: column;
    }
    
    .lock-benefits {
        grid-template-columns: 1fr;
    }
    
    .download-tips {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 23px;
    }
    
    .hero-meta {
        flex-direction: column;
        gap: 12px;
    }
    
    .info-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }
    
    .info-label {
        color: var(--orange-primary);
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    .related-card {
        flex: 0 0 100%;
    }
    
    .comments-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .comment-item {
        flex-direction: column;
    }
    
    .comment-avatar {
        align-self: flex-start;
    }
    
    .share-card {
        flex-direction: column;
        gap: 16px;
    }
    
    .share-buttons {
        width: 100%;
        justify-content: center;
    }
}