/* ===== FONTS & BASE STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

img, video, canvas, svg {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 100%;
    box-sizing: border-box;
}

/* ===== SHARED ANIMATIONS ===== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(233, 69, 96, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 40px rgba(233, 69, 96, 0.8), 0 0 80px rgba(233, 69, 96, 0.4);
        transform: scale(1.05);
    }
}

@keyframes particle-move {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

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

@keyframes flash {
    0% { opacity: 1; }
    100% { opacity: 0.7; }
}

/* ===== GRADIENT BACKGROUNDS ===== */
.hero-gradient {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
    position: relative;
    overflow: hidden;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a"><stop offset="0" stop-color="%23764ba2"/><stop offset="1" stop-color="%23667eea"/></radialGradient></defs><g opacity="0.8"><circle cx="283" cy="283" r="1" fill="url(%23a)"/><circle cx="687" cy="687" r="1" fill="url(%23a)"/><circle cx="300" cy="700" r="1" fill="url(%23a)"/><circle cx="800" cy="200" r="1" fill="url(%23a)"/></g></svg>') center/cover;
    opacity: 0.1;
}

.cyber-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    position: relative;
    overflow: hidden;
}

.cyber-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s infinite;
}

/* ===== GLASS MORPHISM & EFFECTS ===== */
.glass-morphism {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.nav-glass {
    backdrop-filter: blur(20px);
    background: rgba(15, 15, 35, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.cyber-border {
    border: 2px solid transparent;
    background: linear-gradient(135deg, #1a1a2e, #16213e) padding-box,
                linear-gradient(135deg, #67e8f9, #764ba2) border-box;
}

/* ===== NEON GLOWS ===== */
.neon-glow {
    box-shadow: 0 0 20px rgba(103, 232, 249, 0.5), 0 0 40px rgba(103, 232, 249, 0.3), 0 0 60px rgba(103, 232, 249, 0.1);
    transition: all 0.3s ease;
}

.neon-glow:hover {
    box-shadow: 0 0 30px rgba(103, 232, 249, 0.8), 0 0 60px rgba(103, 232, 249, 0.5), 0 0 90px rgba(103, 232, 249, 0.3);
}

.pulse-glow {
    animation: pulse-glow 3s ease-in-out infinite;
}

/* ===== TEXT EFFECTS ===== */
.text-neon {
    color: #67e8f9;
    text-shadow: 0 0 10px rgba(103, 232, 249, 0.8);
}

.text-cyber {
    background: linear-gradient(135deg, #67e8f9 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.stats-counter {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #67e8f9 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== INTERACTIVE CARDS ===== */
.floating-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.floating-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.floating-card:hover::before {
    transform: translateX(100%);
}

.floating-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* ===== SHARED CARD STYLES ===== */
.activity-card,
.achievement-card,
.team-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.activity-card::before,
.achievement-card::before,
.team-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
}

.activity-card:hover::before,
.achievement-card:hover::before,
.team-card:hover::before {
    animation: shine 0.5s ease-in-out;
    opacity: 1;
}

.activity-card:hover {
    background: linear-gradient(135deg, rgba(103, 232, 249, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-color: rgba(103, 232, 249, 0.5);
    transform: translateY(-10px);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===== PARTICLES & BACKGROUNDS ===== */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.particle-1 { top: 10%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 20%; right: 20%; animation-delay: 1s; }
.particle-3 { bottom: 30%; left: 30%; animation-delay: 2s; }
.particle-4 { bottom: 20%; right: 10%; animation-delay: 3s; }
.particle-5 { top: 50%; left: 50%; animation-delay: 4s; }

.particle-bg {
    background-image: radial-gradient(circle at 2px 2px, rgba(103, 232, 249, 0.15) 1px, transparent 0);
    background-size: 50px 50px;
    animation: particle-move 20s linear infinite;
}

/* ===== PROGRESS & ACTIVITY BARS ===== */
.activity-progress-bar {
    width: 0%;
    animation: progress-fill 2s ease-out forwards;
}

@keyframes progress-fill {
    from { width: 0%; }
    to { width: var(--progress-width, 0%); }
}

.activity-card:nth-child(1) .activity-progress-bar { --progress-width: 85%; }
.activity-card:nth-child(2) .activity-progress-bar { --progress-width: 92%; }
.activity-card:nth-child(3) .activity-progress-bar { --progress-width: 76%; }
.activity-card:nth-child(4) .activity-progress-bar { --progress-width: 88%; }

/* ===== UTILITY CLASSES ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.enhanced-shadow {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 20px 40px rgba(0, 0, 0, 0.2);
}

.enhanced-shadow:hover {
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.4), 0 30px 60px rgba(0, 0, 0, 0.3);
}

.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #67e8f9, transparent);
    margin: 4rem 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.bg-gold {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
}

/* ===== FLOATING ELEMENTS ===== */
.hero-floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) { animation-delay: 0s; }
.floating-icon:nth-child(2) { animation-delay: 2s; }
.floating-icon:nth-child(3) { animation-delay: 4s; }
.floating-icon:nth-child(4) { animation-delay: 1s; }
.floating-icon:nth-child(5) { animation-delay: 3s; }
.floating-icon:nth-child(6) { animation-delay: 5s; }

/* ===== SPECIAL EFFECTS ===== */
.team-card:hover .fa-coins {
    animation: spin 1s linear infinite;
}

.team-card:hover .fa-camera {
    animation: flash 0.5s ease-in-out infinite alternate;
}

.quote-container {
    position: relative;
    margin: 0 auto;
}

.quote-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, transparent, currentColor, transparent);
    transition: height 0.3s ease;
    transform: translateY(-50%);
}

.team-card:hover .quote-container::before {
    height: 100%;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: linear-gradient(145deg, rgba(15, 15, 35, 0.98) 0%, rgba(26, 26, 46, 0.98) 100%);
    backdrop-filter: blur(30px);
    border-top: 1px solid rgba(103, 232, 249, 0.3);
    border-bottom: 1px solid rgba(103, 232, 249, 0.2);
    padding: 1.5rem;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 50px rgba(103, 232, 249, 0.1);
    transform: translateY(-100%);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
}

.mobile-menu.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #67e8f9, #764ba2, #67e8f9, transparent);
    animation: gradient-shift 3s ease infinite;
}

.mobile-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: #d1d5db;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    margin: 0.25rem 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(10px);
    font-weight: 500;
    letter-spacing: 0.025em;
    overflow: hidden;
}

.mobile-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(103, 232, 249, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-menu a:hover::before {
    left: 100%;
}

.mobile-menu a:hover {
    color: #67e8f9;
    background: linear-gradient(135deg, rgba(103, 232, 249, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-color: rgba(103, 232, 249, 0.3);
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(103, 232, 249, 0.2);
}

.mobile-menu a:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.mobile-menu a i {
    margin-right: 0.75rem;
    width: 16px;
    text-align: center;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.mobile-menu a:hover i {
    opacity: 1;
    transform: scale(1.1);
    color: #67e8f9;
}

/* Mobile Menu Button Animation */
#mobile-menu-btn {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

#mobile-menu-btn:hover {
    background: linear-gradient(135deg, rgba(103, 232, 249, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-color: rgba(103, 232, 249, 0.3);
    transform: scale(1.05);
}

#mobile-menu-btn i {
    transition: all 0.3s ease;
}

#mobile-menu-btn:hover i {
    color: #67e8f9;
    transform: rotate(90deg);
}

/* Enhanced Join Now Button for Mobile */
@media (max-width: 768px) {
    .cyber-gradient {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        border-radius: 25px;
        position: relative;
        overflow: hidden;
    }
    
    .cyber-gradient::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s ease;
    }
    
    .cyber-gradient:hover::before {
        left: 100%;
    }
    
    .mobile-menu {
        padding: 2rem 1.5rem;
    }
    
    .mobile-menu a {
        font-size: 1.1rem;
        padding: 1.2rem 1.5rem;
    }
}

/* Add staggered animation for menu items */
.mobile-menu a:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu a:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu a:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu a:nth-child(4) { animation-delay: 0.4s; }
.mobile-menu a:nth-child(5) { animation-delay: 0.5s; }

.mobile-menu.active a {
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-menu.active a {
    opacity: 1;
    transform: translateY(0);
}
/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-gradient {
        min-height: 100vh;
        padding: 0 1rem;
    }
    
    .text-5xl { font-size: 2.5rem !important; }
    .text-7xl { font-size: 3rem !important; }
    .text-xl { font-size: 1.1rem !important; }
    .text-2xl { font-size: 1.25rem !important; }
    .text-6xl { font-size: 3rem !important; }
    
    .stats-counter { font-size: 1.8rem !important; }
    
    .grid.lg\\:grid-cols-2 { grid-template-columns: 1fr; gap: 2rem; }
    .grid.grid-cols-3 { grid-template-columns: 1fr; gap: 1rem; }
    .grid.grid-cols-2 { grid-template-columns: 1fr; }
    
    .flex.flex-col.sm\\:flex-row { flex-direction: column; gap: 1rem; }
    .px-8 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
    
    .w-80 { width: 16rem !important; }
    .h-80 { height: 16rem !important; }
    .w-64 { width: 12rem !important; }
    .h-64 { height: 12rem !important; }
    .w-96 { width: 100% !important; max-width: 20rem; }
    .h-96 { height: 20rem !important; }
    
    .floating-icon { display: none; }
    
    .nav-glass .container { padding-left: 1rem; padding-right: 1rem; }
    .hidden.md\\:block { display: none !important; }
    .hidden.md\\:flex { display: none !important; }
    
    .py-20 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
    .space-y-8 > * + * { margin-top: 1.5rem !important; }
    .space-y-6 > * + * { margin-top: 1rem !important; }
    .gap-12 { gap: 2rem !important; }
    .gap-6 { gap: 1rem !important; }
    
    .glass-morphism { padding: 1rem; }
    
    .team-card { padding: 1.5rem; }
    .w-28 { width: 6rem; height: 6rem; }
}

@media (max-width: 480px) {
    .text-5xl { font-size: 2rem !important; }
    .text-4xl { font-size: 1.8rem !important; }
    
    .w-80 { width: 12rem !important; }
    .h-80 { height: 12rem !important; }
    .w-64 { width: 10rem !important; }
    .h-64 { height: 10rem !important; }
    
    .stats-counter { font-size: 1.5rem !important; }
    
    .container { padding-left: 0.75rem; padding-right: 0.75rem; }
    
    .px-6, .px-8 { 
        padding-left: 1rem !important; 
        padding-right: 1rem !important; 
        font-size: 0.9rem; 
    }
}
/* ========================================================================== 
   REGISTRATION PAGE
   Frontend styles for daftar2/index.php, aligned with the main KIR website.
   ========================================================================== */

.registration-page {
    min-height: 100vh;
    background: #111827;
}

.registration-hero {
    overflow: hidden;
}

.registration-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 15% 20%, rgba(103, 232, 249, 0.10), transparent 32%),
        radial-gradient(circle at 84% 16%, rgba(118, 75, 162, 0.17), transparent 34%),
        radial-gradient(circle at 68% 85%, rgba(240, 147, 251, 0.10), transparent 28%);
}

.registration-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: 2.5rem;
    max-width: 1320px;
    margin: 0 auto;
}

.registration-intro {
    position: sticky;
    top: 6rem;
    padding: 1.25rem 0.5rem 1.5rem;
}

.registration-badge,
.registration-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #67e8f9;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.registration-badge {
    padding: 0.7rem 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(103, 232, 249, 0.24);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.54);
    backdrop-filter: blur(14px);
}

.registration-badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: #67e8f9;
    box-shadow: 0 0 14px rgba(103, 232, 249, 0.9);
    animation: registration-pulse 1.8s ease-in-out infinite;
}

@keyframes registration-pulse {
    0%, 100% { transform: scale(0.9); opacity: 0.65; }
    50% { transform: scale(1.25); opacity: 1; }
}

.registration-logo-wrap {
    width: 8.5rem;
    height: 8.5rem;
    padding: 0.7rem;
    margin-bottom: 2rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transform: rotate(-4deg);
}

.registration-logo-inner {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    border-radius: 1.55rem;
    transform: rotate(4deg);
}

.registration-logo-inner img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.registration-heading {
    max-width: 680px;
    font-size: clamp(2.35rem, 4.3vw, 4.25rem);
    line-height: 1.06;
    font-weight: 800;
    letter-spacing: -0.045em;
    color: #fff;
}

.registration-benefits {
    display: grid;
    gap: 0.85rem;
    margin-top: 2rem;
}

.registration-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
    backdrop-filter: blur(14px);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.registration-benefit:hover {
    transform: translateX(8px);
    border-color: rgba(103, 232, 249, 0.34);
    background: linear-gradient(135deg, rgba(103, 232, 249, 0.09), rgba(118, 75, 162, 0.08));
}

.registration-benefit-icon {
    width: 2.85rem;
    height: 2.85rem;
    flex: 0 0 2.85rem;
    display: grid;
    place-items: center;
    border-radius: 0.9rem;
    color: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.registration-benefit h3 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.registration-benefit p {
    color: #9ca3af;
    font-size: 0.84rem;
    line-height: 1.5;
}

.registration-note {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-top: 1.35rem;
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    color: #cbd5e1;
    font-size: 0.86rem;
    line-height: 1.6;
}

.registration-note i {
    margin-top: 0.23rem;
}

.registration-form-card {
    position: relative;
    isolation: isolate;
    padding: clamp(1.25rem, 3vw, 2.5rem);
    border-radius: 2rem;
    overflow: hidden;
}

.registration-form-card::before {
    content: '';
    position: absolute;
    top: -9rem;
    right: -8rem;
    width: 21rem;
    height: 21rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.23), transparent 68%);
    z-index: -1;
}

.registration-form-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.25rem;
    padding-bottom: 1.5rem;
}

.registration-header-icon {
    width: 4rem;
    height: 4rem;
    flex: 0 0 4rem;
    display: grid;
    place-items: center;
    color: #67e8f9;
    font-size: 1.55rem;
    border: 1px solid rgba(103, 232, 249, 0.28);
    border-radius: 1.25rem;
    background: linear-gradient(135deg, rgba(103, 232, 249, 0.12), rgba(118, 75, 162, 0.14));
    box-shadow: 0 0 24px rgba(103, 232, 249, 0.14);
}

.registration-progress {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    border-radius: 1rem;
    background: rgba(3, 7, 18, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.075);
}

.registration-progress span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 2.75rem;
    padding: 0.55rem 0.7rem;
    color: #94a3b8;
    font-size: 0.83rem;
    font-weight: 600;
    border-radius: 0.75rem;
}

.registration-progress span.active {
    color: #fff;
    background: linear-gradient(135deg, rgba(103, 232, 249, 0.12), rgba(118, 75, 162, 0.15));
    border: 1px solid rgba(103, 232, 249, 0.18);
}

.registration-progress b {
    width: 1.55rem;
    height: 1.55rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #cbd5e1;
    font-size: 0.7rem;
    background: rgba(255, 255, 255, 0.08);
}

.registration-progress .active b {
    color: #07111f;
    background: #67e8f9;
    box-shadow: 0 0 16px rgba(103, 232, 249, 0.44);
}

.registration-section {
    position: relative;
    padding: clamp(1.1rem, 2.4vw, 1.6rem);
    border: 1px solid rgba(255, 255, 255, 0.085);
    border-radius: 1.4rem;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.66), rgba(15, 23, 42, 0.38));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.registration-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.registration-section:hover {
    border-color: rgba(103, 232, 249, 0.17);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.registration-section.has-error {
    border-color: rgba(248, 113, 113, 0.58);
    box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.08);
}

.registration-section-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.35rem;
}

.registration-section-icon {
    width: 3.2rem;
    height: 3.2rem;
    flex: 0 0 3.2rem;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 1rem;
    box-shadow: 0 11px 26px rgba(0, 0, 0, 0.22);
}

.registration-section-number {
    display: block;
    margin-bottom: 0.15rem;
    color: #67e8f9;
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.registration-section-title h2 {
    color: #fff;
    font-size: 1.13rem;
    font-weight: 750;
    line-height: 1.25;
}

.registration-section-title p {
    margin-top: 0.22rem;
    color: #94a3b8;
    font-size: 0.8rem;
    line-height: 1.45;
}

.registration-field {
    position: relative;
}

.registration-field-icon {
    position: absolute;
    z-index: 2;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.2rem;
    color: #67e8f9;
    text-align: center;
    pointer-events: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.registration-field-icon-top {
    top: 1.2rem;
    transform: none;
}

.registration-input {
    width: 100%;
    min-height: 3.65rem;
    padding: 1.36rem 1rem 0.55rem 3rem;
    color: #f8fafc;
    font-size: 0.95rem;
    line-height: 1.35;
    outline: none;
    border: 1px solid rgba(148, 163, 184, 0.19);
    border-radius: 0.95rem;
    background: rgba(2, 6, 23, 0.46);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.registration-input:hover {
    border-color: rgba(103, 232, 249, 0.28);
}

.registration-input:focus {
    border-color: rgba(103, 232, 249, 0.75);
    background: rgba(2, 6, 23, 0.7);
    box-shadow: 0 0 0 4px rgba(103, 232, 249, 0.09), 0 0 24px rgba(103, 232, 249, 0.09);
}

.registration-input.has-error {
    border-color: rgba(248, 113, 113, 0.8);
    box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.08);
}

.registration-field:focus-within .registration-field-icon {
    color: #f0abfc;
    transform: translateY(-50%) scale(1.08);
}

.registration-textarea-field:focus-within .registration-field-icon-top {
    transform: scale(1.08);
}

.registration-label {
    position: absolute;
    z-index: 1;
    left: 3rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.92rem;
    pointer-events: none;
    transition: all 0.2s ease;
}

.registration-input:focus + .registration-label,
.registration-input:not(:placeholder-shown) + .registration-label {
    top: 0.72rem;
    transform: none;
    color: #67e8f9;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.035em;
}

.registration-textarea {
    min-height: 8.8rem;
    resize: vertical;
    padding-top: 1.65rem;
}

.registration-textarea + .registration-label {
    top: 1.2rem;
    transform: none;
}

.registration-textarea:focus + .registration-label,
.registration-textarea:not(:placeholder-shown) + .registration-label {
    top: 0.55rem;
}

.registration-helper {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0.65rem 0.15rem 0;
    color: #64748b;
    font-size: 0.73rem;
}

.registration-helper i {
    color: #22d3ee;
}

.registration-option-grid {
    display: grid;
    gap: 0.75rem;
}

.registration-option-grid-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.registration-option-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.registration-option {
    position: relative;
    min-height: 6.3rem;
    padding: 1rem 0.8rem 0.85rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    color: #cbd5e1;
    font-size: 0.78rem;
    font-weight: 650;
    text-align: center;
    cursor: pointer;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 1rem;
    background: rgba(2, 6, 23, 0.35);
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.registration-option::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(103, 232, 249, 0.11), rgba(118, 75, 162, 0.13));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.registration-option:hover {
    transform: translateY(-3px);
    color: #fff;
    border-color: rgba(103, 232, 249, 0.38);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.registration-option:hover::before,
.registration-option:has(input:checked)::before {
    opacity: 1;
}

.registration-option:has(input:checked) {
    color: #fff;
    border-color: rgba(103, 232, 249, 0.7);
    box-shadow: 0 0 0 3px rgba(103, 232, 249, 0.08), 0 0 22px rgba(103, 232, 249, 0.11);
}

.registration-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.registration-option-icon,
.registration-option > span:not(.registration-option-check) {
    position: relative;
    z-index: 1;
}

.registration-option-icon {
    color: #67e8f9;
    font-size: 1.25rem;
    transition: transform 0.25s ease, color 0.25s ease;
}

.registration-option:hover .registration-option-icon,
.registration-option:has(input:checked) .registration-option-icon {
    color: #f0abfc;
    transform: scale(1.12);
}

.registration-option-check {
    position: absolute;
    z-index: 2;
    top: 0.55rem;
    right: 0.55rem;
    width: 1.25rem;
    height: 1.25rem;
    display: grid;
    place-items: center;
    color: transparent;
    font-size: 0.58rem;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.8);
    transition: all 0.22s ease;
}

.registration-option:has(input:checked) .registration-option-check {
    color: #07111f;
    background: #67e8f9;
    border-color: #67e8f9;
    box-shadow: 0 0 14px rgba(103, 232, 249, 0.56);
}

.registration-captcha {
    padding: 1.1rem;
    border: 1px solid rgba(103, 232, 249, 0.13);
    border-radius: 1.1rem;
    background:
        linear-gradient(135deg, rgba(103, 232, 249, 0.05), rgba(118, 75, 162, 0.07)),
        rgba(2, 6, 23, 0.38);
}

.registration-captcha-copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.registration-captcha-copy p {
    color: #94a3b8;
    font-size: 0.78rem;
}

.registration-captcha-label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #67e8f9;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.registration-captcha-equation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 5.4rem;
    margin-bottom: 1rem;
    color: #fff;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: clamp(1.75rem, 4vw, 2.45rem);
    font-weight: 800;
    letter-spacing: 0.05em;
    border: 1px dashed rgba(103, 232, 249, 0.25);
    border-radius: 1rem;
    background:
        radial-gradient(circle at center, rgba(103, 232, 249, 0.08), transparent 68%),
        rgba(15, 23, 42, 0.64);
}

.registration-submit-wrap {
    padding-top: 0.35rem;
}

.registration-submit {
    position: relative;
    width: 100%;
    min-height: 3.8rem;
    padding: 1rem 1.5rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 750;
    letter-spacing: 0.01em;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 30%, #f093fb 70%, #4facfe 100%);
    background-size: 200% 200%;
    cursor: pointer;
    overflow: hidden;
    animation: gradient-shift 4s ease infinite;
    transition: transform 0.28s ease, box-shadow 0.28s ease, opacity 0.28s ease;
}

.registration-submit:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(79, 70, 229, 0.34), 0 0 30px rgba(103, 232, 249, 0.18);
}

.registration-submit:active:not(:disabled) {
    transform: translateY(-1px);
}

.registration-submit:disabled {
    cursor: wait;
    opacity: 0.72;
}

.registration-submit-shine {
    position: absolute;
    inset: 0;
    transform: translateX(-120%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transition: transform 0.65s ease;
}

.registration-submit:hover .registration-submit-shine {
    transform: translateX(120%);
}

.registration-consent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 0.85rem;
    color: #64748b;
    font-size: 0.72rem;
    text-align: center;
}

.registration-consent i {
    color: #67e8f9;
}

.registration-error {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.45rem;
    color: #fca5a5;
    font-size: 0.74rem;
    line-height: 1.35;
}

.registration-section-error {
    padding: 0.72rem 0.85rem;
    border-radius: 0.75rem;
    background: rgba(127, 29, 29, 0.22);
    border: 1px solid rgba(248, 113, 113, 0.22);
}

.registration-footer {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.registration-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.registration-success {
    min-height: 620px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    text-align: center;
}

.registration-success-icon {
    width: 6rem;
    height: 6rem;
    display: grid;
    place-items: center;
    margin-bottom: 1.8rem;
    color: #07111f;
    font-size: 2.2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #67e8f9, #a7f3d0);
}

.registration-success h2 {
    margin-top: 0.75rem;
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
}

.registration-success > p {
    max-width: 620px;
    margin-top: 1rem;
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.7;
}

.registration-success .registration-success-note {
    margin-top: 0.5rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

.registration-success-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    min-height: 3.25rem;
    padding: 0.8rem 1.35rem;
    margin-top: 1.8rem;
    color: #fff;
    font-weight: 700;
    border-radius: 999px;
    transition: transform 0.25s ease;
}

.registration-success-button:hover {
    transform: translateY(-3px);
}

@media (max-width: 1100px) {
    .registration-layout {
        grid-template-columns: minmax(250px, 0.62fr) minmax(0, 1.38fr);
        gap: 1.5rem;
    }

    .registration-heading {
        font-size: clamp(2.2rem, 4.2vw, 3.2rem);
    }

    .registration-option-grid-four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .registration-layout {
        grid-template-columns: 1fr;
        max-width: 780px;
    }

    .registration-intro {
        position: relative;
        top: auto;
        padding-bottom: 0;
    }

    .registration-logo-wrap {
        width: 7rem;
        height: 7rem;
        margin-bottom: 1.4rem;
    }

    .registration-benefits {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .registration-benefit {
        align-items: flex-start;
        flex-direction: column;
    }

    .registration-note {
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 768px) {
    .registration-hero {
        padding-left: 0;
        padding-right: 0;
    }

    .registration-layout {
        gap: 1.25rem;
    }

    .registration-intro {
        padding-left: 0.15rem;
        padding-right: 0.15rem;
    }

    .registration-benefits {
        grid-template-columns: 1fr;
    }

    .registration-benefit {
        flex-direction: row;
        align-items: center;
    }

    .registration-form-card.glass-morphism {
        padding: 1.1rem;
        border-radius: 1.4rem;
    }

    .registration-form-header {
        align-items: center;
    }

    .registration-header-icon {
        width: 3.2rem;
        height: 3.2rem;
        flex-basis: 3.2rem;
        font-size: 1.2rem;
    }

    .registration-option-grid-three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .registration-footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .registration-success {
        min-height: 500px;
    }
}

@media (max-width: 520px) {
    .registration-heading {
        font-size: 2.35rem;
    }

    .registration-logo-wrap {
        width: 6rem;
        height: 6rem;
        border-radius: 1.5rem;
    }

    .registration-logo-inner {
        border-radius: 1.1rem;
    }

    .registration-progress {
        gap: 0.35rem;
        padding: 0.45rem;
    }

    .registration-progress span {
        min-height: 2.4rem;
        padding: 0.4rem;
        font-size: 0.7rem;
        gap: 0.35rem;
    }

    .registration-progress b {
        width: 1.35rem;
        height: 1.35rem;
        font-size: 0.62rem;
    }

    .registration-form-header h1 {
        font-size: 1.75rem !important;
    }

    .registration-header-icon {
        display: none;
    }

    .registration-section {
        padding: 1rem;
        border-radius: 1.1rem;
    }

    .registration-section-title {
        align-items: flex-start;
        gap: 0.8rem;
    }

    .registration-section-icon {
        width: 2.75rem;
        height: 2.75rem;
        flex-basis: 2.75rem;
        border-radius: 0.85rem;
    }

    .registration-option-grid-four,
    .registration-option-grid-three {
        grid-template-columns: 1fr 1fr;
    }

    .registration-option {
        min-height: 5.6rem;
        padding: 0.85rem 0.55rem;
        font-size: 0.72rem;
    }

    .registration-captcha-copy {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.35rem;
    }

    .registration-consent {
        align-items: flex-start;
        line-height: 1.5;
    }
}

@media (prefers-reduced-motion: reduce) {
    .registration-page *,
    .registration-page *::before,
    .registration-page *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
