@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-orange: #ff7700;
    --primary-orange-light: #ff9933;
    --primary-orange-dark: #e65500;
    --primary-orange-glow: rgba(255, 119, 0, 0.45);
    --gold: #ffc107;
    
    --bg-body: #0d0e12;
    --bg-darker: #08090b;
    --bg-card: #14171d;
    --bg-card-hover: #1b1f28;
    --bg-navbar: #101217;
    --bg-glass: rgba(20, 23, 29, 0.85);
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-orange: rgba(255, 119, 0, 0.35);
    --border-glow: 0 0 15px rgba(255, 119, 0, 0.25);
    
    --text-main: #ffffff;
    --text-gray: #a2a8b8;
    --text-muted: #656c7d;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(255, 119, 0, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 10% 40%, rgba(255, 85, 0, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 70%, rgba(255, 153, 51, 0.04) 0%, transparent 40%);
    background-attachment: fixed;
}

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

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

/* ========================================================
   1. TOP ORANGE HERO BAR
======================================================== */
.top-hero-banner {
    width: 100%;
    background: linear-gradient(135deg, #ff7700 0%, #ff5500 50%, #e64a00 100%);
    position: relative;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 25px rgba(255, 85, 0, 0.35);
    overflow: hidden;
    z-index: 10;
}

.top-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.6;
    pointer-events: none;
}

.top-hero-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

/* Server IP Box (Left) */
.hero-widget-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.65rem 1.25rem 0.65rem 0.75rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-widget-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
    background: #ffffff;
}

.hero-widget-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff7700, #ff5500);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
    box-shadow: 0 4px 10px rgba(255, 85, 0, 0.3);
    transition: var(--transition);
}

.hero-widget-card:hover .hero-widget-icon {
    transform: scale(1.05);
}

.hero-widget-info {
    display: flex;
    flex-direction: column;
}

.hero-widget-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a1c22;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.hero-widget-sub {
    font-size: 0.82rem;
    font-weight: 600;
    color: #656c7d;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Center Logo */
.hero-center-logo {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-link {
    display: inline-block;
    transition: var(--transition);
}

.logo-link:hover {
    transform: scale(1.03);
}

.brand-3d-text {
    font-size: 2.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    text-shadow: 
        0 2px 0 #c74800,
        0 4px 0 #9e3900,
        0 6px 0 #6e2800,
        0 8px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
}

.brand-3d-text span.gold-part {
    color: #ffdf00;
    text-shadow: 
        0 2px 0 #b38600,
        0 4px 0 #806000,
        0 6px 0 #4d3a00,
        0 8px 15px rgba(0, 0, 0, 0.5);
}

.brand-sub-badge {
    background: rgba(0, 0, 0, 0.35);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: var(--radius-full);
    letter-spacing: 1.5px;
    margin-top: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Discord Community Box (Right) */
.discord-widget-card {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.discord-widget-icon {
    background: linear-gradient(135deg, #5865f2, #4752c4);
    box-shadow: 0 4px 10px rgba(88, 101, 242, 0.3);
}

/* Gear Settings Button (Right Edge) */
.hero-settings-btn {
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-left: 1rem;
}

.hero-settings-btn:hover {
    background: rgba(0, 0, 0, 0.45);
    transform: rotate(45deg);
}

/* ========================================================
   2. SLEEK DARK NAVIGATION BAR
======================================================== */
.main-navbar {
    background-color: var(--bg-navbar);
    border-bottom: 2px solid var(--border-orange);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
}

.navbar-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-menu-links {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    list-style: none;
}

.nav-link-item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0.55rem 0.9rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-gray);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link-item i {
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-link-item:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.nav-link-item.active {
    color: var(--primary-orange-light);
    background: rgba(255, 119, 0, 0.12);
    box-shadow: inset 0 0 0 1px rgba(255, 119, 0, 0.3);
}

.nav-link-item.active i {
    color: var(--primary-orange);
}

/* Nav Actions (Buttons) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-nav-login {
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-color);
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-nav-login:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.btn-nav-register {
    padding: 0.5rem 1.4rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 15px var(--primary-orange-glow);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-nav-register:hover {
    background: linear-gradient(135deg, var(--primary-orange-light), var(--primary-orange));
    box-shadow: 0 6px 20px rgba(255, 119, 0, 0.6);
    transform: translateY(-1px);
}

/* User Pill (When Logged In) */
.user-logged-pill {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    padding: 0.35rem 0.5rem 0.35rem 0.75rem;
    border-radius: var(--radius-full);
}

.user-logged-avatar {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    image-rendering: pixelated;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.user-logged-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
}

.user-logged-coins {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 193, 7, 0.15);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #ffd54f;
    padding: 2px 10px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
}

.user-action-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-gray);
    transition: var(--transition);
}

.user-action-btn:hover {
    color: #ffffff;
    background: var(--primary-orange);
}

.user-action-btn.admin-crown {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

.user-action-btn.admin-crown:hover {
    background: #ffd700;
    color: #000000;
}

/* ========================================================
   3. HERO CAROUSEL / SLIDER
======================================================== */
.hero-slider-section {
    max-width: 1440px;
    margin: 1.5rem auto 0 auto;
    padding: 0 1.5rem;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(13, 14, 18, 0.95) 0%, rgba(13, 14, 18, 0.7) 45%, rgba(13, 14, 18, 0.2) 100%);
}

.carousel-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 0 3.5rem;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.carousel-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px var(--primary-orange-glow);
}

.carousel-title {
    font-size: 2.75rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.carousel-desc {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.carousel-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-md);
    box-shadow: 0 6px 20px var(--primary-orange-glow);
    transition: var(--transition);
}

.carousel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 119, 0, 0.6);
    background: linear-gradient(135deg, var(--primary-orange-light), var(--primary-orange));
}

/* Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 3.5rem;
    display: flex;
    gap: 8px;
    z-index: 5;
}

.indicator-bar {
    width: 35px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition);
}

.indicator-bar.active {
    width: 55px;
    background: var(--primary-orange);
    box-shadow: 0 0 10px var(--primary-orange);
}

/* ========================================================
   4. BREADCRUMB / NEWS TICKER BAR
======================================================== */
.ticker-bar-section {
    max-width: 1440px;
    margin: 1.25rem auto 0 auto;
    padding: 0 1.5rem;
}

.ticker-bar-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.ticker-breadcrumb {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 600;
}

.ticker-breadcrumb i {
    color: var(--primary-orange);
}

.ticker-purchases {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.5rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.ticker-purchases-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-gray);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: 1rem;
}

.ticker-purchases-label i {
    color: var(--gold);
}

.ticker-items-scroller {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.ticker-items-scroller::-webkit-scrollbar {
    display: none;
}

.ticker-user-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    padding: 3px 10px 3px 4px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ticker-user-pill img {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.ticker-user-pill span.item-name {
    color: var(--primary-orange-light);
    font-weight: 700;
}

/* ========================================================
   5. MAIN CONTENT SECTION & SIDEBAR (2-COL GRID)
======================================================== */
.content-grid-section {
    max-width: 1440px;
    margin: 1.5rem auto 3rem auto;
    padding: 0 1.5rem;
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 1.75rem;
}

/* Section Titles */
.widget-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.1rem;
    letter-spacing: -0.2px;
}

.widget-title i {
    color: var(--primary-orange);
    font-size: 1.1rem;
}

/* News / Blog Cards */
.blog-feed-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.news-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 280px 1fr;
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-orange);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.news-card-thumb {
    position: relative;
    height: 100%;
    min-height: 180px;
    overflow: hidden;
}

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

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

.news-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-orange);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.news-card-body {
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.news-card:hover .news-title {
    color: var(--primary-orange-light);
}

.news-excerpt {
    font-size: 0.88rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.news-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 0.75rem;
}

.news-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-author-avatar {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.news-author-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-gray);
}

.news-read-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.news-read-link:hover {
    color: var(--primary-orange-light);
    transform: translateX(3px);
}

/* Feature Showcase Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    transition: var(--transition);
}

.feature-box:hover {
    border-color: var(--border-orange);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.feature-icon-box {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-md);
    background: rgba(255, 119, 0, 0.12);
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-info h4 {
    font-size: 0.98rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3px;
}

.feature-info p {
    font-size: 0.82rem;
    color: var(--text-gray);
    line-height: 1.4;
}

/* ========================================================
   6. SIDEBAR WIDGETS
======================================================== */
.sidebar-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Leaderboard List */
.leaderboard-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.leaderboard-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 0.6rem 0.9rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.leaderboard-row:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(3px);
}

.leaderboard-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rank-badge {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rank-badge.rank-1 { background: linear-gradient(135deg, #ffd700, #ffaa00); color: #000; box-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
.rank-badge.rank-2 { background: linear-gradient(135deg, #e0e0e0, #9e9e9e); color: #000; }
.rank-badge.rank-3 { background: linear-gradient(135deg, #cd7f32, #8d5524); color: #fff; }

.player-avatar {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

.player-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
}

.player-money {
    font-size: 0.85rem;
    font-weight: 800;
    color: #10b981;
}

/* Discord Sidebar Card */
.discord-side-box {
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.35);
}

.discord-side-box::before {
    content: '\f392';
    font-family: 'Font Awesome 6 Brands';
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 7rem;
    color: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.discord-side-icon {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.discord-side-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.discord-side-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.1rem;
}

.discord-side-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    color: #5865f2;
    font-weight: 800;
    font-size: 0.88rem;
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.discord-side-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    background: #f0f2ff;
}

/* Server Status Widget */
.server-status-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.status-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.status-metric strong {
    color: #ffffff;
}

.server-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 4px;
}

.server-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-orange), var(--gold));
    border-radius: 4px;
    transition: width 1s ease;
}

/* ========================================================
   7. FLOATING ICONS & TOAST NOTIFICATION
======================================================== */
.floating-discord-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 52px;
    height: 52px;
    background: #5865f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.5);
    z-index: 999;
    transition: var(--transition);
}

.floating-discord-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.7);
}

.floating-cart-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.35rem;
    box-shadow: 0 6px 20px var(--primary-orange-glow);
    z-index: 999;
    transition: var(--transition);
}

.floating-cart-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 119, 0, 0.7);
}

/* Toast Message */
.copy-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(20, 23, 29, 0.95);
    border: 1px solid var(--primary-orange);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.92rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px var(--primary-orange-glow);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    pointer-events: none;
}

.copy-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.copy-toast i {
    color: var(--primary-orange);
}

/* ========================================================
   8. FOOTER
======================================================== */
.main-footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 3rem 2rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    max-width: 380px;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 6px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background: var(--primary-orange);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--text-gray);
    font-size: 0.86rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-orange-light);
    transform: translateX(3px);
}

.footer-bottom {
    max-width: 1440px;
    margin: 2rem auto 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.82rem;
}

/* ========================================================
   9. MODALS (Vote, Rules, Bans)
======================================================== */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.modal-dialog {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    width: 90%;
    max-width: 580px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    transform: scale(0.9);
    transition: var(--transition);
}

.modal-backdrop.active .modal-dialog {
    transform: scale(1);
}

.modal-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-header h3 i {
    color: var(--primary-orange);
}

.modal-close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close-btn:hover {
    color: #ffffff;
}

.modal-body {
    padding: 1.5rem;
}

/* ========================================================
   10. RESPONSIVE DESIGN
======================================================== */
@media (max-width: 1100px) {
    .content-layout {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .top-hero-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .navbar-container {
        overflow-x: auto;
    }
    .ticker-bar-container {
        grid-template-columns: 1fr;
    }
    .news-card {
        grid-template-columns: 1fr;
    }
    .news-card-thumb {
        height: 200px;
    }
}

@media (max-width: 600px) {
    .brand-3d-text {
        font-size: 2rem;
    }
    .carousel-title {
        font-size: 1.8rem;
    }
    .carousel-content {
        padding: 0 1.5rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
}