@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;900&display=swap');

:root {
    --neon-cyan: #00f2ff;
    --neon-orange: #ff4d00;
    --neon-purple: #bc13fe;
    --neon-gold: #ffcc00;
    --whatsapp-green: #25D366;
    --bg-dark: #020205;
}

body {
    background-color: var(--bg-dark);
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

/* --- THE NEON COMMAND CENTER TITLE --- */
.main-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 12px;
    margin: 40px 0;
    color: #fff;
    text-shadow: 0 0 15px var(--neon-cyan), 0 0 30px var(--neon-cyan);
}

/* --- HIGH-END NAVIGATION BUTTONS --- */
.nav-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 20px;
}

.high-end-btn {
    padding: 18px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--neon-cyan);
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 2px;
    transition: 0.4s;
    clip-path: polygon(15% 0, 100% 0, 100% 70%, 85% 100%, 0 100%, 0 30%);
    box-shadow: inset 0 0 10px rgba(0, 242, 255, 0.2);
}

.high-end-btn:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 40px var(--neon-cyan);
    transform: translateY(-5px);
}

/* --- THE FLOATING COMMANDS (WHATSAPP & CALL) --- */
.contact-floats {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2000;
}

.float-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
    color: white;
    transition: 0.5s;
    border: 2px solid rgba(255,255,255,0.3);
    animation: floatPulse 2s infinite ease-in-out;
}

@keyframes floatPulse {
    0% { transform: scale(1); box-shadow: 0 0 10px var(--glow); }
    50% { transform: scale(1.1); box-shadow: 0 0 30px var(--glow); }
    100% { transform: scale(1); box-shadow: 0 0 10px var(--glow); }
}

.wa-float { --glow: var(--whatsapp-green); background: var(--whatsapp-green); }
.call-float { --glow: var(--neon-cyan); background: var(--neon-cyan); }

/* --- INDUSTRIAL FOOTER --- */
.master-footer {
    background: #000;
    border-top: 2px solid var(--neon-cyan);
    padding: 50px 20px;
    margin-top: 80px;
    text-align: center;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 { color: var(--neon-cyan); margin-bottom: 20px; font-size: 1.2rem; }
.footer-section p, .footer-section a { color: #888; text-decoration: none; line-height: 1.8; transition: 0.3s; }
.footer-section a:hover { color: #fff; text-shadow: 0 0 10px #fff; }

.ads-space {
    width: 100%;
    max-width: 728px;
    min-height: 90px;
    background: rgba(255,255,255,0.02);
    border: 1px dashed #333;
    margin: 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
}