@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Rajdhani:wght@500;700&display=swap');

:root {
    --primary: #ff4655;
    --gold: #ffb800;
    --dark-bg: #0a0a0c;
    --card-bg: #16161a;
    --glow: 0 0 15px rgba(255, 70, 85, 0.5);
}

body {
    background-color: var(--dark-bg);
    color: white;
    font-family: 'Rajdhani', sans-serif;
    margin: 0;
    padding-bottom: 80px; /* Space for mobile nav */
    overflow-x: hidden;
}

/* Glowing Logo & Profile */
.glow-border {
    border: 2px solid var(--primary);
    box-shadow: var(--glow);
    border-radius: 50%;
}

.premium-card {
    background: linear-gradient(145deg, #1e1e24, #16161a);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Floating Buttons */
.float-btn {
    position: fixed;
    right: 20px;
    z-index: 999;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.whatsapp-float {
    bottom: 90px;
    background: #25d366;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
    animation: pulse-green 2s infinite;
}

.theme-float {
    bottom: 25px;
    background: var(--primary);
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .container { width: 95%; margin: auto; }
    h1 { font-size: 1.5rem; }
}