/* CSS Variables - Premium Dark Mode Palette */
:root {
    --primary: #f2a900; /* Gold */
    --primary-light: #ffc13b;
    --primary-dark: #b8860b;
    
    --bg-base: #050505;
    --bg-surface: #0a0a0c;
    --bg-card: rgba(15, 15, 18, 0.6);
    
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-glow: rgba(242, 169, 0, 0.15);
    
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-base);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Selection Color */
::selection {
    background-color: var(--primary);
    color: #000;
}
::-moz-selection {
    background-color: var(--primary);
    color: #000;
}

/* Typography & Gradients */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
}

h2 {
    font-size: 3rem;
}

h2 span, .text-gradient {
    background: linear-gradient(135deg, var(--primary-light), var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-dark);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Buttons - Premium Feel */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    color: #000;
    box-shadow: 0 4px 20px var(--glass-glow);
}

.btn-primary:hover {
    box-shadow: 0 8px 30px rgba(242, 169, 0, 0.4);
    transform: translateY(-3px) scale(1.02);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.05);
}

.btn-discord {
    background-color: #5865F2;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.2);
}

.btn-discord:hover {
    background-color: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.5);
}

.btn-donate {
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 65, 108, 0.3);
    border: none;
    font-weight: 700;
}

.btn-donate:hover {
    background: linear-gradient(45deg, #ff4b2b, #ff416c);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 65, 108, 0.5);
    color: white;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 100px;
    align-items: center;
    padding: 10px 20px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 35px;
}

.server-status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #4CAF50;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(76, 175, 80, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid rgba(76, 175, 80, 0.2);
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.1);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #4CAF50;
    border-radius: 50%;
    box-shadow: 0 0 10px #4CAF50;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(242, 169, 0, 0.3);
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 50px;
}

.nav-links a {
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    box-shadow: 0 0 10px var(--primary);
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1605806616949-1e87b487cb2a?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(5,5,5,0.4) 0%, var(--bg-base) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--bg-base), transparent);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeUp 1.5s ease-out forwards;
}

.hero-logo {
    max-width: 450px;
    width: 100%;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 30px rgba(242, 169, 0, 0.4));
    animation: float 6s ease-in-out infinite;
}

.hero-content p {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 50px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.9);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
}

/* Glitch Effect */
.glitch {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    text-shadow: 0 0 20px rgba(0,0,0,0.8);
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    font-size: 2rem;
    color: var(--text-muted);
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: var(--transition);
}

.scroll-indicator:hover {
    color: var(--primary);
}

/* Stats Section */
.stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 80px 20px;
    background: linear-gradient(to right, transparent, rgba(242, 169, 0, 0.03), transparent);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    flex-wrap: wrap;
    position: relative;
    z-index: 5;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item h3 {
    font-size: 4rem;
    background: linear-gradient(to bottom, #ffffff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 15px rgba(242, 169, 0, 0.2));
}

.stat-item p {
    color: var(--text-muted);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* General Sections */
section {
    padding: 120px 20px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

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

.section-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 20px auto 0;
    font-weight: 300;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(242, 169, 0, 0.1), transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-15px);
    border-color: rgba(242, 169, 0, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 30px var(--glass-glow);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(242, 169, 0, 0.1), rgba(242, 169, 0, 0.05));
    border: 1px solid rgba(242, 169, 0, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: var(--primary);
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3) inset;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #000;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(242, 169, 0, 0.4);
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: var(--text-muted);
    position: relative;
    z-index: 2;
    font-weight: 300;
}

/* Factions Section */
.factions-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faction-card {
    height: 350px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--glass-border);
}

/* Placeholder backgrounds for factions removed per request */

.faction-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.2) 100%);
    transition: var(--transition);
}

.faction-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0,0,0,0.8), 0 0 20px var(--glass-glow);
}

.faction-card:hover .faction-overlay {
    background: linear-gradient(to top, rgba(242,169,0,0.85) 0%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,0.3) 100%);
}

.faction-content {
    position: relative;
    z-index: 10;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faction-card:hover .faction-content {
    transform: translateY(0);
}

.faction-content i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
    transition: var(--transition);
    filter: drop-shadow(0 0 10px rgba(242, 169, 0, 0.4));
}

.faction-card:hover .faction-content i {
    color: #fff;
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
}

.faction-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.faction-content p {
    color: #e0e0e0;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-size: 1.05rem;
    font-weight: 300;
    transform: translateY(10px);
}

.faction-card:hover .faction-content p {
    opacity: 1;
    transform: translateY(0);
}

/* Join Steps */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.steps-container::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 20px;
    height: calc(100% - 40px);
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), rgba(242, 169, 0, 0.1));
}

.step {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 50px;
    margin-left: 90px;
    position: relative;
    transition: var(--transition);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.step:hover {
    border-color: rgba(242, 169, 0, 0.4);
    transform: translateX(15px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5), -10px 0 30px var(--glass-glow);
}

.step-number {
    position: absolute;
    left: -90px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    background: var(--bg-surface);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    box-shadow: 0 0 25px rgba(242, 169, 0, 0.3);
    z-index: 2;
    transition: var(--transition);
}

.step:hover .step-number {
    background: var(--primary);
    color: #000;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 35px rgba(242, 169, 0, 0.6);
}

.step h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.step p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 300;
}

.btn-text {
    color: var(--primary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-text:hover {
    gap: 15px;
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.ip-box {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: rgba(0,0,0,0.6);
    padding: 18px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

.ip-box:hover {
    border-color: var(--primary);
    background: rgba(242,169,0,0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4), inset 0 0 20px rgba(242, 169, 0, 0.1);
}

.ip-box span {
    font-family: monospace;
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 700;
}

/* Donations Section */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5), 0 0 20px var(--glass-glow);
}

.pricing-card.popular {
    border-color: var(--primary);
    background: rgba(242, 169, 0, 0.05);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    color: #000;
    font-weight: 900;
    font-size: 0.8rem;
    padding: 5px 15px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(242, 169, 0, 0.3);
}

.price span {
    font-size: 1.5rem;
    color: var(--primary);
    vertical-align: top;
    margin-right: 5px;
}

.pricing-header p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
    padding: 0;
}

.pricing-features li {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features i {
    color: #4CAF50;
    font-size: 1.1rem;
}

.btn-paypal {
    width: 100%;
    background: #0070ba;
    color: white;
}

.btn-paypal:hover {
    background: #005ea6;
    box-shadow: 0 8px 20px rgba(0, 112, 186, 0.4);
    transform: translateY(-2px);
    color: white;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 5;
    position: relative;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.faq-item:hover {
    border-color: rgba(242, 169, 0, 0.3);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-item.open {
    border-color: var(--primary);
    box-shadow: 0 5px 20px var(--glass-glow);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.6;
}

/* Footer */
footer {
    background: #030303;
    border-top: 1px solid var(--glass-border);
    padding: 100px 20px 30px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-logo {
    max-width: 180px;
    margin-top: -15px;
    margin-bottom: 20px;
    display: block;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 450px;
    font-size: 1.1rem;
    font-weight: 300;
}

.footer-links h3, .footer-social h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: #fff;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-muted);
    font-weight: 300;
    font-size: 1.1rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 10px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

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

.social-icons a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #000;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(242, 169, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 300;
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Delay modifiers for stagger effect */
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); filter: drop-shadow(0 15px 35px rgba(242, 169, 0, 0.5)); }
    100% { transform: translateY(0px); }
}

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

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

/* Responsive */
@media (max-width: 992px) {
    .nav-container { gap: 30px; }
    .nav-links { gap: 20px; }
    .nav-actions { gap: 15px; }
    .btn-discord, .btn-donate { padding: 8px 15px; }
    .glitch { font-size: 3rem; }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 50px; }
    .stats { gap: 40px; }
    h2 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .nav-container { padding: 10px; gap: 10px; }
    .nav-actions { gap: 10px; justify-content: center; width: 100%; }
    .server-status { padding: 6px 10px; font-size: 0.75rem; }
    .server-status .status-text { display: none; } /* Show only the dot on very small screens to save space if needed, but text is okay if it fits */
    .btn-discord, .btn-donate { padding: 8px 12px; font-size: 0.85rem; }
    .nav-links { display: none; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-logo { max-width: 300px; }
    .steps-container::before { left: 20px; }
    .step { margin-left: 50px; padding: 40px 20px; }
    .step-number { left: -50px; width: 60px; height: 60px; font-size: 1.5rem; }
    .footer-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-buttons { flex-direction: column; gap: 15px; }
    section { padding: 80px 20px; }
}
