/* --- FONTS --- */
@font-face {
    font-family: 'NowAlt';
    src: url('font/NowAlt-Black.otf') format('opentype');
}

/* --- THE CORE LOOK --- */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: aliceblue;
    overflow-x: hidden;
    padding-top: 80px;
}

body::before {
    content: "";
    position: fixed; 
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(0, 240, 255, 0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0, 240, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
}

/* --- AUTH BUTTON --- */
#auth-zone { position: absolute; top: 20px; right: 20px; }

.register {
    background: #00f0ff;
    color: #000;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: bold;
    font-family: 'NowAlt', sans-serif;
    cursor: pointer;
    transition: 0.3s;
    font-size: 13px;
}

/* --- THE GLOBAL FOOTER --- */
.info-box {
    margin-top: auto; 
    width: 100%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.03); 
    border: 1px solid rgba(0, 240, 255, 0.1); 
    border-bottom: none;
    border-radius: 24px 24px 0 0;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(8px);
}


.secondary-btn {
    background: transparent;
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: #00f0ff;
    padding: 10px 25px;
    font-size: 13px;
    border-radius: 30px;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
    font-family: 'NowAlt', sans-serif;
}

/* --- THE HORIZONTAL FOOTER FIX --- */
.footer-links {
    display: flex;
    flex-direction: row; /* Forces horizontal line */
    align-items: center;
    justify-content: center;
    gap: 30px; /* Space between the button and the links */
    margin-top: 20px;
}

.secondary-btn {
    background: transparent;
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: #00f0ff;
    padding: 8px 20px; /* Slimmer for the horizontal row */
    font-size: 12px;
    border-radius: 30px;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
    font-family: 'NowAlt', sans-serif;
    white-space: nowrap; /* Prevents text from wrapping to 2 lines */
}

/* Keeps Q&A and How it Works grouped together */
.link-row {
    display: flex;
    gap: 20px;
    align-items: center;
    opacity: 0.6;
}

.link-row a {
    color: aliceblue;
    font-size: 13px;
    text-decoration: none;
}

.divider { color: rgba(255, 255, 255, 0.1); }