:root {
    --primary: #5aff9a; /* Verde da logo */
    --secondary: #8a2be2; /* Roxo brilhante */
    --bg-dark: #0a0514; /* Fundo quase preto */
    --bg-card: rgba(20, 10, 35, 0.6); /* Vidro roxo */
    --light: #ffffff;
    --border: rgba(255, 255, 255, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background-color: var(--bg-dark); color: var(--light); overflow-x: hidden; }

/* Navbar */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 50px; position: fixed; width: 100%; top: 0; z-index: 1000;
    background: rgba(10, 5, 20, 0.9); backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(138, 43, 226, 0.3);
}
.logo-text { font-size: 1.5rem; font-weight: 900; letter-spacing: 2px; }
.highlight { color: var(--primary); text-shadow: 0 0 10px rgba(90, 255, 154, 0.5); }
.menu a { text-decoration: none; color: var(--light); margin-left: 30px; font-weight: 500; transition: 0.3s; }
.menu a:hover { color: var(--primary); }
.discord-btn { background: #5865F2; padding: 8px 20px; border-radius: 5px; }
.discord-btn:hover { background: #4752c4; transform: translateY(-2px); box-shadow: 0 0 15px #5865F2; }

/* Hero Section */
.hero {
    height: 100vh; display: flex; align-items: center; justify-content: center;
    text-align: center; position: relative; overflow: hidden;
    background: radial-gradient(circle at center, #1a0b2e 0%, #05020a 100%);
}

/* Canvas das Partículas */
#magic-particles {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0;
}

.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle, transparent 40%, #0a0514 100%); z-index: 1; pointer-events: none; }
.hero-content { position: relative; z-index: 2; padding-top: 50px; }

/* Logo Animada */
.main-logo {
    width: 400px; /* Ajuste o tamanho da logo aqui */
    max-width: 90vw;
    filter: drop-shadow(0 0 30px rgba(90, 255, 154, 0.2));
}
.floating { animation: floating 4s ease-in-out infinite; }

@keyframes floating {
    0% { transform: translate(0, 0px); }
    50% { transform: translate(0, 20px); }
    100% { transform: translate(0, -0px); }
}

.hero p { font-size: 1.2rem; color: #bca0dc; margin: 30px 0; letter-spacing: 1px; }

/* IP Box */
.server-ip-box {
    background: rgba(138, 43, 226, 0.1); border: 1px solid var(--secondary);
    padding: 15px 30px; border-radius: 50px; display: inline-flex;
    align-items: center; gap: 20px; backdrop-filter: blur(5px);
    margin-bottom: 40px;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.2);
}
#ip-text { font-family: monospace; font-size: 1.2rem; letter-spacing: 1px; color: var(--primary); }
.copy-btn { background: transparent; border: none; color: var(--light); cursor: pointer; font-weight: bold; transition: 0.3s; font-size: 1rem; }
.copy-btn:hover { color: var(--primary); }

/* Buttons */
.btn { text-decoration: none; padding: 12px 30px; border-radius: 5px; font-weight: 700; margin: 0 10px; transition: 0.3s; display: inline-block; text-transform: uppercase; letter-spacing: 1px; }
.btn-primary { background: var(--primary); color: #000; box-shadow: 0 0 20px rgba(90, 255, 154, 0.4); }
.btn-primary:hover { background: #fff; transform: scale(1.05); }
.btn-secondary { border: 2px solid var(--secondary); color: white; }
.btn-secondary:hover { background: var(--secondary); box-shadow: 0 0 20px rgba(138, 43, 226, 0.4); }

/* Sections */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 100px 0; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 60px; color: var(--light); text-transform: uppercase; letter-spacing: 2px; }
.section-title::after {
    content: ''; position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%);
    width: 60px; height: 3px; background: var(--secondary); box-shadow: 0 0 10px var(--secondary);
}

/* Cards */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.feature-card {
    background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05);
    padding: 40px 30px; border-radius: 15px; text-align: center; transition: 0.3s;
}
.feature-card:hover { transform: translateY(-10px); border-color: var(--primary); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.feature-card .icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; filter: drop-shadow(0 0 10px rgba(90,255,154,0.5)); }

/* VIP */
.vip-section { background: linear-gradient(to bottom, var(--bg-dark), #150a25); text-align: center; }
.subtitle { margin-bottom: 50px; color: #bca0dc; }
.vip-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.vip-card {
    background: var(--bg-card); border: 1px solid var(--border);
    padding: 40px; border-radius: 20px; width: 350px; position: relative;
    transition: 0.3s;
}
.vip-card:hover { transform: scale(1.03); border-color: var(--secondary); box-shadow: 0 0 40px rgba(138, 43, 226, 0.15); }
.vip-card.best-seller { border: 2px solid var(--secondary); box-shadow: 0 0 30px rgba(138, 43, 226, 0.3); }
.badge {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--secondary); padding: 5px 15px; border-radius: 20px;
    font-size: 0.8rem; font-weight: bold; box-shadow: 0 0 10px var(--secondary);
}
.vip-header h3 { font-size: 2rem; margin-bottom: 10px; color: var(--light); }
.price { font-size: 2.5rem; font-weight: bold; color: var(--primary); margin-bottom: 30px; text-shadow: 0 0 15px rgba(90, 255, 154, 0.3); }
.month { font-size: 1rem; color: #fff; font-weight: normal; }
.vip-card ul { list-style: none; text-align: left; margin-bottom: 30px; }
.vip-card ul li { margin-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 10px; color: #ccc; }
.vip-card ul li i { color: var(--primary); margin-right: 10px; }
.btn-vip { background: linear-gradient(45deg, var(--secondary), #6a00ff); width: 100%; box-sizing: border-box; color: white; border: none; }
.btn-vip:hover { box-shadow: 0 0 20px var(--secondary); transform: scale(1.02); }

/* Footer */
footer { text-align: center; padding: 40px; border-top: 1px solid var(--border); color: #777; background: #05020a; }

/* Animações */
.animate-up { opacity: 0; transform: translateY(30px); animation: fadeInUp 0.8s forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 768px) {
    .navbar { padding: 20px; flex-direction: column; }
    .menu { margin-top: 20px; }
    .main-logo { width: 300px; }
}