/* ================================
   IMAN GAME - Complete Stylesheet
   پشتیبانی: 320px تا 4K (3840px)
   ================================ */

/* ---- CSS Variables ---- */
:root {
    --bg-primary: #0a0a1a;
    --bg-secondary: #111128;
    --bg-card: #1a1a3e;
    --bg-card-hover: #222255;
    --text-primary: #ffffff;
    --text-secondary: #95a5a6;
    --text-muted: #7f8c8d;
    --green: #2ecc71;
    --green-dark: #27ae60;
    --green-glow: rgba(46, 204, 113, 0.3);
    --purple: #9b59b6;
    --purple-dark: #8e44ad;
    --purple-glow: rgba(155, 89, 182, 0.3);
    --pink: #e84393;
    --pink-dark: #d63384;
    --pink-glow: rgba(232, 67, 147, 0.3);
    --gold: #f1c40f;
    --gold-dark: #d4ac0d;
    --gold-glow: rgba(241, 196, 15, 0.3);
    --red: #e74c3c;
    --orange: #e67e22;
    --border-color: rgba(255, 255, 255, 0.08);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-family: 'Vazirmatn', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: clamp(14px, 1vw, 16px);
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    direction: rtl;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

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

ul {
    list-style: none;
}

/* ---- Container ---- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn:active {
    transform: translateY(0);
}

.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); box-shadow: 0 6px 20px var(--green-glow); }

.btn-purple { background: var(--purple); color: #fff; }
.btn-purple:hover { background: var(--purple-dark); box-shadow: 0 6px 20px var(--purple-glow); }

.btn-pink { background: var(--pink); color: #fff; }
.btn-pink:hover { background: var(--pink-dark); box-shadow: 0 6px 20px var(--pink-glow); }

.btn-gold { background: var(--gold); color: #000; }
.btn-gold:hover { background: var(--gold-dark); box-shadow: 0 6px 20px var(--gold-glow); }

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--green);
    color: var(--green);
}

.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 14px 32px; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* ================================
   NAVBAR
   ================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 26, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

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

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--green), #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active { color: var(--green); }

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
}

.nav-btn { padding: 8px 24px; }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ================================
   HERO SECTION (Interactive Planet)
   ================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #0a0a2e 0%, #050510 50%, #000000 100%);
}

#planet-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: auto;
    cursor: grab;
}

#planet-container:active { cursor: grabbing; }

.hero-watermark {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.12);
    font-weight: 700;
    letter-spacing: 2px;
    z-index: 1;
}

/* ================================
   SECTIONS - General
   ================================ */
.section {
    padding: clamp(50px, 8vw, 80px) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: clamp(0.85rem, 1.5vw, 1rem);
}

/* ================================
   POPULAR GAMES CAROUSEL
   ================================ */
.popular-games { background: var(--bg-secondary); }

.games-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.games-carousel {
    display: flex;
    gap: clamp(16px, 2vw, 24px);
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.games-carousel::-webkit-scrollbar { display: none; }

.game-card {
    min-width: clamp(200px, 22vw, 280px);
    max-width: clamp(200px, 22vw, 280px);
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    flex-shrink: 0;
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: var(--green);
    box-shadow: 0 12px 40px rgba(46, 204, 113, 0.15);
}

.game-card-img {
    position: relative;
    height: clamp(220px, 25vw, 300px);
    overflow: hidden;
}

.game-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

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

.game-title {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    font-weight: 700;
    margin-bottom: 8px;
}

.game-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.game-rating i { font-size: 0.8rem; }

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--green);
    border-color: var(--green);
}

.carousel-btn-right { right: 10px; }
.carousel-btn-left { left: 10px; }

/* ================================
   FEATURES
   ================================ */
.features { background: var(--bg-primary); }

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

.feature-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: clamp(24px, 3vw, 36px) clamp(20px, 2.5vw, 28px);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.feature-purple { border-top: 3px solid var(--purple); }
.feature-purple:hover { border-color: var(--purple); box-shadow: 0 12px 40px var(--purple-glow); }

.feature-pink { border-top: 3px solid var(--pink); }
.feature-pink:hover { border-color: var(--pink); box-shadow: 0 12px 40px var(--pink-glow); }

.feature-green { border-top: 3px solid var(--green); }
.feature-green:hover { border-color: var(--green); box-shadow: 0 12px 40px var(--green-glow); }

.feature-icon {
    width: clamp(56px, 6vw, 70px);
    height: clamp(56px, 6vw, 70px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: clamp(1.4rem, 2vw, 1.8rem);
}

.feature-purple .feature-icon { background: rgba(155, 89, 182, 0.15); color: var(--purple); }
.feature-pink .feature-icon { background: rgba(232, 67, 147, 0.15); color: var(--pink); }
.feature-green .feature-icon { background: rgba(46, 204, 113, 0.15); color: var(--green); }

.feature-title {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-desc {
    color: var(--text-secondary);
    font-size: clamp(0.8rem, 1.3vw, 0.9rem);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ================================
   NEWS SECTION
   ================================ */
.news-section { background: var(--bg-secondary); }

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: clamp(16px, 2vw, 24px);
}

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

.news-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow);
}

.news-card-img {
    position: relative;
    height: clamp(150px, 18vw, 200px);
    overflow: hidden;
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.news-card-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-title {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.6;
}

.news-desc {
    color: var(--text-secondary);
    font-size: clamp(0.78rem, 1.2vw, 0.85rem);
    line-height: 1.8;
    margin-bottom: 16px;
    flex: 1;
}

/* ================================
   ABOUT US
   ================================ */
.about-us { background: var(--bg-primary); }

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(30px, 5vw, 60px);
    align-items: center;
}

.about-text .section-title {
    text-align: right;
    margin-bottom: 24px;
}

.about-desc {
    color: var(--text-secondary);
    font-size: clamp(0.85rem, 1.3vw, 0.95rem);
    line-height: 2;
    margin-bottom: 16px;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-img-wrapper {
    width: clamp(200px, 22vw, 280px);
    height: clamp(200px, 22vw, 280px);
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--purple);
    box-shadow: 0 0 40px var(--purple-glow);
    transition: var(--transition);
}

.about-img-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 0 60px var(--purple-glow);
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================================
   COMMUNITY
   ================================ */
.community { background: var(--bg-secondary); }

.community-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2vw, 24px);
}

.stat-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: clamp(20px, 3vw, 32px) clamp(14px, 2vw, 20px);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.stat-icon {
    width: clamp(48px, 5vw, 60px);
    height: clamp(48px, 5vw, 60px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
}

.stat-purple { background: rgba(155, 89, 182, 0.15); color: var(--purple); }
.stat-green { background: rgba(46, 204, 113, 0.15); color: var(--green); }
.stat-red { background: rgba(231, 76, 60, 0.15); color: var(--red); }
.stat-orange { background: rgba(230, 126, 34, 0.15); color: var(--orange); }

.stat-number {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 900;
    margin-bottom: 6px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: clamp(0.78rem, 1.2vw, 0.9rem);
}

/* ================================
   CONTACT
   ================================ */
.contact { background: var(--bg-primary); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: clamp(30px, 4vw, 50px);
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: clamp(0.85rem, 1.3vw, 1rem);
    color: var(--text-secondary);
}

.contact-item i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.1);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px var(--green-glow);
}

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

/* ================================
   FOOTER
   ================================ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
}

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

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

.footer-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    object-fit: cover;
}

.footer-logo-text {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--green);
}

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

.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
    transform: translateY(-3px);
}

/* ================================
   SCROLL TO TOP
   ================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 20px var(--green-glow);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
}

/* ================================
   GAME / NEWS PAGE STYLES
   ================================ */
.game-page,
.news-page {
    background: var(--bg-primary);
    min-height: 50vh;
}

.game-page-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: rgba(10, 10, 26, 0.95);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.game-page-title {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 700;
}

.game-page-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.news-page-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px;
}

.game-placeholder,
.news-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    color: var(--text-muted);
    font-size: 1.2rem;
    gap: 16px;
}

.game-placeholder i,
.news-placeholder i {
    font-size: 4rem;
    color: var(--green);
    opacity: 0.3;
}

/* ================================
   ANIMATIONS
   ================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   RESPONSIVE - MOBILE (<= 768px)
   ================================ */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 4px;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links.active { display: flex; }

    .nav-link {
        padding: 12px 16px;
        width: 100%;
        text-align: center;
    }

    .nav-btn { display: none; }
    .mobile-menu-btn { display: block; }

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

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-text .section-title { text-align: center; }
    .about-image { order: -1; }

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

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

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

/* ================================
   RESPONSIVE - VERY SMALL (<= 380px)
   ================================ */
@media (max-width: 380px) {
    .container { padding: 0 12px; }

    .navbar-inner { height: 60px; }

    .logo-text { font-size: 1rem; }

    .logo-img { width: 32px; height: 32px; }

    .nav-links { top: 60px; }

    .hero-content { padding: 100px 12px 60px; }

    .btn { padding: 8px 16px; font-size: 0.85rem; }
    .btn-lg { padding: 12px 24px; font-size: 0.95rem; }
    .btn-sm { padding: 6px 14px; font-size: 0.8rem; }

    .game-card { min-width: 180px; max-width: 180px; }
    .game-card-img { height: 200px; }
    .game-card-info { padding: 12px; }

    .stat-card { padding: 16px 10px; }
    .stat-number { font-size: 1.2rem; }
    .stat-label { font-size: 0.7rem; }

    .news-card-img { height: 130px; }
    .news-card-info { padding: 14px; }

    .section { padding: 40px 0; }

    .footer { padding: 20px 0; }
    .social-link { width: 34px; height: 34px; font-size: 0.85rem; }

    .carousel-btn { width: 36px; height: 36px; font-size: 0.85rem; }

    .game-page-header { padding: 12px 16px; }
}

/* ================================
   RESPONSIVE - 4K (>= 2560px)
   ================================ */
@media (min-width: 2560px) {
    html { font-size: 20px; }

    .container { max-width: 1800px; }

    .navbar-inner { height: 90px; }
    .logo-img { width: 56px; height: 56px; }
    .logo-text { font-size: 1.8rem; }
    .nav-link { padding: 12px 24px; font-size: 1.15rem; }
    .nav-btn { padding: 12px 32px; font-size: 1.1rem; }

    .hero-content { max-width: 1100px; padding: 160px 40px 100px; }
    .hero-title { font-size: 4rem; }
    .hero-subtitle { font-size: 1.5rem; }

    .game-card { min-width: 360px; max-width: 360px; }
    .game-card-img { height: 400px; }

    .feature-card { padding: 50px 40px; }
    .feature-icon { width: 96px; height: 96px; font-size: 2.4rem; }

    .news-card-img { height: 280px; }

    .about-img-wrapper { width: 380px; height: 380px; }

    .stat-icon { width: 80px; height: 80px; font-size: 2rem; }
    .stat-number { font-size: 2.8rem; }

    .contact-item i { width: 64px; height: 64px; font-size: 1.5rem; }

    .footer-logo-img { width: 48px; height: 48px; }
    .footer-logo-text { font-size: 1.5rem; }
    .social-link { width: 52px; height: 52px; font-size: 1.3rem; }

    .carousel-btn { width: 60px; height: 60px; font-size: 1.4rem; }

    .scroll-top { width: 60px; height: 60px; font-size: 1.4rem; bottom: 40px; left: 40px; }

    .game-page-container,
    .news-page-container { max-width: 1800px; }
}

/* ---- Selection Color ---- */
::selection {
    background: var(--green);
    color: #fff;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--bg-card); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--green); }
