:root {
    --bg-color: #000000;
    --text-primary: #ffffff;
    --text-secondary: #aaaaaa;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow: hidden; /* No scrollable website */
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    position: relative;
    
    /* Beautiful Mesh Gradient replicating the glowing aesthetic in the image */
    background: 
        radial-gradient(circle at 15% 65%, rgba(204, 153, 51, 0.4) 0%, transparent 45%),
        radial-gradient(circle at 85% 65%, rgba(126, 60, 200, 0.4) 0%, transparent 45%),
        radial-gradient(circle at 50% 100%, rgba(50, 100, 255, 0.1) 0%, transparent 60%);
    background-color: #07070a;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 1px;
}
.logo i {
    font-style: normal;
    font-size: 1.6rem;
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffffff;
}

/* Styled exactly like the image's "Sign up" button */
.register-btn {
    text-decoration: none;
    color: #ffffff;
    background: transparent;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 400;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.register-btn:hover {
    background: #ffffff;
    color: #000000;
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center; /* Makes everything centered */
    justify-content: center; /* Centers vertically */
    text-align: center;
    padding: 0 5%;
    z-index: 10;
}

.pill-badge {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.hero-heading {
    font-size: 5.5rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    color: #ffffff;
    max-width: 800px;
}

.hero-subheading {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 500px;
    line-height: 1.5;
}

/* QR Code Area - Not Centered, explicitly positioned Bottom Left */
.qr-container {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: transparent; /* Clean transparent look */
    padding: 1rem;
    z-index: 20;
}

.qr-text-block {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    text-align: left;
}

.qr-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.qr-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.qr-placeholder {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 8px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-placeholder img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    object-fit: cover;
}

@media (max-width: 968px) {
    .nav-links { display: none; }
    .hero-heading { font-size: 3.5rem; }
    .qr-container { bottom: 20px; left: 20px; }
}

@media (max-width: 600px) {
    .navbar { padding: 1.5rem 5%; }
    .logo { font-size: 1.2rem; }
    .register-btn { padding: 0.4rem 1rem; font-size: 0.8rem; }
    .hero-heading { font-size: 2.5rem; }
    .hero-subheading { font-size: 1rem; }
    .qr-container { 
        bottom: 10px; 
        left: 10px; 
        transform: scale(0.85); 
        transform-origin: bottom left;
    }
}
