/*
Theme Name: INDBET Theme
Theme URI: https://indbet.com
Author: INDBET
Author URI: https://indbet.com
Description: A premium dark-themed WordPress theme for Indian betting and gaming sites. Features gold accents, mobile-first responsive design, and casino/betting aesthetic.
Version: 1.0.0
Requires at least: 5.9
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: indbet
Tags: dark, gaming, betting, casino, responsive, mobile-first
*/

/* ===== CSS RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-primary: #0f0f23;
    --bg-secondary: #1a1a2e;
    --bg-card: #16213e;
    --bg-card-hover: #1f3460;
    --gold: #ffd700;
    --gold-dark: #b8960f;
    --gold-light: #ffe44d;
    --white: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: #b0b0c0;
    --text-muted: #7a7a8a;
    --accent-green: #00c853;
    --accent-red: #ff1744;
    --border-color: #2a2a4a;
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --header-height: 70px;
    --container-width: 1200px;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 4px 20px rgba(255, 215, 0, 0.2);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: var(--header-height);
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--gold-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 700;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, #0a0a1a 0%, #0f0f23 100%);
    border-bottom: 1px solid var(--border-color);
    height: var(--header-height);
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-brand img {
    height: 40px;
    width: auto;
}

.site-brand .site-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.site-brand .site-title a {
    color: var(--gold);
}

/* Navigation */
.main-navigation ul {
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-navigation ul li a {
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
}

.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item a {
    color: var(--gold);
    background: rgba(255, 215, 0, 0.1);
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    gap: 8px;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #000;
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
    color: #000;
}

.btn-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
}

.btn-outline:hover {
    background: var(--gold);
    color: #000;
}

.btn-sm {
    padding: 6px 16px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 14px 36px;
    font-size: 1rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 5px 0;
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO BANNER ===== */
.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    margin-bottom: 10px;
}

/* ===== SECTIONS ===== */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--white);
}

.section-title span {
    color: var(--gold);
}

/* Game Categories */
.game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.game-category-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.game-category-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    background: var(--bg-card-hover);
}

.game-category-card .icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.game-category-card .title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

/* Featured Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.game-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: block;
    text-decoration: none;
}

.game-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.game-card .game-thumb {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-card-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.game-card .game-info {
    padding: 15px;
}

.game-card .game-info h3 {
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 5px;
}

.game-card .game-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Trust Section */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.trust-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
}

.trust-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.trust-card h3 {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.trust-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Latest News */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.news-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

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

.news-card .news-thumb {
    width: 100%;
    height: 180px;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    overflow: hidden;
}

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

.news-card .news-body {
    padding: 20px;
}

.news-card .news-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.news-card .news-title {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-card .news-title a {
    color: var(--white);
}

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

.news-card .news-excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.news-card .read-more {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 50px 30px;
    text-align: center;
    margin: 40px 0;
}

.cta-banner h2 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.cta-banner p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* ===== ARCHIVE / BLOG ===== */
.page-header {
    background: var(--bg-secondary);
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 2rem;
    color: var(--white);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

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

.breadcrumb .separator {
    color: var(--text-muted);
}

.content-area {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    padding: 40px 0;
}

.content-area.full-width {
    grid-template-columns: 1fr;
}

/* Post Cards in Archive */
.post-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 25px;
    transition: var(--transition);
    display: grid;
    grid-template-columns: 250px 1fr;
}

.post-card:hover {
    border-color: var(--gold);
}

.post-card .post-thumb {
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    min-height: 180px;
}

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

.post-card .post-body {
    padding: 25px;
}

.post-card .post-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.post-card .post-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.post-card .post-title a {
    color: var(--white);
}

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

.post-card .post-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.post-card .read-more-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== SINGLE POST ===== */
.single-article {
    max-width: 800px;
}

.single-article .entry-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.single-article .entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.single-article .entry-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.single-article .entry-content h2,
.single-article .entry-content h3,
.single-article .entry-content h4 {
    color: var(--white);
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.single-article .entry-content a {
    color: var(--gold);
    text-decoration: underline;
}

.single-article .entry-content ul,
.single-article .entry-content ol {
    padding-left: 25px;
    margin-bottom: 18px;
}

.single-article .entry-content ul li,
.single-article .entry-content ol li {
    margin-bottom: 8px;
    list-style: disc;
    color: var(--text-secondary);
}

.single-article .entry-content ol li {
    list-style: decimal;
}

.single-article .entry-content blockquote {
    border-left: 4px solid var(--gold);
    padding: 15px 20px;
    background: var(--bg-card);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 20px 0;
    font-style: italic;
    color: var(--text-secondary);
}

.single-article .entry-content img {
    border-radius: var(--radius);
    margin: 20px 0;
}

/* Social Share */
.social-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 25px 0;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.social-share span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.social-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-share a:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

/* In-content CTA */
.content-cta {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-hover) 100%);
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    margin: 30px 0;
}

.content-cta h3 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

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

/* Related Posts */
.related-posts {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.related-posts h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--white);
}

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

.related-post-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 20px;
    transition: var(--transition);
}

.related-post-card:hover {
    border-color: var(--gold);
}

.related-post-card h3 {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.related-post-card h3 a {
    color: var(--white);
}

.related-post-card h3 a:hover {
    color: var(--gold);
}

.related-post-card .meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Post Navigation */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.post-navigation .nav-link {
    background: var(--bg-card);
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.post-navigation .nav-link:hover {
    border-color: var(--gold);
}

.post-navigation .nav-link .label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.post-navigation .nav-link .title {
    color: var(--white);
    font-weight: 600;
}

/* ===== SIDEBAR ===== */
.sidebar {
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.widget {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 25px;
    margin-bottom: 25px;
}

.widget-title {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.widget ul li a:hover {
    color: var(--gold);
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--bg-card) 0%, #1f3460 100%);
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 25px;
    text-align: center;
}

.sidebar-cta h3 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.sidebar-cta p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #0a0a1a;
    border-top: 1px solid var(--border-color);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-col p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.payment-methods span {
    background: var(--bg-card);
    padding: 5px 12px;
    border-radius: var(--radius);
    font-size: 0.75rem;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    text-align: center;
}

.responsible-gambling {
    background: rgba(255, 23, 68, 0.1);
    border: 1px solid rgba(255, 23, 68, 0.3);
    border-radius: var(--radius);
    padding: 15px;
    margin-bottom: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.responsible-gambling strong {
    color: var(--accent-red);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Floating Download Button */
.floating-download {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    animation: bounce 2s ease-in-out infinite;
}

.floating-download a {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #000;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 4px 25px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

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

.error-404-content h1 {
    font-size: 6rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.error-404-content h2 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

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

.search-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.search-form .search-field {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius) 0 0 var(--radius);
    background: var(--bg-card);
    color: var(--white);
    font-size: 1rem;
    outline: none;
}

.search-form .search-field:focus {
    border-color: var(--gold);
}

.search-form .search-submit {
    padding: 12px 24px;
    background: var(--gold);
    color: #000;
    border: none;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
}

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

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .content-area {
        grid-template-columns: 1fr;
    }

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

    .post-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }

    .main-navigation {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-primary);
        padding: 20px;
        z-index: 999;
        overflow-y: auto;
    }

    .main-navigation.active {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 5px;
    }

    .main-navigation ul li a {
        display: block;
        padding: 12px 16px;
        font-size: 1rem;
    }

    .menu-toggle {
        display: block;
    }

    .header-buttons .btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-amount {
        font-size: 2.5rem;
    }

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

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

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

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

    .single-article .entry-title {
        font-size: 1.6rem;
    }

    .post-navigation {
        grid-template-columns: 1fr;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-amount {
        font-size: 2rem;
    }

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

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

    .section-title {
        font-size: 1.5rem;
    }

    .floating-download a {
        padding: 10px 18px;
        font-size: 0.8rem;
    }
}

/* ===== UTILITY ===== */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
