/* src/css/style.css */
body {
    background-color: #020617;
    color: #94A3B8;
    position: relative;
}

/* Futuristic Ambient Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 10% 10%, rgba(0, 240, 255, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(176, 38, 255, 0.03) 0%, transparent 40%);
    z-index: -1;
    pointer-events: none;
}

/* Gradients and Dividers */
.gradient-line {
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, transparent, #00F0FF, #B026FF, transparent);
    margin: 40px 0;
}

.gradient-short {
    height: 4px;
    width: 80px;
    background-color: #B026FF;
    margin: 0 auto 20px auto;
}

/* Glassmorphism Cards */
.glass-card {
    background-color: #0F172A;
    border: 1px solid #1E293B;
    border-radius: 8px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: #00F0FF;
    box-shadow: 0 10px 30px -10px rgba(0, 240, 255, 0.1);
}

/* Typography & Glow Effects */
h1, h2, h3, h4 { font-family: 'Orbitron', sans-serif; letter-spacing: 1px; color: #E2E8F0; }
.text-cyan-glow { color: #00F0FF; text-shadow: 0 0 10px rgba(0, 240, 255, 0.3); }
.text-purple-glow { color: #B026FF; text-shadow: 0 0 10px rgba(176, 38, 255, 0.3); }

/* Custom Bullet Points */
.custom-bullet li { position: relative; padding-left: 25px; margin-bottom: 12px; }
.custom-bullet li::before { content: '▹'; color: #B026FF; position: absolute; left: 0; top: 0; font-size: 18px; line-height: 1.6; }

/* Buttons */
.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    border: 1px solid #00F0FF;
    border-radius: 4px;
    color: #00F0FF;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}