/* General Dark Theme */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #121212;
    color: #eaeaea;
    line-height: 1.6;
}

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

body {
    background: #121212;
    color: #f1f1f1;
    font-family: 'Inter', sans-serif;
}

/* Main content should grow, pushing footer down */
main {
    flex: 1;
}


/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #1e1e1e;
    box-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.logo {
    height: 35px;
    margin-right: 10px;
}
.brand {
    font-size: 1.2rem;
    font-weight: bold;
}

.nav-left {
    display: flex;
    align-items: center; /* vertically centers them */
    gap: 8px; /* optional: space between logo and text */
}


.nav-right .nav-btn {
    margin-left: 20px;
    text-decoration: none;
    color: #eaeaea;
    padding: 8px 16px;
    border-radius: 8px;
    transition: background 0.3s;
}
.nav-right .nav-btn:hover {
    background: #333;
}
.nav-right .highlight {
    background: #3a86ff;
    color: white;
}
.nav-right .highlight:hover {
    background: #1e5ecf;
}

/* Hero */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(145deg, #1f1f1f, #2a2a2a);
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}
.cta-btn {
    background: #06d6a0;
    color: #fff;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.3s;
}
.cta-btn:hover {
    background: #049f75;
}

/* Info Section */
.info {
    max-width: 800px;
    margin: 60px auto;
    text-align: center;
    padding: 0 20px;
}
.info h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

/* Features */
.features {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
}
.features h2 {
    text-align: center;
    margin-bottom: 40px;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.feature-card {
    background: #1e1e1e;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transition: transform 0.3s;
}
.feature-card:hover {
    transform: translateY(-5px);
}


.footer {
    text-align: center;
    padding: 20px;
    background: #1e1e1e;
    margin-top: 50px;
    font-size: 0.9rem;
    color: #aaa;
}

.legal-links {
    margin-top: 10px;
}

.legal-links a {
    color: #888;
    margin: 0 12px;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: #fff;
}

/* Auth Pages */
.auth-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 30px;
    background: #1e1e1e;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    text-align: center;
}

.auth-container h2 {
    margin-bottom: 20px;
}

.auth-container form {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.auth-container label {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.auth-container input {
    padding: 12px;
    margin-bottom: 20px;
    border: none;
    border-radius: 10px;
    background: #2a2a2a;
    color: #eaeaea;
}

.auth-container input:focus {
    outline: 2px solid #3a86ff;
}

.turnstile-placeholder {
    margin: 15px 0;
    display: flex;
    justify-content: center;
}

.auth-btn {
    background: #3a86ff;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.auth-btn:hover {
    background: #1e5ecf;
}
