* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, 'Segoe UI', 'Inter', -apple-system, sans-serif;
}

body {
    background: linear-gradient(135deg, #0a0f1c 0%, #0f1725 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.future-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.club-title {
    text-align: center;
    margin-bottom: 60px;
}

.club-title h1 {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #fff 0%, #a5f3c3 40%, #4ade80 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(74, 222, 128, 0.2);
}

.button-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.main-btn {
    padding: 18px 48px;
    font-size: 1.6rem;
    font-weight: 700;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-join {
    background: linear-gradient(135deg, #4ade80, #16a34a);
    color: #0a0f1c;
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.3);
}

.btn-login {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(74, 222, 128, 0.5);
    backdrop-filter: blur(10px);
}

.main-btn:hover {
    transform: translateY(-4px);
    filter: brightness(1.05);
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.2s ease;
}

.modal-card {
    background: #111827;
    border-radius: 2rem;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    border: 1px solid rgba(74, 222, 128, 0.3);
    box-shadow: 0 25px 50px -12px black;
    animation: slideUp 0.2s ease;
}

.modal-card h2 {
    color: #4ade80;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.modal-card p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.close-modal {
    background: none;
    border: none;
    color: #94a3b8;
    float: right;
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.2s;
}

.close-modal:hover {
    color: #4ade80;
}

/* Option buttons */
.option-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.option-btn {
    background: #1e293b;
    padding: 1.2rem;
    border-radius: 1.2rem;
    border: 1px solid #334155;
    cursor: pointer;
    transition: 0.2s;
    text-align: left;
}

.option-btn:hover {
    background: #2d3a4e;
    border-color: #4ade80;
    transform: scale(1.01);
}

.option-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #4ade80;
}

.option-desc {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 5px;
}

/* Form inputs */
label {
    color: #cbd5e1;
    display: block;
    margin-top: 8px;
}

input, textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0 16px;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 1rem;
    color: white;
    font-size: 1rem;
    transition: 0.2s;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #4ade80;
    box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.2);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background: #4ade80;
    color: #0a0f1c;
    font-weight: bold;
    padding: 12px;
    border: none;
    border-radius: 2rem;
    width: 100%;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.2s;
}

.submit-btn:hover {
    background: #22c55e;
    transform: translateY(-2px);
}

.review-box {
    background: #0f1725;
    border-radius: 1rem;
    padding: 1rem;
    margin: 1rem 0;
    border-left: 3px solid #4ade80;
    line-height: 1.6;
    color: #e2e8f0;
}

.review-box strong {
    color: #4ade80;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Loading text */
.loading-text {
    text-align: center;
    margin-top: 20px;
    color: #a5f3c3;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 600px) {
    .club-title h1 {
        font-size: 3rem;
    }
    
    .main-btn {
        padding: 12px 28px;
        font-size: 1.2rem;
    }
    
    .modal-card {
        padding: 1.5rem;
    }
    
    .option-title {
        font-size: 1.1rem;
    }
}
