
:root {
    --bg-dark: #0d0015;
    --primary: #ff3366;
    --secondary: #ff9933;
    --card-bg: #1a0f2e;
    --text-color: #ffffff;
    --text-muted: #aaaaaa;
}

body, html {
    margin: 0; padding: 0;
    width: 100%;
    background-color: var(--bg-dark);
    color: var(--text-color);
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.highlight { color: var(--primary); }

/* NAVBAR */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 5%; background: rgba(13, 0, 21, 0.9);
    position: fixed; width: 100%; top: 0; z-index: 100;
    backdrop-filter: blur(10px); box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 51, 102, 0.2);
}
.nav-logo { font-size: 26px; font-weight: 800; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--text-color); text-decoration: none; font-size: 0.9rem; font-weight: 400; transition: 0.3s;}
.nav-links a:hover { color: var(--primary); }
.hl-btn { 
    border: 1px solid var(--primary); padding: 8px 20px; border-radius: 30px; 
    transition: 0.3s; background: rgba(255, 51, 102, 0.1);
}
.hl-btn:hover { background: var(--primary); color: #fff !important; }

/* REUSABLE CLASSES */
.container-split {
    display: flex; align-items: center; justify-content: space-between; gap: 50px;
}
.align-center { align-items: center; }

h1, h2, h3 { margin: 0; }
h2 { font-size: 2.5rem; margin-bottom: 15px; }

.cta-button {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white; padding: 15px 35px; border-radius: 30px; text-decoration: none;
    font-weight: 600; display: inline-flex; align-items: center; gap: 10px;
    transition: 0.3s; box-shadow: 0 10px 20px rgba(255, 51, 102, 0.3); border: none; font-size: 1rem;
}
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(255, 51, 102, 0.4); }
.cta-button.outline { background: transparent; border: 2px solid var(--primary); box-shadow: none; }
.cta-button.outline:hover { background: rgba(255, 51, 102, 0.1); }
.secondary-button { color: var(--text-color); text-decoration: none; font-weight: 600; font-size: 0.95rem; }
.secondary-button:hover { color: var(--primary); }

/* HERO SECTION */
.hero {
    padding: 180px 5% 100px;
    background: radial-gradient(circle at 70% 30%, #2b003a 0%, var(--bg-dark) 50%);
    min-height: 70vh;
}
.hero-content { flex: 1; min-width: 300px; }
.badge { display: inline-block; background: rgba(255,51,102, 0.1); color: var(--primary); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; margin-bottom: 20px; border: 1px solid rgba(255,51,102, 0.3); }
.hero h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 20px; }
.hero p { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 40px; max-width: 500px; line-height: 1.6; }
.hero-buttons { display: flex; align-items: center; gap: 20px; }

.hero-image { flex: 1; position: relative; display: flex; justify-content: center; }
.image-wrapper { position: relative; width: 100%; max-width: 400px; }
.main { width: 100%; border-radius: 30px; border: 4px solid var(--card-bg); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.floating-card { position: absolute; background: rgba(13, 0, 21, 0.85); backdrop-filter: blur(10px); padding: 15px 20px; border-radius: 15px; border: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; box-shadow: 0 10px 20px rgba(0,0,0,0.5); animation: float 6s ease-in-out infinite; }
.match-card { bottom: 40px; left: -40px; }
.alert-card { top: 40px; right: -40px; animation-delay: 1s; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* FEATURES */
.features-section { padding: 100px 0; background: #11061f; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; margin-top: 10px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 60px; }
.feature-card { background: var(--card-bg); padding: 40px 30px; border-radius: 20px; border: 1px solid #2b1744; text-align: center; transition: 0.3s; }
.feature-card:hover { transform: translateY(-10px); border-color: var(--primary); }
.icon-circle { width: 70px; height: 70px; background: rgba(255,51,102,0.1); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 20px; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-top: 15px; }

/* HOW IT WORKS */
.how-it-works { padding: 120px 0; }
.steps-list { list-style: none; padding: 0; margin-top: 40px; }
.steps-list li { display: flex; gap: 20px; margin-bottom: 35px; }
.step-num { width: 50px; height: 50px; flex-shrink: 0; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; box-shadow: 0 0 20px rgba(255,51,102,0.4); }
.step-text h4 { font-size: 1.3rem; margin: 0 0 10px 0; }
.step-text p { color: var(--text-muted); margin: 0; line-height: 1.5; }

/* B2B / FOOTER */
.b2b-section { padding: 100px 0; background: linear-gradient(180deg, var(--bg-dark) 0%, #1a0f2e 100%); border-top: 1px solid #2b1744; }
footer { padding: 60px 0 20px; background: #08000d; border-top: 1px solid #2b1744; }
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; }
.footer-links a { display: block; color: var(--text-muted); text-decoration: none; margin-bottom: 10px; font-size: 0.9rem; }
.footer-links a:hover { color: var(--primary); }

@media (max-width: 768px) {
    .container-split { flex-direction: column; }
    .hero h1 { font-size: 2.8rem; }
    .nav-links { display: none; }
    .match-card { left: 10px; }
    .alert-card { right: 10px; }
}

/* ADMIN PANEL ESPECÍFICO (mantido do anterior) */
.dashboard { padding: 120px 5% 50px; max-width: 1200px; margin: 0 auto; }
.panel-card { background: var(--card-bg); padding: 30px; border-radius: 15px; border: 1px solid #2b1744; }
input { width: 100%; padding: 15px; margin-top: 5px; box-sizing: border-box; background: var(--bg-dark); border: 1px solid #3d1a5c; color: white; border-radius: 8px; font-family: inherit; }
.events-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 20px; }
.event-item { background: #23113f; padding: 25px; border-radius: 10px; border-left: 4px solid var(--primary); }
.kill-btn { background: #cc0000; color: white; border: none; padding: 8px 15px; border-radius: 5px; cursor: pointer; margin-top: 15px; width: 100%; font-weight: bold; }

