* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #000000;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(72, 72, 72, 0.3);
    border-bottom: 2px solid #556B2F;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    color: #556B2F;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(85, 107, 47, 0.3);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #556B2F;
    transform: translateY(-2px);
}

.login-btn {
    background: #556B2F;
    color: #ffffff !important;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    border: 1px solid #6B8E23;
    font-weight: bold;
    transition: all 0.3s;
}

.login-btn:hover {
    background: #6B8E23;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 142, 35, 0.3);
}

/* Flash Messages */
.flash-messages {
    margin-top: 80px;
}

.flash {
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 4px;
    border-left: 4px solid;
    background: #1a1a1a;
    color: #ffffff;
}

.flash.success {
    border-left-color: #556B2F;
    background: #2a2a2a;
}

.flash.error {
    border-left-color: #8B0000;
    background: #2a2a2a;
}

.flash.warning {
    border-left-color: #8B8000;
    background: #2a2a2a;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 120px 0 80px;
    text-align: center;
    border-bottom: 1px solid #556B2F;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #cccccc;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
    font-weight: bold;
}

.btn-primary {
    background: #556B2F;
    color: #ffffff;
    border: 1px solid #6B8E23;
}

.btn-primary:hover {
    background: #6B8E23;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 142, 35, 0.3);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #1a1a1a;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #000000;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: all 0.3s;
    border: 1px solid #333;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #556B2F;
    box-shadow: 0 8px 20px rgba(85, 107, 47, 0.2);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: #ffffff;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card p {
    line-height: 1.5;
    color: #cccccc;
}

/* Beta Signup Section */
.beta-section {
    padding: 80px 0;
    background: #000000;
}

.beta-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: #ffffff;
}

.beta-section > .container > p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #cccccc;
}

.beta-form {
    max-width: 600px;
    margin: 0 auto;
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    border: 1px solid #333;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #ffffff;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #333;
    border-radius: 4px;
    font-size: 1rem;
    background: #000000;
    color: #ffffff;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #556B2F;
    box-shadow: 0 0 0 2px rgba(85, 107, 47, 0.25);
}

.form-group select option {
    background: #000000;
    color: #ffffff;
}

.direct-contact {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: #1a1a1a;
    border-radius: 4px;
    border: 1px solid #333;
}

.direct-contact p {
    color: #cccccc;
}

.direct-contact a {
    color: #556B2F;
    text-decoration: none;
}

.direct-contact a:hover {
    color: #6B8E23;
    text-decoration: underline;
}

/* Checkbox Group Styles */
.checkbox-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s;
    color: #ffffff;
}

.checkbox-label:hover {
    background-color: #2a2a2a;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.75rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #556B2F;
}

/* Terms Checkbox Styling */
.terms-checkbox {
    background: #1a1a1a;
    padding: 1rem;
    border-radius: 4px;
    border: 1px solid #333;
    margin-top: 1rem;
}

.terms-checkbox a {
    color: #556B2F;
    text-decoration: none;
    font-weight: bold;
}

.terms-checkbox a:hover {
    color: #6B8E23;
    text-decoration: underline;
}

/* Form validation styling */
input:invalid, textarea:invalid, select:invalid {
    border-color: #8B0000 !important;
}

input:valid, textarea:valid, select:valid {
    border-color: #333 !important;
}

/* Footer */
.footer {
    background: #000000;
    color: #ffffff;
    padding: 3rem 0 1rem;
    border-top: 2px solid #556B2F;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #556B2F;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #556B2F;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Privacy and Terms Page Styles */
.page-header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 140px 0 60px;
    text-align: center;
    border-bottom: 1px solid #556B2F;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.page-header p {
    font-size: 1.2rem;
    color: #cccccc;
}

.privacy-content, .terms-content {
    padding: 80px 0;
    background: #000000;
}

.content-section {
    max-width: 800px;
    margin: 0 auto;
}

.content-section h2 {
    color: #556B2F;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    border-bottom: 2px solid #333;
    padding-bottom: 0.5rem;
}

.content-section h3 {
    color: #ffffff;
    margin: 2rem 0 1rem 0;
    font-size: 1.3rem;
}

.content-section p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-section ul {
    color: #cccccc;
    margin: 1rem 0 2rem 2rem;
}

.content-section li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.content-section strong {
    color: #ffffff;
}

.content-section a {
    color: #556B2F;
    text-decoration: none;
}

.content-section a:hover {
    color: #6B8E23;
    text-decoration: underline;
}