/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: white;
    background: linear-gradient(135deg, #0f172a 0%, #581c87 50%, #0f172a 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Background Pattern */
.bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 4rem 0 6rem;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.hero-text {
    space-y: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
}

.gradient-text {
    background: linear-gradient(to right, #ffffff, #e9d5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.benefits {
    margin-bottom: 2rem;
}

.benefits-intro {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.benefits-list {
    list-style: none;
    space-y: 0.5rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.bullet {
    width: 0.5rem;
    height: 0.5rem;
    background: #10b981;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Logo */
.hero-logo {
    display: flex;
    justify-content: center;
}

.logo-container {
    position: relative;
}

.logo-circle {
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    background: linear-gradient(45deg, #8b5cf6, #ec4899, #10b981);
    padding: 4px;
    position: relative;
    z-index: 2;
}

.logo-inner {
    width: 100%;
    height: 101%;
    border-radius: 50%;
    background: ;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    text-align: center;
}

.logo-main {
    width: 100%;


}

.logo-sub {
    font-size: 1.25rem;
    font-weight: 600;
    color: #a855f7;
}

.logo-glow {
    position: absolute;
    inset: -1rem;
    background: linear-gradient(45deg, #8b5cf6, #ec4899, #10b981);
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(20px);
    animation: pulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.05);
    }
}

/* Buttons */
.cta-button, .submit-button {
    background: linear-gradient(45deg, #10b981, #059669);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.75rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.cta-button:hover, .submit-button:hover {
    background: linear-gradient(45deg, #059669, #047857);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

/* Requirements Section */
.requirements {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: white;
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.requirement-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.requirement-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
    width: 100%;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.requirement-card:hover .card-icon {
    transform: scale(1.1);
}

.pink-gradient { background: linear-gradient(45deg, #ec4899, #be185d); }
.blue-gradient { background: linear-gradient(45deg, #3b82f6, #1d4ed8); }
.green-gradient { background: linear-gradient(45deg, #10b981, #047857); }
.purple-gradient { background: linear-gradient(45deg, #8b5cf6, #7c3aed); }
.orange-gradient { background: linear-gradient(45deg, #f59e0b, #d97706); }
.indigo-gradient { background: linear-gradient(45deg, #6366f1, #4f46e5); }
.red-gradient { background: linear-gradient(45deg, #ef4444, #dc2626); }
.teal-gradient { background: linear-gradient(45deg, #14b8a6, #0d9488); }

.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}

.card-content {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.section-cta {
    text-align: center;
}

/* Contact Form */
.contact {
    padding: 6rem 0;
    position: relative;
}

.form-container {
    max-width: 28rem;
    margin: 0 auto;
}

.application-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus {
    outline: none;
    border-color: #10b981;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Error states */
.form-group input.border-red-500 {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.error-message.hidden {
    display: none;
}

/* Input help text */
.input-help {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
    font-style: italic;
}

/* Loading overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.loading-overlay.hidden {
    display: none;
}

.loading-spinner {
    text-align: center;
    color: white;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #10b981;
    border-radius: 50%;
    margin: 0 auto 1rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner p {
    font-size: 1.125rem;
    margin: 0;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: linear-gradient(45deg, #6b7280, #4b5563);
}

.submit-button:disabled:hover {
    background: linear-gradient(45deg, #6b7280, #4b5563);
    transform: none;
    box-shadow: 0 10px 25px rgba(107, 114, 128, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(45deg, #dc2626, #b91c1c);
    padding: 2rem 0;
}

.age-warning {
    text-align: center;
}

.age-badge {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.warning-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 48rem;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.875rem;
    }

    .logo-circle {
        width: 15rem;
        height: 15rem;
    }

    .logo-main {
        font-size: 2.25rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }
}
