:root {
    --bg-color: #0d0e12;
    --primary-color: #f7941d; /* BF1 Orange/Fire */
    --secondary-color: #4a5d73; /* BF1 Deep Teal/Blue */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --glass-bg: rgba(255, 255, 255, 0.05); /* Frosted glass */
    --glass-border: rgba(255, 255, 255, 0.1);
    --glow-color: rgba(247, 148, 29, 0.2);
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
}

/* Glow Decoration - inspired by DeepSeek reference but BF1-ified */
.glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    background: radial-gradient(circle at 50% -20%, var(--glow-color) 0%, transparent 60%);
}

.smooke-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(13, 14, 18, 0) 0%, rgba(13, 14, 18, 0.8) 100%);
    pointer-events: none;
    z-index: -1;
}

/* Navbar */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 80px;
    z-index: 1000;
    backdrop-filter: blur(8px);
    background: rgba(13, 14, 18, 0.4);
    border-bottom: 1px solid var(--glass-border);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

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

.logo-img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(247, 148, 29, 0.4));
    transition: transform 0.3s;
}

.logo:hover .logo-img {
    transform: scale(1.1) rotate(-5deg);
}

.tag {
    font-size: 0.6rem;
    letter-spacing: 4px;
    color: var(--text-secondary);
    font-family: var(--font-heading);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: var(--primary-color);
}

.btn-primary {
    padding: 10px 24px;
    background: var(--primary-color);
    color: #000 !important;
    border-radius: 4px;
    font-weight: 700 !important;
    transition: all 0.4s;
}

.btn-primary:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(247, 148, 29, 0.5);
}

/* Hero Section Overhaul */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 24px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform-origin: center;
    filter: brightness(0.6) contrast(1.1);
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(13, 14, 18, 0.9) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 1000px;
    z-index: 10;
}

.hero-badge-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 6px 14px;
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
}

.rush-main-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 10px;
}

.hero-logo-large {
    height: 120px;
    filter: drop-shadow(0 0 15px var(--glow-color));
    animation: pulse 4s infinite;
}

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

.glitch-text {
    font-family: var(--font-heading);
    font-size: 8rem;
    line-height: 1;
    letter-spacing: -4px;
    text-transform: uppercase;
    position: relative;
}

.glitch-text span {
    color: var(--primary-color);
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0.8;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-subtitle span {
    color: var(--text-primary);
    font-weight: 600;
}

/* Tactical Search & Actions */
.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.tactical-search {
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--primary-color);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 4px;
    width: 400px;
    position: relative;
    box-shadow: 0 0 20px rgba(247, 148, 29, 0.1);
}

.tactical-search .prefix {
    color: var(--primary-color);
    font-family: monospace;
    font-weight: 700;
    font-size: 14px;
}

.tactical-search input {
    background: transparent;
    border: none;
    color: #fff;
    font-family: monospace;
    font-size: 14px;
    padding: 0;
    width: 100%;
    outline: none;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.btn-hero-primary {
    background: var(--primary-color);
    color: #000;
    text-decoration: none;
    padding: 16px 36px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.4s;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent; /* Match secondary button dimensions */
}

.btn-hero-secondary {
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    padding: 16px 36px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.4s;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-hero-primary:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(247, 148, 29, 0.6);
}

.btn-hero-secondary:hover {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(247, 148, 29, 0.4);
}

.btn-hero-contribute {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.btn-hero-contribute:hover {
    background: transparent !important;
    color: #fff !important;
    border-color: #fff !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(255, 255, 255, 0.4) !important;
}

.btn-flash {
    margin-right: 4px;
    font-size: 1.1em;
}

/* Scroll Indicator Upgrade */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0.6;
}

.scroll-indicator span {
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 700;
}

.mouse {
    width: 22px;
    height: 36px;
    border: 2px solid #fff;
    border-radius: 12px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 6px;
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 15px); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* Advantages Section */
.advantages-section {
    padding: 100px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 48px;
}

.subtitle-badge {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    display: block;
}

.section-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section-title-row h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    max-width: 500px;
    line-height: 1.1;
}

.section-title-row h2 span {
    color: var(--primary-color);
}

.btn-outline {
    padding: 12px 28px;
    border: 1px solid var(--glass-border);
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.05);
    border-color: #fff;
}

/* Grid Layout */
.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.advantage-card.featured {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s;
}

.advantage-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
    z-index: 10;
}

.advantage-card.featured:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px rgba(247, 148, 29, 0.2);
    background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
}

.advantage-card.featured:hover::before {
    transform: scaleX(1);
}

.card-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--bg-color), transparent);
}

.card-content {
    padding: 40px;
}

.card-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 16px;
}

.card-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.check-list {
    list-style: none;
}

.check-list li {
    padding: 8px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-list li::before {
    content: '→';
    color: var(--primary-color);
}

/* Stats items */
.stats-grid {
    display: flex;
    flex-direction: column;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    margin-bottom: 20px;
    background: linear-gradient(145deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.005) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.stat-item:hover {
    transform: translateX(10px) translateY(-5px);
    border-color: var(--primary-color) !important;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5), 0 0 20px rgba(247, 148, 29, 0.2);
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-info h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.stat-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 400px;
}

.plus-icon {
    font-size: 1.5rem;
    opacity: 0.5;
}

.border-bottom {
    border-bottom: 1px solid var(--glass-border);
}

/* Contribute Section */
.contribute-section {
    position: relative;
    padding: 150px 0;
    margin: 0;
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.contribute-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.3) contrast(1.2);
    z-index: -2;
    transition: transform 1s ease-out;
}

.contribute-section:hover .contribute-bg {
    transform: scale(1.05);
}

.contribute-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(13, 14, 18, 1) 0%, transparent 20%, transparent 80%, rgba(13, 14, 18, 1) 100%),
                radial-gradient(circle at center, transparent 0%, rgba(13, 14, 18, 0.9) 100%);
    z-index: -1;
}

.contribute-content {
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
    text-align: center;
    z-index: 1;
}

.centered {
    text-align: center;
}

.centered h2 {
    margin: 0 auto;
}

.contribute-title {
    font-size: 4rem !important;
    text-shadow: 0 0 20px rgba(0,0,0,0.8);
}

.contribute-title span {
    color: var(--primary-color);
}

.contribute-description {
    color: var(--text-secondary);
    font-size: 1.3rem;
    margin: 30px auto 50px;
    max-width: 800px;
    line-height: 1.6;
}

/* Stats */
.contribute-stats-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.contribute-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 30px 50px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.contribute-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.contribute-stat:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px rgba(247, 148, 29, 0.2);
    background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
}

.contribute-stat:hover::before {
    transform: scaleX(1);
}



.stat-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 15px var(--glow-color);
}

.stat-label {
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 600;
}

/* Servers Section */
.servers-section {
    padding: 100px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.servers-title {
    font-size: 3rem !important;
    margin-bottom: 16px;
}

.servers-title span {
    color: var(--primary-color);
}

.servers-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0 auto 50px;
    max-width: 600px;
    line-height: 1.6;
}

.servers-list-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.server-widget-item {
    display: flex;
    justify-content: center;
    width: 100%;
}

.server-widget-item iframe {
    max-width: 100%;
    /* No borders or background as requested */
}

.contribute-actions-wrapper {
    margin-bottom: 80px;
}

.btn-livepix-massive {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(45deg, var(--primary-color), #ffb84d);
    color: #000;
    text-decoration: none;
    padding: 24px 60px;
    font-weight: 800;
    font-size: 1.3rem;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    letter-spacing: 2px;
    box-shadow: 0 0 50px rgba(247, 148, 29, 0.4);
}

.btn-livepix-massive:hover {
    background: #fff;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.3);
}

.pulse-icon {
    font-size: 1.8rem;
    animation: pulse-icon-anim 2s infinite;
}

@keyframes pulse-icon-anim {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); text-shadow: 0 0 10px #fff;}
    100% { transform: scale(1); }
}

.pix-note {
    margin-top: 16px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

.supporter-benefits-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.supporter-benefits-divider h3 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-size: 1.3rem;
    letter-spacing: 4px;
    opacity: 0.9;
}

.divider-line {
    height: 1px;
    width: 150px;
    background: linear-gradient(to right, transparent, var(--glass-border), transparent);
}

.supporter-badge-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.premium-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(247, 148, 29, 0.2);
    padding: 40px 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.premium-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
}

.premium-card:hover::before {
    transform: scaleX(1);
}

.badge-icon-top {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(247, 148, 29, 0.4));
}

.badge-title {
    display: block;
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.premium-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer Adjustment */
/* Footer */
#footer {
    padding: 60px 80px;
    border-top: 1px solid var(--glass-border);
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-small {
    height: 30px;
    margin-bottom: 8px;
    filter: grayscale(1) brightness(2);
}

.footer-left p {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 8px;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

/* --- Mobile Menu Toggle --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: var(--text-primary);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

/* Mobile Menu Active Animation */
.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--primary-color);
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--primary-color);
}

body.no-scroll {
    overflow: hidden;
}

/* --- Media Queries --- */

/* Laptops & Tablets (1024px and below) */
@media (max-width: 1024px) {
    #navbar {
        padding: 20px 40px;
    }

    .advantages-section {
        padding: 80px 40px;
    }

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

    .glitch-text {
        font-size: 6rem;
    }

    .section-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .contribute-section {
        padding: 100px 0;
        margin: 0;
    }
    
    .contribute-title {
        font-size: 3rem !important;
    }
    
    .contribute-stats-container {
        gap: 20px;
        flex-direction: column;
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    #navbar {
        padding: 15px 24px;
    }

    /* Mobile Menu Implementation */
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(13, 14, 18, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: 0.5s ease;
        padding: 80px 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li a {
        font-size: 1.5rem;
        letter-spacing: 4px;
    }

    .btn-primary {
        padding: 15px 40px;
        font-size: 1rem;
    }

    /* Hero Responsive Adjustments */
    .scroll-indicator {
        display: none;
    }

    .glitch-text {
        font-size: 4.5rem;
    }

    .hero-logo-large {
        height: 80px;
    }

    .hero-tagline {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero-primary, .btn-hero-secondary {
        width: 100%;
        text-align: center;
    }

    /* Section Headers */
    .section-title-row h2 {
        font-size: 2.2rem;
    }

    /* Advantage Cards */
    .card-content {
        padding: 30px 20px;
    }

    .stat-item {
        padding: 30px 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .footer-links {
        gap: 20px;
        justify-content: center;
    }

    .supporter-badge-row {
        grid-template-columns: 1fr;
    }
    
    .btn-livepix-massive {
        width: 100%;
        justify-content: center;
        padding: 18px 24px;
        font-size: 1.1rem;
    }
    
    .contribute-title {
        font-size: 2.5rem !important;
    }
    
    .contribute-description {
        font-size: 1rem;
    }

    .divider-line {
        width: 50px;
    }

    .supporter-benefits-divider h3 {
        font-size: 1rem;
        letter-spacing: 2px;
    }
}

/* Mobile Phones (450px and below) */
@media (max-width: 450px) {
    .glitch-text {
        font-size: 3.5rem;
    }

    .hero-logo-large {
        height: 60px;
    }

    .rush-main-title {
        gap: 15px;
    }

    .hero-badge {
        font-size: 8px;
    }

    .advantages-section {
        padding: 60px 20px;
    }

    .section-title-row h2 {
        font-size: 1.8rem;
    }

    .card-content h3 {
        font-size: 1.5rem;
    }

    .stat-info h4 {
        font-size: 1.2rem;
    }

    .tag {
        display: none; /* Hide BF1 tag to save space */
    }

    .logo-img {
        height: 35px;
    }

    .hero {
        padding-top: 100px;
        height: auto;
        min-height: 100vh;
    }

    .stat-info p {
        font-size: 0.8rem;
    }

    .plus-icon {
        font-size: 1.2rem;
    }
}

/* =========================================================================
   ADMIN (STAFF) PAGE STYLES
   ========================================================================= */
.admin-page {
    padding-top: 120px;
    min-height: 100vh;
    padding-bottom: 80px;
}

.admin-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.admin-card {
    background: #0a0b0e;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(247, 148, 29, 0.4);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 30px;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2H0v-2h20v-2H0V8h20V6H0V4h20V2H0V0h22v20.5h-2zM40 20.5V18H20v-2h20v-2H20v-2h20v-2H20V8h20V6H20V4h20V2H20V0h22v20.5h-2z' fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 10px rgba(247, 148, 29, 0.1);
}

.admin-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.7), 0 0 20px rgba(247, 148, 29, 0.5);
    border-color: var(--primary-color);
}

.admin-card-header {
    width: 100%;
    height: 130px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 2px solid #000;
}

.admin-avatar-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-top: -60px;
    position: relative;
    z-index: 2;
    padding: 4px;
    background: #0a0b0e;
}

.admin-avatar-wrapper.ring-primary {
    background: var(--primary-color);
    box-shadow: 0 0 10px rgba(247, 148, 29, 0.4);
}

.admin-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #0a0b0e;
}

.admin-info {
    text-align: center;
    width: 100%;
    padding: 0 20px;
    margin-top: 15px;
}

.admin-info h3 {
    font-size: 1.6rem;
    font-family: var(--font-heading);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.admin-separator {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 15px auto;
}

.admin-title {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.admin-title.highlighted {
    color: #e6b800; /* Gold/Bronze */
}

.admin-subtitle {
    display: block;
    font-size: 0.9rem;
    color: #5bc0de; /* Light blue */
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.admin-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.3s, opacity 0.3s;
}

.social-icon:hover {
    transform: scale(1.15);
    opacity: 0.9;
}

.social-icon.discord {
    background: #5865F2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.tiktok {
    background: #000;
    border: 1px solid #333;
}

.social-icon.steam {
    background: #171a21;
    border: 1px solid #2a475e;
}

@media (max-width: 768px) {
    .admin-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}
