* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f0f10, #1b1b1f);
    color: #fff;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.menu a {
    margin-left: 20px;
    color: #ccc;
    text-decoration: none;
    transition: 0.2s;
}

.menu a:hover {
    color: #fff;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0.8;
}

/* Glow Button */
.glow-btn {
    background: #4c8bff;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    color: #fff;
    box-shadow: 0 0 15px #4c8bff;
    transition: 0.25s ease-in-out;
}

.glow-btn:hover {
    box-shadow: 0 0 25px #4c8bff, 0 0 40px #4c8bff;
    transform: translateY(-3px);
}

/* Fade Animation */
.fade {
    opacity: 0;
    animation: fadeIn 1.2s forwards ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    opacity: 0.6;
}
