/* Global Styles */
body {
    background-color: #0a0a0a;
    color: #e0e0e0;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Glassmorphism Navbar */
.glass-nav {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: radial-gradient(circle at center, #1a1a2e 0%, #000000 100%);
    position: relative;
}

.glow-text {
    text-shadow: 0 0 20px rgba(13, 110, 253, 0.6);
}

/* Feature Cards */
.feature-card {
    background: #161616;
    border: 1px solid #333;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.2);
    border-color: #0d6efd;
}

/* Pricing Cards */
.price-card {
    background: #111;
    border-radius: 20px;
    border: 1px solid #333;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.price-card:hover {
    transform: scale(1.05);
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 15px 0;
}

.featured {
    background: linear-gradient(145deg, #111 0%, #0d2a4d 100%);
    border: 2px solid #0d6efd;
}

/* Glow Button */
.glow-btn {
    box-shadow: 0 0 15px rgba(13, 110, 253, 0.4);
    transition: all 0.3s ease;
}

.glow-btn:hover {
    box-shadow: 0 0 25px rgba(13, 110, 253, 0.8);
    transform: scale(1.05);
}

/* Setup Box */
.setup-box {
    background: #1a1a1a;
    border-radius: 15px;
    border: 1px solid #444;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}
