* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: white;
    overflow-x: hidden;
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(to right, #a18cd1, #fbc2eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 400;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #a18cd1;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 8%;
    flex-wrap: wrap;
}

.hero-text {
    max-width: 600px;
}

.hero-text h2 {
    font-size: 45px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    color: #dcdcdc;
    margin-bottom: 30px;
}

/* Buttons */
.buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.btn-primary {
    background: linear-gradient(to right, #a18cd1, #fbc2eb);
    color: #111;
}

.btn-primary:hover {
    transform: scale(1.05);
}

.btn-secondary {
    border: 2px solid #a18cd1;
    color: white;
}

.btn-secondary:hover {
    background: #a18cd1;
    color: #111;
}

/* Glass Card */
.glass-card {
    width: 380px;
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin-top: 20px;
}

.glass-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
    color: #fbc2eb;
}

.glass-card ul {
    list-style: none;
}

.glass-card ul li {
    margin-bottom: 12px;
    font-size: 16px;
}

/* Features Section */
.features {
    padding: 80px 8%;
    text-align: center;
}

.features h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

.feature-boxes {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    width: 280px;
    border-radius: 15px;
    transition: 0.3s;
}

.feature:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.feature h4 {
    margin-bottom: 15px;
    color: #a18cd1;
}

.feature p {
    font-size: 14px;
    color: #ccc;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    margin-top: 50px;
    background: rgba(0, 0, 0, 0.3);
    font-size: 14px;
    color: #bbb;
}

/* Responsive */
@media(max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .buttons {
        justify-content: center;
    }

    .glass-card {
        width: 100%;
        max-width: 400px;
    }
}

/* REGISTER PAGE */
.register-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
        }

        .register-box {
            width: 400px;
            padding: 40px;
            border-radius: 20px;
            backdrop-filter: blur(15px);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .register-box h2 {
            text-align: center;
            margin-bottom: 25px;
        }

        .input-group {
            margin-bottom: 18px;
        }

        .input-group input,
        .input-group select {
            width: 100%;
            padding: 10px;
            border-radius: 8px;
            border: none;
            outline: none;
        }

        .register-btn {
            width: 100%;
            padding: 12px;
            border-radius: 30px;
            border: none;
            background: linear-gradient(to right, #a18cd1, #fbc2eb);
            font-weight: 600;
            cursor: pointer;
            margin-top: 10px;
        }

        .login-link {
            text-align: center;
            margin-top: 15px;
        }

        .login-link a {
            color: #fbc2eb;
            text-decoration: none;
        }

/* LEARN MORE */
  .learn-container {
            padding: 80px 8%;
            max-width: 1100px;
            margin: auto;
        }

        .learn-container h2 {
            text-align: center;
            margin-bottom: 40px;
            font-size: 38px;
            color: #00ffb3;
        }

        .info-section {
            margin-bottom: 40px;
            background: rgba(0, 255, 179, 0.08);
            padding: 30px;
            border-radius: 18px;
            border: 1px solid rgba(0, 255, 179, 0.2);
        }

        .info-section h3 {
            margin-bottom: 15px;
            color: #00ffb3;
        }

        .info-section p {
            line-height: 1.6;
            color: #d1fae5;
        }

        .back-btn {
            display: inline-block;
            margin-top: 30px;
            padding: 12px 28px;
            border-radius: 30px;
            background: #00ffb3;
            color: #00332e;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
        }

        .back-btn:hover {
            box-shadow: 0 0 15px #00ffb3;
        }

 /* LOGIN PAGE */

.login-container {
height: 90vh;
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
}

.login-box {
width: 400px;
padding: 40px;
border-radius: 20px;
backdrop-filter: blur(15px);
background: rgba(255, 255, 255, 0.08);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
animation: fadeIn 0.8s ease-in-out;
}

.login-box h2 {
text-align: center;
margin-bottom: 10px;
}

.login-subtext {
text-align: center;
font-size: 14px;
color: #ccc;
margin-bottom: 25px;
}

.login-box label {
font-size: 14px;
display: block;
margin-bottom: 6px;
color: #ddd;
}

.login-box input {
width: 100%;
padding: 12px;
border-radius: 8px;
border: none;
outline: none;
margin-bottom: 15px;
background: rgba(255,255,255,0.15);
color: white;
}

.login-box input::placeholder {
color: #bbb;
}

.remember-forgot {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 13px;
margin-bottom: 20px;
}

.remember input {
margin-right: 5px;
}

.remember-forgot a {
text-decoration: none;
color: #a18cd1;
}

.remember-forgot a:hover {
text-decoration: underline;
}

.login-btn {
width: 100%;
padding: 12px;
border-radius: 30px;
border: none;
background: linear-gradient(to right, #a18cd1, #fbc2eb);
font-weight: 600;
cursor: pointer;
transition: 0.3s ease;
}

.login-btn:hover {
transform: scale(1.05);
}

.register-link {
text-align: center;
margin-top: 15px;
font-size: 14px;
}

.register-link a {
color: #fbc2eb;
text-decoration: none;
}

.register-link a:hover {
text-decoration: underline;
}

/* Simple Fade Animation */
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

/* FEATURES PAGE */

.features-hero {
text-align: center;
padding: 80px 8% 40px;
}

.features-hero h2 {
font-size: 40px;
margin-bottom: 15px;
}

.features-hero p {
color: #ccc;
font-size: 16px;
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
padding: 60px 8%;
}

.feature-card {
padding: 30px;
border-radius: 18px;
background: rgba(255, 255, 255, 0.06);
backdrop-filter: blur(10px);
box-shadow: 0 8px 20px rgba(0,0,0,0.25);
transition: 0.3s ease;
}

.feature-card:hover {
transform: translateY(-8px);
background: rgba(255, 255, 255, 0.12);
}

.feature-card h3 {
margin-bottom: 15px;
color: #fbc2eb;
}

.feature-card p {
font-size: 14px;
color: #ddd;
line-height: 1.6;
}

.features-cta {
text-align: center;
padding: 60px 8%;
}

.features-cta h3 {
margin-bottom: 20px;
font-size: 24px;
}