:root {
    --navy: #1a2744;
    --navy-deep: #0f1a2e;
    --green: #3cb44b;
    --green-dark: #2d8a3a;
    --gold: #d4a843;
    --gold-light: #e8c96a;
    --white: #f5f5f5;
    --gray: #8a95a8;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Poppins', sans-serif;
    background: var(--navy-deep);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
}
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
            radial-gradient(ellipse at 50% 0%, rgba(60,180,75,0.08) 0%, transparent 60%),
            radial-gradient(ellipse at 50% 100%, rgba(212,168,67,0.06) 0%, transparent 50%),
            repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,0.01) 40px, rgba(255,255,255,0.01) 41px);
    pointer-events: none;
    z-index: 0;
}
.container {
    position: relative; z-index: 1;
    max-width: 420px; margin: 0 auto;
    padding: 40px 20px 60px;
    min-height: 100vh;
    display: flex; flex-direction: column; align-items: center;
}
.logo-section { text-align: center; margin-bottom: 8px; animation: fadeDown 0.8s ease-out; }
.logo-badge {
    width: 140px; height: 140px; margin: 0 auto 16px;
    background: var(--navy); border: 3px solid var(--green); border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    box-shadow: 0 0 30px rgba(60,180,75,0.15), 0 8px 32px rgba(0,0,0,0.4);
}
.logo-badge::before {
    content: ''; position: absolute; inset: -2px;
    background: linear-gradient(135deg, var(--green), var(--gold), var(--green));
    border-radius: 22px; z-index: -1; opacity: 0.6;
}
.logo-badge img { width: 120px; height: 120px; object-fit: contain; }
.club-name {
    font-family: 'Oswald', sans-serif; font-size: 28px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.club-subtitle { font-size: 12px; color: var(--gray); letter-spacing: 4px; text-transform: uppercase; margin-top: 4px; }
.club-est { font-size: 11px; color: var(--green); letter-spacing: 2px; margin-top: 6px; font-weight: 500; }
.divider { width: 60px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 24px auto; animation: fadeIn 1s ease-out 0.3s both; }
.links { width: 100%; display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.link-btn {
    display: flex; align-items: center; gap: 14px; width: 100%;
    padding: 16px 20px; border-radius: 14px; text-decoration: none;
    color: var(--white); font-weight: 500; font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative; overflow: hidden; animation: slideUp 0.6s ease-out both;
}
.link-btn:nth-child(1) { animation-delay: 0.2s; }
.link-btn:nth-child(2) { animation-delay: 0.3s; }
.link-btn:nth-child(3) { animation-delay: 0.4s; }
.link-btn:nth-child(4) { animation-delay: 0.5s; }
.link-btn:nth-child(5) { animation-delay: 0.6s; }
.link-btn:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 8px 25px rgba(0,0,0,0.3); }
.link-btn:active { transform: scale(0.98); }
.btn-chat { background: linear-gradient(135deg, #25d366, #128c47); border: 1px solid rgba(37,211,102,0.3); }
.btn-chat:hover { box-shadow: 0 8px 25px rgba(37,211,102,0.3); }
.btn-join { background: linear-gradient(135deg, #25d366, #075e54); border: 1px solid rgba(37,211,102,0.2); }
.btn-join:hover { box-shadow: 0 8px 25px rgba(37,211,102,0.25); }
.btn-form { background: linear-gradient(135deg, var(--gold), #b8922e); border: 1px solid rgba(212,168,67,0.3); color: var(--navy-deep); }
.btn-form:hover { box-shadow: 0 8px 25px rgba(212,168,67,0.3); }
.btn-schedule { background: linear-gradient(135deg, var(--navy), #243656); border: 1px solid rgba(60,180,75,0.25); }
.btn-schedule:hover { box-shadow: 0 8px 25px rgba(60,180,75,0.2); }
.btn-instagram { background: linear-gradient(135deg, #833ab4, #e1306c, #f77737); border: 1px solid rgba(225,48,108,0.3); }
.btn-instagram:hover { box-shadow: 0 8px 25px rgba(225,48,108,0.3); }
.btn-icon { width: 36px; height: 36px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.15); border-radius: 10px; font-size: 18px; }
.btn-label { flex: 1; }
.btn-arrow { font-size: 14px; opacity: 0.7; transition: transform 0.3s; }
.link-btn:hover .btn-arrow { transform: translateX(4px); }
.schedule {
    width: 100%; background: rgba(26,39,68,0.6); border: 1px solid rgba(60,180,75,0.15);
    border-radius: 16px; padding: 24px 20px; margin-bottom: 32px;
    backdrop-filter: blur(10px); animation: slideUp 0.6s ease-out 0.7s both;
}
.schedule-title {
    font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase; color: var(--gold);
    margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.schedule-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.schedule-item:last-child { border-bottom: none; padding-bottom: 0; }
.schedule-day { font-weight: 600; font-size: 14px; }
.schedule-detail { font-size: 12px; color: var(--gray); margin-top: 2px; }
.schedule-time { text-align: right; font-size: 13px; color: var(--green); font-weight: 500; }
.footer { text-align: center; margin-top: auto; padding-top: 20px; animation: fadeIn 1s ease-out 1s both; }
.footer p { font-size: 11px; color: var(--gray); letter-spacing: 1px; }
.footer .est { font-family: 'Oswald', sans-serif; color: var(--gold); font-size: 12px; margin-top: 4px; letter-spacing: 3px; }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@media (max-width: 360px) { .club-name { font-size: 24px; } .link-btn { padding: 14px 16px; font-size: 14px; } }
