/*
Theme Name: VNFootball
Theme URI: https://vnfootball.net
Author: VNFootball Team
Description: Theme tin tức bóng đá Việt Nam - VNFOOTBALL.NET - Dark theme với thiết kế hiện đại
Version: 2.2
Text Domain: vnfootball
*/

:root {
    --bg-dark: #0d1117;
    --bg-card: #161b22;
    --bg-hover: #21262d;
    --accent: #00d4aa;
    --accent-dark: #00a88a;
    --accent-blue: #58a6ff;
    --accent-purple: #a371f7;
    --accent-orange: #f0883e;
    --red: #f85149;
    --gold: #f0c14b;
    --text: #f0f6fc;
    --text-secondary: #8b949e;
    --border: #30363d;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }

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

/* ========== HEADER ========== */
.header {
    background: var(--bg-card);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.header-top {
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
    padding: 8px 0;
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--bg-dark);
}

.header-top-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.header-main { padding: 15px 0; }

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.logo-icon svg {
    width: 28px;
    height: 28px;
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 0.5px;
}

.logo-text span { color: var(--accent); }

/* Navigation */
.nav ul {
    list-style: none;
    display: flex;
    gap: 2px;
    margin: 0;
    padding: 0;
}

.nav li a {
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 6px;
    color: var(--text-secondary);
    display: block;
    white-space: nowrap;
}

.nav li a:hover,
.nav li.current-menu-item a,
.nav li.current-cat a {
    color: var(--accent);
    background: rgba(0, 212, 170, 0.1);
}

/* Header Buttons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-login {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-login:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-register {
    background: var(--accent);
    color: var(--bg-dark);
}

.btn-register:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: var(--bg-hover);
    border: 1px solid var(--border);
    color: var(--text);
    width: 44px;
    height: 44px;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
}

/* Keyboard Shortcut Hints */
.shortcut-hint {
    font-size: 10px;
    padding: 2px 6px;
    background: var(--bg-hover);
    border-radius: 4px;
    margin-left: 6px;
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

/* ========== BANNER AD ========== */
.banner-ad {
    background: var(--bg-card);
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}

.banner-ad-inner {
    background: transparent;
    border-radius: 12px;
    display: block;
    position: relative;
    overflow: hidden;
}

.banner-ad-inner .ad-link {
    display: block;
    width: 100%;
}

.banner-ad-inner .ad-link img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.banner-ad-inner .ad-link:hover img {
    transform: scale(1.01);
    box-shadow: 0 8px 30px rgba(0, 212, 170, 0.15);
}

.banner-ad-text {
    display: none;
}

/* ========== HERO SECTION ========== */
.hero { padding: 30px 0; }

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.hero-main {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 420px;
    display: block;
}

.hero-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-main-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,17,23,0.98) 0%, rgba(13,17,23,0.4) 50%, transparent 100%);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-badge {
    display: inline-flex;
    background: var(--accent);
    color: var(--bg-dark);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--text);
}

.hero-meta {
    display: flex;
    gap: 20px;
    color: var(--text-secondary);
    font-size: 13px;
}

.hero-side {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-side-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: calc((420px - 15px) / 2);
    display: block;
}

.hero-side-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-side-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,17,23,0.95) 0%, transparent 70%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-side-item:nth-child(1) .hero-badge { background: var(--accent-blue); }
.hero-side-item:nth-child(2) .hero-badge { background: var(--accent-orange); }

.hero-side-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text);
}

.hero-side-item:hover .hero-side-title { color: var(--accent); }

/* ========== SECTION HEADER ========== */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title::before {
    content: '';
    width: 4px;
    height: 26px;
    background: var(--accent);
    border-radius: 2px;
}

.section-title.blue::before { background: var(--accent-blue); }
.section-title.purple::before { background: var(--accent-purple); }
.section-title.orange::before { background: var(--accent-orange); }

/* ========== CATEGORY NAV ========== */
.category-section {
    padding: 25px 0;
    border-bottom: 1px solid var(--border);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.category-item {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.category-item:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    background: rgba(0, 212, 170, 0.08);
}

.category-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.category-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

.category-item:hover .category-name { color: var(--text); }

/* ========== MAIN SECTION ========== */
.main-section { padding: 40px 0; }

/* News Grid 4 Columns */
.news-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.news-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.news-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.news-card a { display: block; }

.news-thumb {
    height: 150px;
    overflow: hidden;
    position: relative;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-thumb img { transform: scale(1.08); }

.news-cat {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent);
    color: var(--bg-dark);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.news-body { padding: 15px; }

.news-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--text);
    height: 42px;
}

.news-card:hover .news-title { color: var(--accent); }

.news-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 11px;
}

/* News List Grid */
.news-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.news-list-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.news-list-item:hover {
    border-color: var(--accent-blue);
    background: var(--bg-hover);
}

.news-list-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: var(--accent-blue);
    width: 28px;
    flex-shrink: 0;
    text-align: center;
}

.news-list-thumb {
    width: 90px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.news-list-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 6px;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-list-item:hover .news-list-title { color: var(--accent-blue); }

.news-list-meta {
    font-size: 11px;
    color: var(--text-secondary);
}

/* Category Sections */
.category-sections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.category-block {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border);
}

.category-block:nth-child(1) { border-top: 3px solid var(--accent); }
.category-block:nth-child(2) { border-top: 3px solid var(--accent-blue); }
.category-block:nth-child(3) { border-top: 3px solid var(--accent-orange); }

.category-block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.category-block-header h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-block-header a {
    font-size: 12px;
    color: var(--text-secondary);
}

.category-block:nth-child(1) .category-block-header a:hover { color: var(--accent); }
.category-block:nth-child(2) .category-block-header a:hover { color: var(--accent-blue); }
.category-block:nth-child(3) .category-block-header a:hover { color: var(--accent-orange); }

.category-block-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.small-card a {
    display: flex;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.small-card a:hover {
    background: var(--bg-hover);
}

.small-card-thumb {
    width: 75px;
    height: 55px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.small-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.small-card-body h4 {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 4px;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-block:nth-child(1) .small-card:hover h4 { color: var(--accent); }
.category-block:nth-child(2) .small-card:hover h4 { color: var(--accent-blue); }
.category-block:nth-child(3) .small-card:hover h4 { color: var(--accent-orange); }

.small-card-body span {
    font-size: 11px;
    color: var(--text-secondary);
}

/* ========== PAGE HEADER ========== */
.page-header {
    background: var(--bg-card);
    padding: 50px 0;
    border-bottom: 1px solid var(--border);
}

.page-header-content { text-align: center; }

.breadcrumb {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.breadcrumb a:hover { color: var(--accent); }

.page-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.page-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.page-desc {
    color: var(--text-secondary);
    font-size: 15px;
}

/* ========== POSTS GRID ========== */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.post-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.post-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.post-card a { display: block; }

.post-thumb {
    height: 170px;
    overflow: hidden;
    position: relative;
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-thumb img { transform: scale(1.08); }

.post-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: var(--bg-dark);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.post-body { padding: 18px; }

.post-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--text);
}

.post-card:hover .post-title { color: var(--accent); }

.post-excerpt {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 11px;
}

/* ========== PAGINATION ========== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 40px;
}

.pagination a,
.pagination span,
.page-numbers {
    padding: 10px 15px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    color: var(--text);
}

.pagination a:hover,
.pagination .current,
.page-numbers.current,
.page-numbers:hover {
    background: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
}

/* ========== ARTICLE ========== */
.article-header {
    background: var(--bg-card);
    padding: 30px 0 40px;
    border-bottom: 1px solid var(--border);
}

.article-cat {
    display: inline-block;
    background: var(--accent);
    color: var(--bg-dark);
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.article-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--text-secondary);
    font-size: 14px;
}

.article-body {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 35px;
    border: 1px solid var(--border);
    max-width: 860px;
    margin: 0 auto;
}

.article-thumbnail {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
}

.article-thumbnail img {
    width: 100%;
    height: auto;
}

.article-content {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-secondary);
}

.article-content p { margin-bottom: 18px; }

.article-content h2 {
    color: var(--text);
    font-size: 22px;
    margin: 30px 0 15px;
}

.article-content h3 {
    color: var(--text);
    font-size: 18px;
    margin: 25px 0 12px;
}

.article-content img {
    border-radius: 10px;
    margin: 20px 0;
}

.article-content a { color: var(--accent); }

.article-content blockquote {
    background: var(--bg-hover);
    border-left: 4px solid var(--accent);
    padding: 18px 22px;
    margin: 22px 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
}

.article-content ul,
.article-content ol {
    margin: 18px 0;
    padding-left: 22px;
}

.article-content li { margin-bottom: 8px; }

/* Article Ad */
.article-ad {
    margin: 35px 0;
    padding: 25px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.article-ad-inner {
    display: block;
}

.article-ad-inner .ad-link {
    display: block;
    width: 100%;
}

.article-ad-inner .ad-link img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.article-ad-inner .ad-link:hover img {
    transform: scale(1.01);
    box-shadow: 0 8px 30px rgba(0, 212, 170, 0.15);
}

.article-ad-text {
    display: none;
}

/* Related Posts */
.related-section {
    margin-top: 40px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.related-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.related-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--accent-purple);
    border-radius: 2px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.related-card {
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.related-card:hover {
    border-color: var(--accent-purple);
    transform: translateY(-3px);
}

.related-card a { display: block; }

.related-thumb {
    height: 90px;
    overflow: hidden;
}

.related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-body { padding: 12px; }

.related-card-title {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-card:hover .related-card-title { color: var(--accent-purple); }

/* ========== MORE FROM CATEGORY ========== */
.more-section {
    margin-top: 40px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.more-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    color: var(--accent);
}

.more-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.more-card {
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.more-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.more-card a { display: block; }

.more-thumb {
    height: 85px;
    overflow: hidden;
}

.more-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.more-body { padding: 12px; }

.more-card-title {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 6px;
}

.more-card:hover .more-card-title { color: var(--accent); }

.more-date {
    font-size: 10px;
    color: var(--text-secondary);
}

/* ========== HOT NEWS SECTION ========== */
.hot-section {
    margin-top: 40px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    background: var(--bg-card);
    border-radius: 14px;
    padding: 25px;
    border: 1px solid var(--border);
}

.hot-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    color: var(--accent-orange);
}

.hot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.hot-card {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: var(--bg-hover);
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.hot-card:hover {
    border-color: var(--accent-orange);
    background: var(--bg-dark);
}

.hot-rank {
    width: 26px;
    height: 26px;
    background: var(--accent-orange);
    color: var(--bg-dark);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}

.hot-card:nth-child(1) .hot-rank { background: var(--accent); }
.hot-card:nth-child(2) .hot-rank { background: #94a3b8; }
.hot-card:nth-child(3) .hot-rank { background: var(--gold); }

.hot-thumb {
    width: 70px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.hot-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hot-info {
    flex: 1;
    min-width: 0;
}

.hot-info h4 {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 4px;
}

.hot-card:hover .hot-info h4 { color: var(--accent-orange); }

.hot-info span {
    font-size: 11px;
    color: var(--text-secondary);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    margin-top: 60px;
}

.footer-main {
    padding: 50px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-brand .logo { margin-bottom: 18px; }

.footer-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-stats {
    display: flex;
    gap: 25px;
}

.footer-stat {
    text-align: center;
}

.footer-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--accent);
}

.footer-stat-label {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.footer-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text);
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-col:nth-child(2) .footer-title::after { background: var(--accent); }
.footer-col:nth-child(3) .footer-title::after { background: var(--accent-blue); }
.footer-col:nth-child(4) .footer-title::after { background: var(--accent-orange); }

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
    color: var(--text-secondary);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '→';
    color: var(--accent);
    font-size: 12px;
}

.footer-col:nth-child(3) .footer-links a::before { color: var(--accent-blue); }
.footer-col:nth-child(4) .footer-links a::before { color: var(--accent-orange); }

.footer-links a:hover { color: var(--text); }

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid var(--border);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--text-secondary);
}

.footer-bottom-links a:hover { color: var(--accent); }

/* ========== AD BLOCKS ========== */
.ad-block {
    margin: 30px 0;
}

.ad-link {
    display: block;
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.ad-link img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.ad-link:hover img {
    transform: scale(1.01);
    box-shadow: 0 8px 30px rgba(0, 212, 170, 0.15);
}

.ad-homepage_top,
.ad-homepage_middle,
.ad-category_top {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.ad-homepage_top .ad-link,
.ad-homepage_middle .ad-link,
.ad-category_top .ad-link {
    display: block;
}

.ad-sticky_footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    padding: 10px;
    border-top: 1px solid var(--border);
    z-index: 999;
}

/* Sticky Footer Ad */
.sticky-footer-ad {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(13, 17, 23, 0.98);
    border-top: 2px solid var(--accent);
    z-index: 99999;
    padding: 12px 15px;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.sticky-footer-ad-inner {
    width: 100%;
    max-width: 728px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticky-footer-ad .ad-link {
    display: block;
    width: 100%;
    max-width: 728px;
}

.sticky-footer-ad .ad-link img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.sticky-ad-close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 28px;
    height: 28px;
    background: var(--bg-dark);
    border: 2px solid var(--accent);
    border-radius: 50%;
    color: var(--accent);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.sticky-ad-close:hover {
    background: var(--accent);
    color: var(--bg-dark);
    transform: scale(1.1);
}

/* ========== SCROLL TOP ========== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--accent);
    border: none;
    border-radius: 10px;
    color: var(--bg-dark);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 212, 170, 0.4);
}

/* ========== 404 PAGE ========== */
.error-page {
    text-align: center;
    padding: 100px 20px;
}

.error-code {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 140px;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 20px;
}

.error-title {
    font-size: 28px;
    margin-bottom: 15px;
}

.error-desc {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.error-btn {
    display: inline-block;
    background: var(--accent);
    color: var(--bg-dark);
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 700;
}

/* ========== SEARCH PAGE ========== */
.search-form-large {
    max-width: 550px;
    margin: 0 auto 40px;
}

.search-form-large form {
    display: flex;
    gap: 10px;
}

.search-form-large input {
    flex: 1;
    padding: 14px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 15px;
    outline: none;
}

.search-form-large input:focus { border-color: var(--accent); }

.search-form-large button {
    padding: 14px 28px;
    background: var(--accent);
    border: none;
    border-radius: 8px;
    color: var(--bg-dark);
    font-weight: 700;
    cursor: pointer;
}

/* ========== KEYBOARD SHORTCUTS MODAL ========== */
.shortcuts-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.shortcuts-modal.active { display: flex; }

.shortcuts-content {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 30px;
    max-width: 450px;
    width: 90%;
    border: 1px solid var(--border);
}

.shortcuts-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.shortcut-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.shortcut-row:last-child { border-bottom: none; }

.shortcut-key {
    background: var(--bg-hover);
    padding: 6px 12px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 13px;
    border: 1px solid var(--border);
}

.shortcut-desc {
    color: var(--text-secondary);
    font-size: 14px;
}

.shortcuts-close {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background: var(--accent);
    color: var(--bg-dark);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .news-grid-4 { grid-template-columns: repeat(3, 1fr); }
    .category-sections { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
    .footer-grid .footer-col:nth-child(4) { display: none; }
}

@media (max-width: 1024px) {
    .news-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .news-list-grid { grid-template-columns: 1fr; }
    .category-sections { grid-template-columns: 1fr; }
    .posts-grid { grid-template-columns: repeat(2, 1fr); }
    .category-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav ul { display: none; }
    .mobile-menu-btn { display: flex; align-items: center; justify-content: center; }
    .btn .shortcut-hint { display: none; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-main { height: 280px; }
    .hero-side { flex-direction: row; }
    .hero-side-item { height: 140px; }
    .hero-title { font-size: 22px; }
    .category-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .category-item { padding: 15px 10px; }
    .category-icon { font-size: 26px; }
    .category-name { font-size: 11px; }
    .news-grid-4 { grid-template-columns: 1fr; }
    .posts-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-grid .footer-col:nth-child(4) { display: block; }
    .footer-bottom-inner { flex-direction: column; gap: 15px; text-align: center; }
    .banner-ad-inner { min-height: 70px; }
    .article-title { font-size: 24px; }
    .article-body { padding: 20px; }
    .related-grid { grid-template-columns: 1fr; }
    .more-grid { grid-template-columns: repeat(2, 1fr); }
    .hot-grid { grid-template-columns: 1fr; }
    .page-title { font-size: 32px; }
}

@media (max-width: 480px) {
    .header-top { display: none; }
    .hero-side { flex-direction: column; }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-stats { justify-content: center; }
}

/* ========== CONTACT FORM ========== */
.contact-box {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 30px;
    margin-top: 40px;
    border: 1px solid var(--border);
}

.contact-box h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: linear-gradient(135deg, var(--accent), #00a88a);
    color: var(--bg-dark);
    border: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
}

@media (max-width: 768px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    .contact-box {
        padding: 20px;
    }
}

/* ========== PAGE TEMPLATE ========== */
.page-body {
    max-width: 860px;
    margin: 0 auto;
}

.page-content {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 40px;
    line-height: 1.9;
}

.page-content h2 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--text-primary);
}

.page-content h3 {
    font-size: 20px;
    margin: 25px 0 12px;
    color: var(--text-primary);
}

.page-content p {
    margin-bottom: 18px;
    color: var(--text-secondary);
}

.page-content ul,
.page-content ol {
    margin: 15px 0 20px 25px;
    color: var(--text-secondary);
}

.page-content li {
    margin-bottom: 8px;
}

.page-content a {
    color: var(--accent);
}

.page-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .page-content {
        padding: 25px 20px;
    }
}

/* ========== AUTH PAGES ========== */
.page-header-compact {
    padding: 20px 0;
}

.page-header-compact .page-title {
    font-size: 28px;
    margin-bottom: 0;
}

.auth-wrapper {
    display: flex;
    justify-content: center;
    padding: 20px 0 60px;
}

.auth-box {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    border: 1px solid var(--border);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.auth-logo .logo-icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-logo .logo-icon svg {
    width: 28px;
    height: 28px;
}

.auth-logo .logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--text-primary);
}

.auth-logo .logo-text span {
    color: var(--accent);
}

.auth-subtitle {
    color: var(--text-secondary);
    font-size: 14px;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.auth-form label .required {
    color: #f85149;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="tel"],
.auth-form select {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 15px;
    transition: all 0.3s ease;
}

.auth-form input:focus,
.auth-form select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.auth-form input::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.form-row-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--accent);
}

.checkbox-label a {
    color: var(--accent);
}

.forgot-link {
    font-size: 14px;
    color: var(--accent);
}

.btn-auth {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--accent), #00a88a);
    border: none;
    border-radius: 12px;
    color: var(--bg-dark);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
}

.btn-register {
    background: linear-gradient(135deg, #58a6ff, #388bfd);
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 14px;
}

.auth-footer a {
    color: var(--accent);
    font-weight: 600;
}

.auth-divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: var(--border);
}

.auth-divider span {
    background: var(--bg-card);
    padding: 0 15px;
    color: var(--text-secondary);
    font-size: 13px;
    position: relative;
}

.auth-social {
    display: flex;
    gap: 15px;
}

.social-btn {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-google {
    background: #fff;
    color: #333;
}

.social-facebook {
    background: #1877f2;
    color: #fff;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.auth-benefits {
    margin-top: 25px;
    padding: 20px;
    background: rgba(0, 212, 170, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 170, 0.2);
}

.auth-benefits h4 {
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--accent);
}

.auth-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.auth-benefits li {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.auth-back {
    text-align: center;
    margin-top: 25px;
}

.auth-back a {
    color: var(--text-secondary);
    font-size: 14px;
}

.auth-back a:hover {
    color: var(--accent);
}

/* ========== ABOUT PAGE ========== */
.about-hero {
    text-align: center;
    padding: 30px 0 40px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.logo-icon-large {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.logo-icon-large svg {
    width: 50px;
    height: 50px;
}

.logo-text-large {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: var(--text-primary);
}

.logo-text-large span {
    color: var(--accent);
}

.about-tagline {
    color: var(--text-secondary);
    font-size: 16px;
    margin-top: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    background: var(--bg-dark);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-item p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.stat-box {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(0, 212, 170, 0.05));
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(0, 212, 170, 0.2);
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 5px;
}

.cta-box {
    background: var(--bg-dark);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin-top: 30px;
    border: 1px solid var(--border);
}

.cta-box p {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 30px;
    background: var(--accent);
    color: var(--bg-dark);
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
}

/* ========== CONTACT PAGE ========== */
.contact-intro {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 20px;
    margin-bottom: 20px;
}

.contact-cards {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: var(--bg-dark);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--accent);
}

.contact-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-detail h4 {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 4px;
    font-weight: 500;
}

.contact-detail a {
    color: var(--accent);
    font-size: 15px;
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 768px) {
    /* Sticky Ad Mobile */
    .sticky-footer-ad {
        padding: 8px 10px;
    }
    
    .sticky-footer-ad-inner {
        max-width: 100%;
    }
    
    .sticky-ad-close {
        top: -10px;
        right: 5px;
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
    
    /* Banner Ad Mobile */
    .banner-ad {
        padding: 10px 0;
    }
    
    .banner-ad-inner {
        border-radius: 8px;
    }
    
    /* Auth Pages */
    .auth-box {
        padding: 25px 20px;
        border-radius: 16px;
    }
    
    .auth-logo .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .auth-logo .logo-text {
        font-size: 24px;
    }
    
    .auth-social {
        flex-direction: column;
    }
    
    /* About Page */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .logo-icon-large {
        width: 60px;
        height: 60px;
    }
    
    .logo-text-large {
        font-size: 32px;
    }
    
    /* Contact Page */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .stat-box {
        padding: 15px;
    }
    
    .stat-num {
        font-size: 28px;
    }
}
