:root {
    --primary: #6B4DE6;
    --secondary: #15132B;
    --accent: #FF6B6B;
    --light: #F8F9FA;
    --dark: #212529;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
}

.topbar {
    background-color: var(--secondary);
    font-size: 0.9rem;
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #5A41C5;
    border-color: #5A41C5;
}

.hero-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
}

.subtitle {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.hero-section h1 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    color: #4A4A4A;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.feature-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
}

.notice-card {
    background: linear-gradient(135deg, var(--secondary) 0%, #1A1832 100%);
    border-radius: 15px;
    color: white;
}

.age-icon {
    width: 80px;
    height: 80px;
}

.step-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 auto;
}

.about-us {
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
}

.draw-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.draw-details {
    background: var(--light);
    border-radius: 10px;
}

.disclaimer-card {
    background: var(--light);
    border-radius: 15px;
    border-left: 5px solid var(--primary);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px !important;
    overflow: hidden;
}

.accordion-button {
    background: var(--light);
    border: none;
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    background: var(--primary);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

.footer {
    background-color: var(--secondary);
    color: white;
}

.footer-cert {
    height: 40px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-cert:hover {
    opacity: 1;
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links {
    margin: 2rem 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.contact-form, .join-form {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(107, 77, 230, 0.1);
}

.alert-success {
    background-color: #d1fae5;
    border-color: #34d399;
    color: #065f46;
    border-radius: 8px;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

@media (max-width: 991.98px) {
    .hero-section {
        text-align: center;
        padding: 3rem 0;
    }
    
    .hero-section img {
        margin-top: 2rem;
    }
    
    .about-us {
        text-align: center;
    }
    
    .about-us img {
        margin-top: 2rem;
    }

    .footer-links a {
        display: block;
        margin: 0.5rem 0;
    }
}
