/* All styles from the inline <style> block in waiting-list.html */
:root {
    --bg-color: #010409;
    --bg-color-light: #0d1117;
    --text-light: #E6EDF3;
    --text-dark: #8b949e;
    --accent-cyan: #00E5FF;
    --accent-glow: rgba(0, 229, 255, 0.4);
    --panel-border: rgba(0, 229, 255, 0.2);
    --green: #1AF7AF;
    --red: #F73A8E;
    --purple: #9f70fd;
}
* {
    box-sizing: border-box;
}
body {
    background-color: var(--bg-color);
    color: var(--text-light);
    font-family: 'Exo 2', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: 
        radial-gradient(ellipse at 50% 0%, rgba(0, 229, 255, 0.1), transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(51, 198, 242, 0.1), transparent 50%);
    background-attachment: fixed;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}
header {
    text-align: center;
    padding: 3rem 0 2rem;
}
h1 {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(to bottom, var(--text-light) 60%, #b0c4de);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 25px var(--accent-glow), 0 0 50px rgba(0, 229, 255, 0.2);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}
.subtitle {
    font-size: 1.5rem;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}
.hero {
    text-align: center;
    padding: 2rem 0 4rem;
}
.form-container {
    max-width: 500px;
    margin: 2rem auto;
    padding: 2.5rem;
    border: 1px solid var(--panel-border);
    border-radius: 1rem;
    background: rgba(13, 17, 23, 0.7);
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.15);
    position: relative;
    overflow: hidden;
}
.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    animation: gradient-slide 3s linear infinite;
}
.form-group {
    margin-bottom: 1.5rem;
}
label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}
input {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--panel-border);
    border-radius: 0.5rem;
    background: rgba(13, 17, 23, 0.6);
    color: var(--text-light);
    font-family: 'Roboto Mono', monospace;
    font-size: 1rem;
    transition: all 0.3s ease;
}
input:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px var(--accent-glow);
}
button {
    background: linear-gradient(45deg, var(--accent-cyan), #00a8ff);
    color: var(--bg-color);
    padding: 1rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    width: 100%;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px var(--accent-glow), inset 0 0 10px rgba(255, 255, 255, 0.3);
}
button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px var(--accent-cyan), 0 0 35px var(--accent-cyan), inset 0 0 20px rgba(255, 255, 255, 0.8);
}
button:disabled {
    background: var(--text-dark);
    transform: none;
    box-shadow: none;
    cursor: not-allowed;
}
.notification {
    padding: 1rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
    text-align: center;
    display: none;
    animation: fadeIn 0.5s ease;
}
.notification.success {
    background: rgba(26, 247, 175, 0.2);
    border: 1px solid #1AF7AF;
    color: #1AF7AF;
    display: block;
}
.notification.error {
    background: rgba(247, 58, 142, 0.2);
    border: 1px solid #F73A8E;
    color: #F73A8E;
    display: block;
}
.notification.info {
    background: rgba(0, 229, 255, 0.2);
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    display: block;
}
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}
.feature-card {
    border: 1px solid var(--panel-border);
    border-radius: 1rem;
    padding: 2rem;
    background: rgba(13, 17, 23, 0.6);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--purple));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}
.feature-card:hover::before {
    transform: scaleX(1);
}
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-cyan);
}
.feature-card p {
    color: var(--text-dark);
    line-height: 1.6;
}
footer {
    text-align: center;
    padding: 3rem 0 2rem;
    margin-top: auto;
    color: var(--text-dark);
}
nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}
a {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}
a:hover {
    background: rgba(0, 229, 255, 0.1);
    transform: translateY(-2px);
}
.cta-section {
    text-align: center;
    padding: 4rem 0;
    background: rgba(13, 17, 23, 0.5);
    border-radius: 2rem;
    margin: 3rem 0;
    border: 1px solid var(--panel-border);
}
.cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
    text-shadow: 0 0 15px var(--accent-glow);
}
.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}
.stats-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px var(--accent-glow);
}
.stat-label {
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
}
@keyframes gradient-slide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}
.floating {
    animation: float 6s ease-in-out infinite;
}
.delay-1 {
    animation-delay: 0.5s;
}
.delay-2 {
    animation-delay: 1s;
}
.delay-3 {
    animation-delay: 1.5s;
}
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
        margin-bottom: 0.75rem;
    }
    .subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    .container {
        padding: 1rem;
    }
    .form-container {
        padding: 1.5rem;
        margin: 1rem auto;
        border-radius: 0.75rem;
    }
    .form-group {
        margin-bottom: 1.25rem;
    }
    label {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }
    input {
        padding: 0.85rem;
        font-size: 0.95rem;
    }
    button {
        padding: 0.85rem;
        font-size: 1rem;
    }
    .notification {
        padding: 0.85rem;
        font-size: 0.9rem;
    }
    .features {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin: 2rem 0;
    }
    .feature-card {
        padding: 1.5rem;
        border-radius: 0.75rem;
    }
    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    .feature-card p {
        font-size: 0.95rem;
    }
    .feature-icon {
        font-size: 2.2rem;
        margin-bottom: 0.85rem;
    }
    footer {
        padding: 2rem 1rem 1.5rem;
    }
    nav {
        flex-direction: column;
        gap: 0.75rem;
    }
    a {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    .cta-section {
        padding: 1.5rem 1rem;
        margin: 2rem 0;
        border-radius: 1rem;
    }
    .cta-title {
        font-size: 1.7rem;
        margin-bottom: 0.75rem;
    }
    .cta-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    .stats-container {
        gap: 1.25rem;
        margin: 2rem 0;
    }
    .stat-item {
        padding: 0.5rem;
    }
    .stat-number {
        font-size: 2.2rem;
        margin-bottom: 0.4rem;
    }
    .stat-label {
        font-size: 0.8rem;
    }
    header {
        padding: 2rem 0 1.5rem;
    }
    .hero {
        padding: 1.5rem 0 2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    .subtitle {
        font-size: 1rem;
    }
    .container {
        padding: 0.75rem;
    }
    .form-container {
        padding: 1.25rem;
        margin: 0.75rem auto;
    }
    .form-group {
        margin-bottom: 1rem;
    }
    label {
        font-size: 0.8rem;
    }
    input {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    button {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
    .notification {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    .feature-card {
        padding: 1.25rem;
    }
    .feature-card h3 {
        font-size: 1.2rem;
    }
    .feature-card p {
        font-size: 0.9rem;
    }
    .feature-icon {
        font-size: 2rem;
    }
    nav {
        gap: 0.5rem;
    }
    a {
        padding: 0.5rem;
        font-size: 0.85rem;
    }
    .cta-section {
        padding: 1.25rem 0.75rem;
        margin: 1.5rem 0;
    }
    .cta-title {
        font-size: 1.5rem;
    }
    .cta-subtitle {
        font-size: 0.95rem;
    }
    .stats-container {
        gap: 1rem;
    }
    .stat-number {
        font-size: 2rem;
    }
    .stat-label {
        font-size: 0.75rem;
    }
}

/* Back to Home button style */
.back-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid var(--panel-border);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    color: var(--accent-cyan);
    text-decoration: none;
}
.back-link:hover {
    background: rgba(0, 229, 255, 0.2);
    text-decoration: none;
    transform: translateX(-5px);
}