* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: radial-gradient(circle at center, #6a1b9a 0%, #2e005e 100%);
    background-attachment: fixed;
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 10%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a.active, .nav-links a:hover {
    color: #ffcc00;
}

.badge {
    font-size: 0.7rem;
    background: #ff4400;
    padding: 2px 8px;
    border-radius: 10px;
    vertical-align: middle;
}

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.content-box {
    z-index: 10;
    max-width: 800px;
    padding: 2rem;
}

.main-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.highlight {
    color: #ffcc00;
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.4);
}

.description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* The Register Button */
.register-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #ffcc00;
    color: #2e005e;
    text-decoration: none;
    font-weight: 900;
    border-radius: 50px;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.register-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 204, 0, 0.5);
    background: #ffd633;
}

/* Background Decorations */
.bg-circles .circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    z-index: 1;
}

.c1 { width: 400px; height: 400px; top: -100px; left: -100px; }
.c2 { width: 300px; height: 300px; bottom: -50px; right: 10%; border: 2px solid rgba(255, 255, 255, 0.05); }



/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .main-title {
        font-size: 3rem; /* Smaller text for mobile */
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: -400px; /* Hidden by default */
        left: 0;
        background: rgba(46, 0, 94, 0.95);
        backdrop-filter: blur(15px);
        transition: all 0.5s ease;
        text-align: center;
        padding: 2rem 0;
        border-bottom: 2px solid #ffcc00;
        z-index: 99;
    }

    .nav-links.active {
        top: 80px; /* Slides down when active */
    }

    .nav-links li {
        padding: 1.5rem;
    }

    /* Hamburger Animation */
    .menu-toggle {
        display: block;
        cursor: pointer;
    }

    .menu-toggle .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: white;
    }

    /* Animate Hamburger to X */
    #mobile-menu.is-active .bar:nth-child(2) { opacity: 0; }
    #mobile-menu.is-active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    #mobile-menu.is-active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* Hide desktop-specific elements if needed */
@media screen and (min-width: 769px) {
    .menu-toggle { display: none; }
    .mobile-only { display: none; }
}