:root {
    --bg-dark: #0a0a0c;
    --bg-card: #111118;
    --gold: #f0a500;
    --gold-light: #ffc940;
    --gold-dark: #c47f00;
    --orange: #e85d04;
    --orange-light: #ff7b2c;
    --red-accent: #d00000;
    --text: #e0e0e0;
    --text-muted: #a0a0b0;
    --border: #1e1e2a;
    --green-online: #22c55e;
    --green-glow: #4ade80;
    --card-hover-bg: #181825;
    --gradient-1: linear-gradient(135deg, #f0a500 0%, #e85d04 50%, #d00000 100%);
    --gradient-2: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f1a 100%);
    --shadow-gold: 0 0 30px rgba(240, 165, 0, 0.25), 0 0 60px rgba(240, 165, 0, 0.1);
    --shadow-orange: 0 0 25px rgba(232, 93, 4, 0.3);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: floatUp linear infinite;
    opacity: 0;
}

@keyframes floatUp {
    0% { transform: translateY(105vh) scale(0); opacity: 0; }
    5% { opacity: 1; }
    40% { opacity: 0.7; }
    80% { opacity: 0.2; }
    100% { transform: translateY(-10vh) scale(1.4); opacity: 0; }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 12, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 1001;
}

.nav-logo .lion-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    transition: var(--transition);
}

.nav-logo:hover .lion-icon {
    transform: scale(1.08);
    box-shadow: 0 0 40px rgba(240, 165, 0, 0.4), 0 0 80px rgba(240, 165, 0, 0.2);
}

.nav-logo .logo-text {
    font-weight: 800;
    font-size: 1.3rem;
    color: #fff;
    letter-spacing: -0.5px;
}

.nav-logo .logo-text span {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 6px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-1) !important;
    color: #fff !important;
    padding: 10px 22px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    box-shadow: var(--shadow-orange);
    transition: var(--transition) !important;
    font-size: 0.9rem !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(232, 93, 4, 0.5), 0 8px 25px rgba(232, 93, 4, 0.3);
}

.nav-cta::after {
    display: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 6px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: var(--transition);
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(17, 17, 24, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        transition: var(--transition);
        border-left: 1px solid var(--border);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
        padding: 40px;
    }
    .nav-links.active {
        right: 0;
    }
    .hamburger {
        display: flex;
    }
    .navbar {
        padding: 12px 20px;
    }
    .navbar.scrolled {
        padding: 8px 20px;
    }
    .nav-logo .logo-text {
        font-size: 1.1rem;
    }
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    z-index: 1;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(240, 165, 0, 0.12) 0%, rgba(232, 93, 4, 0.05) 35%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.25); opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: rgba(240, 165, 0, 0.12);
    border: 1px solid rgba(240, 165, 0, 0.3);
    color: var(--gold-light);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease-out;
}

.hero-badge .dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    background: var(--green-online);
    border-radius: 50%;
    margin-right: 8px;
    animation: blinkDot 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px var(--green-glow);
}

@keyframes blinkDot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 8px;
    animation: fadeInUp 0.8s ease-out;
    letter-spacing: -1px;
}

.hero h1 .gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
    font-weight: 400;
}

.hero .ip-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Courier New', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    animation: fadeInUp 0.8s ease-out 0.2s both;
    position: relative;
    user-select: all;
}

.hero .ip-box:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.hero .ip-box .copy-icon {
    font-size: 1rem;
    color: var(--gold);
}

.hero .ip-box .copy-tooltip {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.hero .ip-box .copy-tooltip.show {
    opacity: 1;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 28px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--gradient-1);
    color: #fff;
    box-shadow: var(--shadow-orange);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(232, 93, 4, 0.5), 0 10px 30px rgba(232, 93, 4, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(240, 165, 0, 0.06);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.status-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 0 20px;
    margin-top: -30px;
    position: relative;
    z-index: 3;
}

.status-card-mini {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    min-width: 180px;
    justify-content: center;
}

.status-card-mini:hover {
    border-color: rgba(240, 165, 0, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.status-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-indicator.online {
    background: var(--green-online);
    box-shadow: 0 0 14px var(--green-glow);
    animation: blinkDot 2s ease-in-out infinite;
}

.status-indicator.offline {
    background: #ef4444;
    box-shadow: 0 0 14px #ef4444;
}

.status-info .status-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 500;
}

.status-info .status-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
}

.section {
    padding: 80px 20px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.section-header h2 .gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.modes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.mode-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.mode-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-1);
    opacity: 0;
    transition: var(--transition);
}

.mode-card:hover {
    transform: translateY(-8px);
    border-color: rgba(240, 165, 0, 0.35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), var(--shadow-gold);
    background: var(--card-hover-bg);
}

.mode-card:hover::before {
    opacity: 1;
}

.mode-icon {
    width: 70px;
    height: 70px;
    background: rgba(240, 165, 0, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--gold);
    transition: var(--transition);
}

.mode-card:hover .mode-icon {
    background: rgba(240, 165, 0, 0.18);
    box-shadow: 0 0 30px rgba(240, 165, 0, 0.2);
    transform: scale(1.1);
}

.mode-card h3 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 6px;
    color: #fff;
}

.mode-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.mode-tag {
    display: inline-block;
    background: rgba(232, 93, 4, 0.2);
    color: var(--orange-light);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 12px;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.rule-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.rule-card:hover {
    border-color: rgba(240, 165, 0, 0.35);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.55);
    background: var(--card-hover-bg);
}

.rule-icon {
    width: 48px;
    height: 48px;
    background: rgba(240, 165, 0, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: var(--transition);
}

.rule-card:hover .rule-icon {
    background: rgba(240, 165, 0, 0.18);
    color: var(--gold-light);
    box-shadow: 0 0 20px rgba(240, 165, 0, 0.15);
}

.rule-content h4 {
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 6px;
}

.rule-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.store-banner {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.store-banner::after {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(240, 165, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.store-banner .store-info h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.store-banner .store-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.store-banner .btn-store {
    background: var(--gradient-1);
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: var(--shadow-orange);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    z-index: 1;
    white-space: nowrap;
}

.store-banner .btn-store:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 45px rgba(232, 93, 4, 0.55), 0 12px 30px rgba(232, 93, 4, 0.35);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 28px 22px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.feature-item:hover {
    border-color: rgba(240, 165, 0, 0.3);
    transform: translateY(-4px);
}

.feature-item i {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 14px;
    display: block;
}

.feature-item h4 {
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 40px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer .footer-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.footer .footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer .footer-links a:hover {
    color: var(--gold);
}

.footer p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer .discord-invite {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #5865f2;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 12px;
    transition: var(--transition);
}

.footer .discord-invite:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.35);
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 16px 60px;
    }
    .status-bar {
        flex-direction: column;
        align-items: center;
        margin-top: -20px;
    }
    .store-banner {
        flex-direction: column;
        text-align: center;
        padding: 32px 20px;
    }
    .section {
        padding: 50px 16px;
    }
    .modes-grid,
    .rules-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .hero .ip-box {
        font-size: 1rem;
        padding: 12px 20px;
    }
    .btn {
        padding: 12px 22px;
        font-size: 0.9rem;
    }
    .rule-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}