:root {
    --primary: #3b82f6;
    --bg: #05070a;
    --card: #0f121a;
    --text: #ffffff;
    --text-dim: #94a3b8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg); color: var(--text); font-family: 'Inter', sans-serif; line-height: 1.6; }

/* KURSOR */
.cursor-dot { width: 8px; height: 8px; background: var(--primary); position: fixed; border-radius: 50%; z-index: 10000; pointer-events: none; transform: translate(-50%, -50%); }
.cursor-outline { width: 40px; height: 40px; border: 2px solid rgba(59, 130, 246, 0.4); position: fixed; border-radius: 50%; z-index: 9999; pointer-events: none; transform: translate(-50%, -50%); }

/* NAVBAR */
.navbar { position: fixed; top: 0; width: 100%; display: flex; justify-content: center; padding: 20px; z-index: 1000; background: rgba(5,7,10,0.8); backdrop-filter: blur(15px); border-bottom: 1px solid rgba(255,255,255,0.05); }
.nav-container { width: 1200px; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; }
.logo { font-weight: 900; font-size: 1.5rem; letter-spacing: -1px; }
.logo span { color: var(--primary); }
.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links li { cursor: pointer; font-weight: 600; opacity: 0.7; transition: 0.3s; }
.nav-links li:hover { opacity: 1; color: var(--primary); }
.btn-login-nav { background: var(--primary); border: none; color: #fff; padding: 10px 20px; border-radius: 10px; font-weight: 700; cursor: pointer; }

/* HERO */
.hero { height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 20px; }
h1 { font-size: clamp(2.5rem, 8vw, 5rem); font-weight: 900; line-height: 1; margin-bottom: 20px; }
.text-gradient { background: linear-gradient(90deg, #3b82f6, #8b5cf6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { color: var(--text-dim); max-width: 700px; font-size: 1.2rem; }
.hero-btns { display: flex; gap: 20px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }

.btn-main { padding: 18px 40px; background: var(--primary); border: none; border-radius: 15px; color: #fff; font-weight: 800; cursor: pointer; transition: 0.3s; }
.btn-discord-hero { padding: 18px 40px; background: #5865F2; color: #fff; border-radius: 15px; text-decoration: none; font-weight: 800; display: flex; align-items: center; gap: 10px; transition: 0.3s; }
.btn-main:hover, .btn-discord-hero:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }

/* GRID */
.section { padding: 100px 20px; max-width: 1200px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 60px; }
.tools-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.t-card { background: var(--card); padding: 40px; border-radius: 30px; border: 1px solid rgba(255,255,255,0.05); text-align: center; transition: 0.4s; cursor: pointer; }
.t-card:hover { transform: translateY(-10px); border-color: var(--primary); background: #161b22; }
.t-icon { font-size: 2.5rem; margin-bottom: 20px; }
.c1 { color: #3b82f6; } .c2 { color: #a855f7; } .c3 { color: #10b981; }

/* O NAS */
.section-alt { background: #0a0c12; padding: 100px 20px; }
.about-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; }
.stats { display: flex; gap: 40px; margin-top: 30px; }
.stat h3 { font-size: 3rem; color: var(--primary); font-weight: 900; }
.legal-box { background: var(--card); padding: 30px; border-radius: 25px; border: 1px solid rgba(255,255,255,0.1); }
.legal-item { padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.05); cursor: pointer; transition: 0.3s; display: flex; align-items: center; gap: 15px; }
.legal-item:hover { color: var(--primary); padding-left: 30px; }

/* MODAL */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.95); display: none; z-index: 2000; justify-content: center; align-items: center; padding: 20px; }
.modal-overlay.active { display: flex; }
.modal-box { background: var(--card); width: 100%; max-width: 850px; height: 85vh; border-radius: 35px; padding: 40px; overflow-y: auto; border: 1px solid rgba(59,130,246,0.2); }
.modal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.close-btn { background: #ef4444; border: none; color: #fff; width: 45px; height: 45px; border-radius: 50%; cursor: pointer; transition: 0.3s; }
.p-card { background: rgba(255,255,255,0.03); padding: 25px; border-radius: 20px; margin-bottom: 15px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.btn-copy { background: var(--primary); border: none; color: #fff; width: 50px; height: 50px; border-radius: 15px; cursor: pointer; flex-shrink: 0; transition: 0.2s; }
.btn-copy:hover { transform: scale(1.1); }

/* MOBILE */
@media (max-width: 768px) {
    .cursor-dot, .cursor-outline { display: none; }
    .about-container { grid-template-columns: 1fr; }
    h1 { font-size: 2.8rem; }
}