body {
    margin: 0;
    padding: 0;
    background: #0d0f12;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

/* TOP NAV */
.topnav {
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0d0f12;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

.logo {
    font-size: 1.4rem;
    font-weight: bold;
    color: #4da3ff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 32px;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #4da3ff;
    font-weight: bold;
}

.nav-btn {
    padding: 8px 18px;
    border: 2px solid #4da3ff;
    border-radius: 6px;
}

.nav-btn:hover {
    background: #4da3ff;
    color: black;
}

/* HERO */
.hero {
  background: url("assets/bg.jpg") no-repeat center center fixed;
  background-size: cover;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.glow {
    color: #4da3ff;
    text-shadow: 0 0 10px #4da3ff, 0 0 20px #4da3ff;
    animation: glowPulse 2.5s infinite ease-in-out;
}

@keyframes glowPulse {
    0% { text-shadow: 0 0 10px #4da3ff; }
    50% { text-shadow: 0 0 25px #4da3ff; }
    100% { text-shadow: 0 0 10px #4da3ff; }
}

.tagline {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 40px;
}

/* FEATURES */
.features {
    margin-top: 80px;
    padding: 40px;
}

.features h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.feature-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature {
    background: #111318;
    padding: 25px;
    width: 260px;
    border-radius: 10px;
    border: 1px solid #1f242d;
}

.feature img {
    width: 60px;
    margin-bottom: 15px;
}

.feature h3 {
    color: #4da3ff;
}

/* PRICING */
.pricing {
    margin-top: 80px;
    padding: 40px;
}

.pricing h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.plans {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.plan {
    background: #111318;
    padding: 25px;
    width: 260px;
    border-radius: 10px;
    border: 1px solid #1f242d;
}

.plan h3 {
    color: #4da3ff;
}

.price {
    font-size: 1.6rem;
    margin: 10px 0;
}

.plan ul {
    list-style: none;
    padding: 0;
}

.plan li {
    margin: 8px 0;
    opacity: 0.8;
}

.popular {
    border: 2px solid #4da3ff;
}

/* FOOTER */
footer {
    margin-top: 120px;
    padding: 20px;
    opacity: 0.5;
    font-size: 0.9rem;
}
