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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: #0a0a12;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Particles */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 220, 100, 0.6);
    box-shadow: 0 0 6px rgba(255, 220, 100, 0.8);
    animation: floatUp 18s infinite linear;
}

@keyframes floatUp {
    0% { transform: translateY(100vh); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { transform: translateY(-100vh); opacity: 0; }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.5rem 2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    background: rgba(8, 6, 4, 0.9);
    backdrop-filter: blur(10px);
}

.nav-logo {
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffd700;
    letter-spacing: 3px;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,0,0,0.4);
    padding: 5px 14px;
    border-radius: 16px;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.nav-status-dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    animation: statusPulse 1.5s infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.nav-status-text {
    font-size: 10px;
    font-weight: 700;
    color: #4ade80;
    letter-spacing: 0.5px;
}

.nav-separator {
    color: #5a4a3a;
    font-size: 10px;
}

.nav-players {
    font-size: 10px;
    color: #a09080;
}

.nav-players span {
    color: #ffd700;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.nav-links a {
    color: #b0a090;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffd700;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: #ddd;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffd700;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #ffd700;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 18, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 999;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: #ddd;
    text-decoration: none;
    padding: 0.85rem 1rem;
    text-align: center;
    border-radius: 8px;
    background: rgba(255, 200, 50, 0.1);
    border: 1px solid rgba(255, 200, 50, 0.2);
    font-weight: 600;
    transition: all 0.2s ease;
}

.mobile-menu a:hover,
.mobile-menu a:active {
    background: rgba(255, 200, 50, 0.2);
    color: #ffd700;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 45px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('BG.JPG') center center/cover no-repeat;
    image-rendering: -webkit-optimize-contrast;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(10, 10, 18, 0.15) 0%,
        transparent 30%,
        transparent 60%,
        rgba(10, 10, 18, 0.98) 100%
    );
}

.hero-overlay {
    display: none;
}

.floating-orbs {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: floatOrb 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(138, 92, 246, 0.6) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.5) 0%, transparent 70%);
    top: 50%;
    right: 10%;
    animation-delay: 5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
    bottom: 20%;
    left: 15%;
    animation-delay: 10s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 45px);
    gap: 1.5rem;
    padding-top: 5vh;
}

.hero-logo {
    max-width: 800px;
    width: 85%;
    height: auto;
    filter: drop-shadow(0 0 50px rgba(255, 215, 0, 0.5)) drop-shadow(0 10px 20px rgba(0,0,0,0.7));
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { filter: drop-shadow(0 0 50px rgba(255, 215, 0, 0.5)) drop-shadow(0 10px 20px rgba(0,0,0,0.7)); }
    50% { filter: drop-shadow(0 0 80px rgba(255, 215, 0, 0.7)) drop-shadow(0 10px 20px rgba(0,0,0,0.7)); }
}

.hero-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: #e0e0e0;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    max-width: 600px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 2rem 3.5rem;
    background: 
        linear-gradient(135deg, rgba(15, 10, 5, 0.95) 0%, rgba(25, 18, 10, 0.95) 100%),
        repeating-linear-gradient(0deg, rgba(184, 134, 11, 0.02) 0px, transparent 2px, transparent 4px);
    border: 3px solid transparent;
    border-image: linear-gradient(135deg, #6b5210 0%, #b8860b 50%, #6b5210 100%) 1;
    backdrop-filter: blur(10px);
    position: relative;
    box-shadow: 
        0 0 20px rgba(184, 134, 11, 0.15),
        inset 0 0 40px rgba(0, 0, 0, 0.6),
        0 12px 40px rgba(0, 0, 0, 0.7);
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle at 50% 0%, rgba(184, 134, 11, 0.08) 0%, transparent 70%);
    z-index: -1;
    filter: blur(15px);
}

.hero-stats::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid rgba(184, 134, 11, 0.15);
    pointer-events: none;
}

.hero-stat {
    text-align: center;
    position: relative;
}

.hero-stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: #c9a050;
    text-shadow: 
        0 0 10px rgba(184, 134, 11, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: #a08040;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-stat-divider {
    width: 3px;
    height: 50px;
    background: linear-gradient(
        180deg, 
        transparent 0%, 
        rgba(184, 134, 11, 0.15) 10%,
        rgba(184, 134, 11, 0.4) 50%,
        rgba(184, 134, 11, 0.15) 90%,
        transparent 100%
    );
    box-shadow: 0 0 5px rgba(184, 134, 11, 0.2);
    position: relative;
}



.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 220px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.hero-action-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.hero-action-btn:hover::before {
    left: 100%;
}

.hero-action-btn.vote-style {
    background: 
        linear-gradient(180deg, #f59e0b 0%, #d97706 100%),
        radial-gradient(circle at 50% 0%, rgba(251, 191, 36, 0.3), transparent);
    border: 3px solid #78350f;
    box-shadow: 
        0 5px 0 #451a03,
        0 0 25px rgba(245, 158, 11, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

.hero-action-btn.vote-style:hover {
    background: 
        linear-gradient(180deg, #fbbf24 0%, #f59e0b 100%),
        radial-gradient(circle at 50% 0%, rgba(251, 191, 36, 0.4), transparent);
    transform: translateY(-2px);
    box-shadow: 
        0 7px 0 #451a03,
        0 0 35px rgba(245, 158, 11, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

.hero-action-btn.vote-style:active {
    transform: translateY(3px);
    box-shadow: 
        0 2px 0 #451a03,
        0 0 20px rgba(245, 158, 11, 0.4);
}

.hero-action-btn.discord-style {
    background: 
        linear-gradient(180deg, #7289da 0%, #5865F2 100%),
        radial-gradient(circle at 50% 0%, rgba(143, 163, 232, 0.3), transparent);
    border: 3px solid #4752c4;
    box-shadow: 
        0 5px 0 #3c45a5,
        0 0 25px rgba(114, 137, 218, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

.hero-action-btn.discord-style:hover {
    background: 
        linear-gradient(180deg, #8fa3e8 0%, #7289da 100%),
        radial-gradient(circle at 50% 0%, rgba(143, 163, 232, 0.4), transparent);
    transform: translateY(-2px);
    box-shadow: 
        0 7px 0 #3c45a5,
        0 0 35px rgba(114, 137, 218, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

.hero-action-btn.discord-style:active {
    transform: translateY(3px);
    box-shadow: 
        0 2px 0 #3c45a5,
        0 0 20px rgba(114, 137, 218, 0.4);
}

.hero-subtitle {
    display: none;
}

/* Server IP Panel */
.server-ip-panel {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 3rem;
    background: 
        linear-gradient(135deg, rgba(20, 15, 10, 0.95) 0%, rgba(30, 20, 15, 0.95) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect width="100" height="100" fill="rgba(0,0,0,0.1)"/><path d="M0 0L100 100M100 0L0 100" stroke="rgba(184,134,11,0.03)" stroke-width="0.5"/></svg>');
    border: 3px solid transparent;
    border-image: linear-gradient(135deg, #6b5210 0%, #b8860b 50%, #6b5210 100%) 1;
    position: relative;
    box-shadow: 
        0 0 15px rgba(184, 134, 11, 0.15),
        inset 0 0 30px rgba(0, 0, 0, 0.5),
        0 10px 40px rgba(0, 0, 0, 0.6);
}

.server-ip-panel::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(135deg, transparent 0%, rgba(184, 134, 11, 0.06) 50%, transparent 100%);
    border-radius: 2px;
    z-index: -1;
    filter: blur(8px);
}

.server-ip-panel::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid rgba(184, 134, 11, 0.15);
    pointer-events: none;
}

.ip-label {
    display: none;
}

.ip-address {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 800;
    color: #4ade80;
    text-shadow: 
        0 0 10px rgba(74, 222, 128, 0.6),
        0 0 20px rgba(74, 222, 128, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
    position: relative;
}



.copy-btn {
    padding: 12px 32px;
    font-weight: 800;
    font-size: 0.9rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: 
        linear-gradient(180deg, #22c55e 0%, #16a34a 100%),
        linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    background-size: 100%, 200%;
    border: 3px solid #0f4522;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 0 #0a2f16,
        0 0 20px rgba(74, 222, 128, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.copy-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(74, 222, 128, 0.2), transparent);
    z-index: -1;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.copy-btn:hover::before {
    opacity: 1;
}

.copy-btn:hover {
    background: 
        linear-gradient(180deg, #4ade80 0%, #22c55e 100%),
        linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    background-size: 100%, 200%;
    transform: translateY(-2px);
    box-shadow: 
        0 6px 0 #0a2f16,
        0 0 30px rgba(74, 222, 128, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.copy-btn:active {
    transform: translateY(2px);
    box-shadow: 
        0 2px 0 #0a2f16,
        0 0 15px rgba(74, 222, 128, 0.4);
}

/* Vote Button */
.vote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(180deg, #f59e0b 0%, #d97706 100%);
    border: 2px solid #78350f;
    border-radius: 6px;
    box-shadow: 0 3px 0 #451a03;
    cursor: pointer;
    transition: all 0.15s ease;
    margin-bottom: 1.5rem;
}

.vote-btn:hover {
    background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 0 #451a03, 0 0 15px rgba(245, 158, 11, 0.3);
}

.vote-btn:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 #451a03;
}

.copied-text { display: none; }
.copy-btn.copied .copy-text { display: none; }
.copy-btn.copied .copied-text { display: inline; }

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 3px solid #ffd700;
    border-bottom: 3px solid #ffd700;
    transform: rotate(45deg);
}

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


/* Sections */
.section {
    padding: 5rem 2rem;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 800px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.section:first-of-type::before {
    display: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: #ffd700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5), 0 0 30px rgba(255, 215, 0, 0.3);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    border-radius: 2px;
}

.section-description {
    text-align: center;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

/* Stats Section */
.stats {
    background: linear-gradient(180deg, #0a0a12 0%, #0f0f1a 100%);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: rgba(30, 25, 18, 0.6);
    border: 2px solid rgba(90, 61, 26, 0.4);
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    font-family: 'Nunito', sans-serif;
}

.stat-label {
    color: #b0a090;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* About */
.about {
    background: #0a0a12;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}

.about-content .section-title {
    text-align: left;
}

.about-content .section-description {
    text-align: left;
    margin: 0 0 2rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.about-card {
    background: rgba(30, 25, 18, 0.8);
    border: 2px solid rgba(90, 61, 26, 0.5);
    border-radius: 8px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 200, 50, 0.5);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.about-card h3 {
    font-size: 1rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.about-card p {
    color: #b0a090;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Discord Widget */
.discord-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.discord-widget iframe {
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.discord-widget .discord-btn {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .about-layout {
        grid-template-columns: 1fr;
    }
    
    .about-content .section-title,
    .about-content .section-description {
        text-align: center;
    }
    
    .about-content .section-description {
        margin: 0 auto 2rem;
    }
    
    .discord-widget {
        margin-top: 2rem;
    }
    
    .about-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Features */
.features {
    background: linear-gradient(180deg, #0a0a12 0%, #12101a 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: rgba(30, 25, 18, 0.8);
    border: 2px solid rgba(90, 61, 26, 0.5);
    border-radius: 8px;
    padding: 2rem;
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 200, 50, 0.5);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    color: #ffd700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #b0a090;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Status */
.status {
    background: #0a0a12;
}

.status-panel {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(30, 25, 18, 0.8);
    border: 2px solid rgba(90, 61, 26, 0.5);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.5rem;
    background: rgba(46, 204, 113, 0.15);
    border: 2px solid #2ecc71;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #2ecc71;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px #2ecc71;
}

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

.status-indicator.offline .status-dot {
    background: #e74c3c;
    box-shadow: 0 0 10px #e74c3c;
}

.status-indicator.offline {
    background: rgba(231, 76, 60, 0.15);
    border-color: #e74c3c;
}

.status-text {
    font-weight: 700;
    color: #2ecc71;
}

.status-indicator.offline .status-text {
    color: #e74c3c;
}

.status-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #ffd700;
}

.stat-label {
    font-size: 0.8rem;
    color: #aaa;
    text-transform: uppercase;
}

.server-version {
    color: #888;
    font-size: 0.9rem;
}

/* Community */
.community {
    background: #0a0a12;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.community-stat {
    text-align: center;
    padding: 2rem;
    background: rgba(30, 25, 18, 0.8);
    border: 2px solid rgba(90, 61, 26, 0.5);
    border-radius: 8px;
    transition: transform 0.3s, border-color 0.3s;
}

.community-stat:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 200, 50, 0.5);
}

.community-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.community-label {
    color: #b0a090;
}

.discord-cta {
    text-align: center;
}

.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(180deg, #7289da 0%, #5865F2 100%);
    border: 2px solid #4752c4;
    border-radius: 6px;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 3px 0 #3c45a5;
}

.discord-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 0 #3c45a5, 0 0 15px rgba(88, 101, 242, 0.4);
}

.discord-btn:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 #3c45a5;
}

.discord-icon {
    width: 24px;
    height: 24px;
}

/* Rules Section */
.rules {
    background: linear-gradient(180deg, #0a0a12 0%, #12121c 100%);
    position: relative;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.rule-card {
    background: rgba(30, 25, 18, 0.7);
    border: 2px solid rgba(90, 61, 26, 0.4);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.rule-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.rule-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #0a0a12;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.rule-card h3 {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    margin-top: 1rem;
}

.rule-card p {
    color: #b0a090;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #1a1520 0%, #0f0a15 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 1rem;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
}

.cta-description {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1.2rem 3rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.6);
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
}

.cta-btn.secondary {
    background: linear-gradient(135deg, #7289da 0%, #5865F2 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(114, 137, 218, 0.4);
}

.cta-btn.secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(114, 137, 218, 0.6);
    background: linear-gradient(135deg, #8fa3e8 0%, #7289da 100%);
}

/* Footer */
.footer {
    background: #050508;
    padding: 3rem 2rem 2rem;
    border-top: 2px solid rgba(255, 200, 50, 0.2);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
}

.footer-text {
    color: #aaa;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-copyright {
    color: #666;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .navbar {
        padding: 0.5rem 1.5rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.85rem;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
    }
    
    .discord-widget {
        position: static;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .about-content .section-title,
    .about-content .section-description {
        text-align: center;
    }
    
    .about-content .section-description {
        margin: 0 auto 2rem;
    }
    
    .hero-logo {
        max-width: 650px;
    }
}

@media (max-width: 768px) {
    .navbar {
        grid-template-columns: auto 1fr auto;
        padding: 0.5rem 1rem;
    }
    
    .nav-center {
        justify-self: center;
        padding: 4px 10px;
    }
    
    .nav-status-text,
    .nav-separator,
    .nav-players {
        font-size: 9px;
    }
    
    .nav-links { 
        display: none; 
    }
    
    .nav-toggle { 
        display: flex;
        justify-self: end;
    }
    
    .nav-logo {
        font-size: 1rem;
    }
    
    .hero {
        padding-top: 60px;
    }
    
    .hero-content {
        padding: 1rem;
        gap: 1.25rem;
        min-height: calc(100vh - 60px);
    }
    
    .hero-logo {
        max-width: 85%;
        width: 100%;
    }
    
    .hero-tagline {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        padding: 1rem 2rem;
        width: auto;
        max-width: 90%;
    }
    
    .hero-stat-value {
        font-size: 1.5rem;
    }
    
    .hero-stat-label {
        font-size: 0.65rem;
    }
    
    .hero-stat-divider {
        height: 30px;
    }
    
    .server-ip-panel {
        width: 90%;
        max-width: 350px;
        padding: 1rem 1.5rem;
    }
    
    .ip-address {
        font-size: 1rem;
        word-break: break-all;
    }
    
    .copy-btn {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 90%;
        max-width: 350px;
    }
    
    .hero-action-btn {
        width: 100%;
        min-width: unset;
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    
    .scroll-indicator {
        font-size: 0.8rem;
    }
    
    .scroll-arrow {
        width: 16px;
        height: 16px;
    }
    
    .orb-1, .orb-2, .orb-3 {
        opacity: 0.15;
    }
    
    .section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-description {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    
    .about-card {
        padding: 1.25rem 0.75rem;
    }
    
    .about-card h3 {
        font-size: 0.9rem;
    }
    
    .about-card p {
        font-size: 0.8rem;
    }
    
    .card-icon {
        font-size: 1.75rem;
    }
    
    .discord-widget iframe {
        width: 100%;
        max-width: 300px;
        height: 350px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-card h3 {
        font-size: 1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .rules-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .rule-card {
        padding: 1.5rem;
    }
    
    .rule-number {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .rule-card h3 {
        font-size: 1.1rem;
    }
    
    .rule-card p {
        font-size: 0.9rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .cta-btn {
        width: 90%;
        max-width: 300px;
        padding: 1rem 2rem;
    }
    
    .footer {
        padding: 2rem 1rem;
    }
    
    .footer-logo {
        font-size: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.4rem 0.75rem;
    }
    
    .nav-logo {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    
    .nav-center {
        padding: 3px 8px;
        gap: 5px;
    }
    
    .nav-status-dot {
        width: 5px;
        height: 5px;
    }
    
    .nav-status-text {
        font-size: 8px;
    }
    
    .nav-separator {
        display: none;
    }
    
    .nav-players {
        font-size: 8px;
    }
    
    .hero-content {
        padding: 0.75rem;
        gap: 1rem;
    }
    
    .hero-logo {
        max-width: 95%;
    }
    
    .hero-tagline {
        font-size: 0.9rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem 1.5rem;
        max-width: 200px;
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    .hero-stat-value {
        font-size: 1.75rem;
    }
    
    .hero-stat-label {
        font-size: 0.7rem;
    }
    
    .server-ip-panel {
        padding: 1rem;
        width: 95%;
    }
    
    .ip-address {
        font-size: 0.9rem;
    }
    
    .copy-btn {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
    
    .hero-buttons {
        width: 95%;
    }
    
    .hero-action-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    .section {
        padding: 2.5rem 0.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-title::after {
        width: 60px;
    }
    
    .section-description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-card {
        padding: 1.25rem 1rem;
    }
    
    .discord-widget iframe {
        max-width: 280px;
        height: 320px;
    }
    
    .discord-widget .discord-btn {
        font-size: 0.85rem;
        padding: 0.7rem 1.25rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .rule-card {
        padding: 1.25rem;
        padding-top: 1.5rem;
    }
    
    .rule-number {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        top: -12px;
    }
    
    .cta {
        padding: 2.5rem 1rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .footer-socials {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .footer-copyright {
        font-size: 0.75rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero-logo {
        max-width: 100%;
    }
    
    .hero-tagline {
        font-size: 0.85rem;
    }
    
    .hero-stats {
        padding: 0.75rem 1rem;
    }
    
    .server-ip-panel {
        padding: 0.75rem;
    }
    
    .ip-address {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.35rem;
    }
    
    .about-card h3,
    .feature-card h3,
    .rule-card h3 {
        font-size: 0.95rem;
    }
    
    .about-card p,
    .feature-card p,
    .rule-card p {
        font-size: 0.8rem;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border: none;
    border-radius: 50%;
    color: #0a0a12;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

a:focus-visible, button:focus-visible {
    outline: 3px solid #ffd700;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}