:root {
    --primary-color: #00e676;
    --primary-glow: rgba(0, 230, 118, 0.4);
    --accent-color: #ffab00;
    --dark-bg: #0a0a0a;
    --card-bg: #141414;
    --text-color: #ffffff;
    --border-color: rgba(255, 255, 255, 0.08);
}

html {
    scroll-behavior: smooth;
}

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

b,
strong {
    color: var(--primary-color);
    font-weight: 700;
}

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

.bg-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    background: url('../img/bg.png') no-repeat center center/cover;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.85) 0%, var(--dark-bg) 100%);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-family: 'Press Start 2P', cursive;
    color: #fff;
    font-size: 1.2rem;
    text-shadow: 0 0 15px var(--primary-glow);
}

.nav-links a {
    color: #bbb;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: 0.3s;
    letter-spacing: 0.5px;
}

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

section {
    padding: 120px 20px;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.section-desc {
    text-align: center;
    margin-bottom: 60px;
    color: #aaa;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero h1 span {
    color: var(--primary-color);
    text-shadow: 0 0 30px var(--primary-glow);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    color: #ccc;
    max-width: 700px;
}

.server-status-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.server-status-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 230, 118, 0.1);
}

.online-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #eee;
}

.dot {
    width: 12px;
    height: 12px;
    background: #ff4444;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff4444;
}

.dot.online {
    background: #00ff00;
    box-shadow: 0 0 15px #00ff00;
}

.ip-container {
    display: flex;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
}

.ip-address {
    padding: 12px 20px;
    font-family: 'Consolas', monospace;
    font-size: 1.2rem;
    color: var(--accent-color);
    letter-spacing: 1px;
}

.copy-btn {
    background: var(--primary-color);
    border: none;
    color: #000;
    padding: 0 25px;
    cursor: pointer;
    font-weight: 800;
    text-transform: uppercase;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.copy-btn:hover {
    background: #fff;
}

.flex-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.card {
    background: var(--card-bg);
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 300px;
    max-width: 400px;
}

.card:hover {
    border-color: var(--primary-color);
    transform: translateY(-7px);
    box-shadow: 0 10px 30px -10px rgba(0, 230, 118, 0.15);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.card p {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.7;
}

.quests-section {
    background: #0f0f0f;
}

.quest-card {
    text-align: left;
    align-items: flex-start;
    border-left: 4px solid var(--accent-color);
    background: linear-gradient(135deg, var(--card-bg), #1a1a1a);
}

.quest-card h3 {
    color: var(--accent-color);
}

.airdrops-section {
    background: url(''), #121212;
}

.drops-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.drop-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    flex: 1 1 250px;
    max-width: 350px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.drop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: currentColor;
}

.drop-card:hover {
    transform: translateY(-5px);
    background: #1a1a1a;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.drop-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.drop-card p {
    font-size: 0.95rem;
    color: #bbb;
}

.duels-bg {
    background: linear-gradient(to bottom, #111, #0a0a0a);
}

.mode-card {
    background: linear-gradient(145deg, #161616, #111);
    align-items: flex-start;
    text-align: left;
}

.mode-card h3 {
    color: #ff5555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mode-card h3::before {
    content: '⚔';
    font-size: 1.2rem;
}

.kits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.kit-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
    cursor: default;
}

.kit-item:hover {
    border-color: var(--accent-color);
    background: rgba(255, 171, 0, 0.1);
    transform: translateY(-3px);
}

.kit-icon {
    color: var(--accent-color);
}

.services-section {
    background: #080808;
    border-top: 1px solid var(--border-color);
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-item {
    background: rgba(0, 230, 118, 0.05);
    padding: 20px 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(0, 230, 118, 0.15);
    color: #ddd;
    font-size: 1rem;
    transition: 0.3s;
    flex: 1 1 220px;
    max-width: 300px;
}

.service-item:hover {
    background: rgba(0, 230, 118, 0.1);
    border-color: var(--primary-color);
}

.rules-box {
    background: var(--card-bg);
    padding: 50px;
    border-radius: 16px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.rules-box ul {
    list-style: none;
}

.rules-box li {
    margin-bottom: 25px;
    font-size: 1.15rem;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    color: #eee;
}

.rules-box li:last-child {
    margin-bottom: 0;
}

.rules-box li i {
    color: var(--primary-color);
    margin-top: 5px;
    font-size: 1.2rem;
}

footer {
    text-align: center;
    padding: 50px;
    background: #050505;
    color: #666;
    border-top: 1px solid #1a1a1a;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    nav {
        padding: 15px;
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .nav-links a {
        margin: 0;
        font-size: 0.8rem;
    }
}