/* ==================== Reset & Variables ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0a0a0e;
    --bg-warm: #0e0b0c;
    --bg-card: rgba(200, 30, 30, 0.04);
    --bg-card-hover: rgba(200, 30, 30, 0.08);
    --glass: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.07);
    --red-deep: #7f1d1d;
    --red: #b91c1c;
    --red-bright: #dc2626;
    --red-light: #ef4444;
    --red-glow: #f87171;
    --red-muted: rgba(185, 28, 28, 0.15);
    --gold: #d4a053;
    --gold-light: #f0c674;
    --text-1: #f2eded;
    --text-2: #9c8e8e;
    --text-3: #5c4f4f;
    --radius: 14px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text-1);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== Background ==================== */
.mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%, rgba(185, 28, 28, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 80% 20%, rgba(127, 29, 29, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 50% 90%, rgba(185, 28, 28, 0.05) 0%, transparent 50%);
}

/* ==================== Header ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 0;
    transition: all 0.4s var(--ease);
}

.header.scrolled {
    background: rgba(10, 10, 14, 0.85);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(185, 28, 28, 0.15);
    padding: 10px 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-1);
    font-weight: 800;
    font-size: 20px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-text {
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--text-1) 0%, var(--text-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 4px;
}

.nav-link {
    padding: 8px 20px;
    color: var(--text-2);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.25s var(--ease);
}

.nav-link:hover {
    color: var(--text-1);
}

.nav-link.active {
    color: var(--text-1);
    background: rgba(185, 28, 28, 0.15);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 22px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s var(--ease);
    box-shadow: 0 2px 12px rgba(185, 28, 28, 0.2);
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--red-bright) 0%, var(--red) 100%);
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(185, 28, 28, 0.35);
}

.nav-cta i {
    font-size: 12px;
    transition: transform 0.25s var(--ease);
}

.nav-cta:hover i {
    transform: translateX(3px);
}

/* ==================== Hero ==================== */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 60px;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(185, 28, 28, 0.12) 0%, rgba(127, 29, 29, 0.06) 40%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--red), transparent);
    opacity: 0.3;
}

.hero-inner {
    position: relative;
    text-align: center;
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: rgba(185, 28, 28, 0.1);
    border: 1px solid rgba(185, 28, 28, 0.2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--red-glow);
    margin-bottom: 28px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-badge i {
    color: var(--red-light);
    font-size: 11px;
}

.hero-title {
    font-size: clamp(38px, 7vw, 68px);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -2px;
    margin-bottom: 18px;
    color: var(--text-1);
}

.hero-highlight {
    background: linear-gradient(135deg, var(--red-light) 0%, var(--red-glow) 40%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 17px;
    color: var(--text-2);
    margin-bottom: 36px;
    letter-spacing: -0.2px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 36px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.hero-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 32px;
    background: var(--glass-border);
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--text-1);
}

.stat-label {
    font-size: 12px;
    color: var(--text-3);
    font-weight: 500;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== Buttons ==================== */
.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    box-shadow: 0 4px 20px rgba(185, 28, 28, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s var(--ease);
}

.btn-main:hover::before {
    left: 100%;
}

.btn-main:hover {
    background: linear-gradient(135deg, var(--red-bright) 0%, var(--red) 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(185, 28, 28, 0.35);
}

.btn-main i {
    font-size: 13px;
    transition: transform 0.25s var(--ease);
}

.btn-main:hover i {
    transform: translateX(3px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    color: var(--text-2);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(185, 28, 28, 0.25);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.btn-ghost:hover {
    color: var(--text-1);
    background: rgba(185, 28, 28, 0.08);
    border-color: rgba(185, 28, 28, 0.4);
    transform: translateY(-2px);
}

/* ==================== Section Heads ==================== */
.section-head {
    margin-bottom: 48px;
    position: relative;
}

.section-head h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.section-head h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--red), transparent);
    border-radius: 2px;
    margin-top: 12px;
}

.section-head p {
    font-size: 16px;
    color: var(--text-3);
}

/* ==================== Games Grid ==================== */
.section-games {
    padding: 80px 0;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.game-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
    cursor: pointer;
    position: relative;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: rgba(185, 28, 28, 0.25);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(185, 28, 28, 0.1),
        0 0 40px rgba(185, 28, 28, 0.05);
    background: var(--bg-card-hover);
}

.game-card:hover::before {
    opacity: 1;
}

.game-thumbnail {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.game-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.game-card:hover .game-thumbnail img {
    transform: scale(1.08);
}

.game-thumbnail::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
    pointer-events: none;
}

.game-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 12px;
    background: rgba(10, 10, 14, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(185, 28, 28, 0.2);
    color: var(--red-glow);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 1;
}

.game-info {
    padding: 20px;
}

.game-header {
    margin-bottom: 10px;
}

.game-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-1);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: -0.3px;
}

.game-title-en {
    font-size: 12px;
    color: var(--text-3);
    margin-top: 2px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.game-description {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.game-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
}

.game-links {
    display: flex;
    gap: 6px;
}

.game-link-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: var(--glass);
    color: var(--text-3);
    border: 1px solid transparent;
    border-radius: var(--radius-xs);
    font-size: 12px;
    text-decoration: none;
    transition: all 0.2s var(--ease);
    font-weight: 500;
}

.game-link-btn:hover {
    color: var(--red-glow);
    background: rgba(185, 28, 28, 0.1);
    border-color: rgba(185, 28, 28, 0.15);
}

.game-view-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--red), var(--red-deep));
    color: white;
    border: none;
    border-radius: var(--radius-xs);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s var(--ease);
}

.game-view-btn:hover {
    background: linear-gradient(135deg, var(--red-bright), var(--red));
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(185, 28, 28, 0.25);
}

/* ==================== States ==================== */
.loading-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-3);
}

.loader {
    width: 40px;
    height: 40px;
    border: 3px solid var(--glass-border);
    border-top-color: var(--red);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state i {
    font-size: 56px;
    color: var(--text-3);
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--text-3);
    margin-bottom: 24px;
}

.load-more-wrap {
    text-align: center;
    margin-top: 40px;
}

/* ==================== News ==================== */
.section-news {
    padding: 80px 0;
    border-top: 1px solid var(--glass-border);
}

.news-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 32px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.news-tabs::-webkit-scrollbar {
    display: none;
}

.news-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: transparent;
    color: var(--text-3);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.25s var(--ease);
}

.news-tab:hover {
    color: var(--text-2);
    border-color: rgba(185, 28, 28, 0.2);
}

.news-tab.active {
    color: white;
    background: linear-gradient(135deg, var(--red), var(--red-deep));
    border-color: var(--red);
    box-shadow: 0 2px 12px rgba(185, 28, 28, 0.2);
}

.news-tab i {
    font-size: 11px;
}

.news-tab .tab-count {
    font-size: 10px;
    opacity: 0.7;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.news-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.3s var(--ease);
    position: relative;
}

.news-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 0;
    background: var(--red);
    border-radius: 1px;
    transition: height 0.3s var(--ease);
}

.news-item:hover {
    background: var(--bg-card-hover);
    border-color: rgba(185, 28, 28, 0.15);
    transform: translateX(4px);
}

.news-item:hover::before {
    height: 60%;
}

.news-tag {
    flex-shrink: 0;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 6px;
    letter-spacing: 0.3px;
    background: rgba(185, 28, 28, 0.12);
    color: var(--red-glow);
    margin-top: 2px;
}

.news-tag.tag-download { background: rgba(220, 38, 38, 0.12); color: var(--red-light); }
.news-tag.tag-guide { background: rgba(212, 160, 83, 0.12); color: var(--gold-light); }
.news-tag.tag-giftcode { background: rgba(239, 68, 68, 0.12); color: var(--red-glow); }
.news-tag.tag-character { background: rgba(185, 28, 28, 0.12); color: #fca5a5; }
.news-tag.tag-review { background: rgba(212, 160, 83, 0.12); color: var(--gold); }
.news-tag.tag-update { background: rgba(220, 38, 38, 0.1); color: var(--red-bright); }

.news-body {
    flex: 1;
    min-width: 0;
}

.news-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.2px;
    margin-bottom: 2px;
}

.news-item:hover .news-title {
    color: var(--red-glow);
}

.news-desc {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.5;
    margin: 4px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0.8;
}

.news-item:hover .news-desc {
    opacity: 1;
}

.news-game {
    font-size: 12px;
    color: var(--text-3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-meta {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: var(--text-3);
    margin-top: 2px;
}

.news-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.news-meta-item i {
    font-size: 11px;
}

.news-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-3);
}

.news-empty i {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}

.news-pagination {
    text-align: center;
    margin-top: 32px;
}

/* ==================== Features ==================== */
.section-features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.feat-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all 0.35s var(--ease);
    position: relative;
    overflow: hidden;
}

.feat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red-deep), transparent);
    opacity: 0;
    transition: opacity 0.35s var(--ease);
}

.feat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(185, 28, 28, 0.2);
    background: var(--bg-card-hover);
}

.feat-card:hover::before {
    opacity: 1;
}

.feat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(185, 28, 28, 0.12);
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--red-light);
}

.feat-icon-2 { background: rgba(212, 160, 83, 0.12); color: var(--gold); }
.feat-icon-3 { background: rgba(239, 68, 68, 0.12); color: var(--red-glow); }
.feat-icon-4 { background: rgba(212, 160, 83, 0.1); color: var(--gold-light); }
.feat-icon-5 { background: rgba(185, 28, 28, 0.1); color: #fca5a5; }
.feat-icon-6 { background: rgba(220, 38, 38, 0.12); color: var(--red-bright); }

.feat-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.feat-card p {
    font-size: 14px;
    color: var(--text-3);
    line-height: 1.5;
}

/* ==================== Sitemap / Hot Games ==================== */
.section-sitemap {
    padding: 80px 0;
}

.sitemap-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
    margin-bottom: 64px;
}

.sitemap-game-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text-2);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.25s var(--ease);
}

.sitemap-game-link:hover {
    color: var(--text-1);
    background: var(--bg-card-hover);
    border-color: rgba(185, 28, 28, 0.2);
    transform: translateX(3px);
}

.sitemap-game-link.sitemap-hidden {
    display: none;
}

.sitemap-game-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    border-radius: 4px;
    flex-shrink: 0;
}

.sitemap-game-icon-fallback {
    display: none;
    color: var(--red-light);
    font-size: 14px;
    flex-shrink: 0;
}

.sitemap-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 32px;
    padding-top: 48px;
    border-top: 1px solid var(--glass-border);
}

.sitemap-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--red-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.sitemap-col a {
    display: block;
    color: var(--text-2);
    text-decoration: none;
    font-size: 14px;
    padding: 6px 0;
    transition: all 0.2s var(--ease);
}

.sitemap-col a:hover {
    color: var(--text-1);
    padding-left: 4px;
}

/* ==================== Footer ==================== */
.footer {
    padding: 32px 0;
    border-top: 1px solid var(--glass-border);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 18px;
}

.footer-copy {
    font-size: 13px;
    color: var(--text-3);
}

.footer-link {
    color: var(--text-3);
    text-decoration: none;
    transition: color 0.2s var(--ease);
}

.footer-link:hover {
    color: var(--red-glow);
}

/* ==================== Back to Top ==================== */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: rgba(185, 28, 28, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(185, 28, 28, 0.25);
    color: var(--red-glow);
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    color: white;
    background: rgba(185, 28, 28, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(185, 28, 28, 0.2);
}

/* ==================== Responsive ==================== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-container {
        padding: 0 16px;
    }

    .nav-cta {
        padding: 7px 14px;
        font-size: 13px;
        border-radius: 8px;
    }

    .hero {
        padding: 100px 16px 48px;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: -0.5px;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-stat:not(:last-child)::after {
        right: -12px;
    }

    .stat-number {
        font-size: 26px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-main, .btn-ghost {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .section-head h2 {
        font-size: 28px;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .news-tabs {
        gap: 8px;
        padding-bottom: 4px;
    }

    .news-tab {
        padding: 6px 14px;
        font-size: 12px;
        border-radius: 20px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .news-tab i {
        font-size: 10px;
    }

    .news-item {
        flex-wrap: wrap;
        gap: 10px;
        padding: 14px 16px;
    }

    .news-meta {
        width: 100%;
        gap: 12px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .sitemap-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .header {
        padding: 12px 0;
    }

    .logo {
        gap: 8px;
        font-size: 17px;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 15px;
        border-radius: 8px;
    }

    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 90px 16px 36px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-desc {
        font-size: 14px;
    }

    .sitemap-games-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sitemap-links-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
