/* ========================================
   REGISTRATION PAGE - HERO SECTION
   ======================================== */

.registration-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--spacing-xl) + 0px) 0 var(--spacing-xl);
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.85), rgba(26, 31, 53, 0.85)), url('/portal/2/hero/Blog_1920x640.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.registration-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 100%;
    width: 100%;
}

.registration-hero-badge {
    display: inline-block;
    background: linear-gradient(90deg, #FF4500 0%, #FF6A33 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(255, 69, 0, 0.4);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.registration-hero-title-block {
    display: block;
    position: relative;
    margin-bottom: 1.5rem;
}

.registration-hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin: 0;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: relative;
}

.registration-hero-title-line {
    display: block;
}

.registration-hero-year {
    color: var(--color-primary);
}

.registration-hero-powered {
    position: absolute;
    top: -30%;
    right: -20%;
    transform: translate(50%, -50%) rotate(-5deg);
    background: rgba(61, 163, 230, 0.75);
    backdrop-filter: blur(10px);
    color: white;
    padding: clamp(8px, 1.5vw, 16px) clamp(16px, 3vw, 32px);
    border-radius: 12px;
    font-family: var(--font-display);
    font-size: clamp(12px, 2vw, 18px);
    font-weight: 700;
    letter-spacing: 0.08em;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(61, 163, 230, 0.4),
        0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: floatBadge 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 10;
    white-space: nowrap;
}

@keyframes floatBadge {
    0%, 100% { transform: rotate(-5deg) translateY(0); }
    50% { transform: rotate(-5deg) translateY(-8px); }
}

.registration-hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 400;
    letter-spacing: 0.15em;
    color: #3da3e6;
    margin: 0;
    text-shadow: 0 2px 8px rgba(61, 163, 230, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .registration-hero {
        min-height: 350px;
        padding: calc(var(--spacing-lg) + 80px) 0 var(--spacing-lg);
    }
    
    .registration-hero-badge {
        font-size: 12px;
        padding: 8px 20px;
    }
    
    .registration-hero-title {
        font-size: clamp(36px, 10vw, 48px);
    }
    
    .registration-hero-powered {
        top: -10%;
        right: -3%;
        font-size: clamp(10px, 3vw, 16px);
        padding: 6px 12px;
    }
    
    .registration-hero-subtitle {
        font-size: clamp(14px, 4vw, 20px);
    }
}

/* ========================================
   COUNTDOWN SECTION
   ======================================== */

.section-countdown {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, #0A0E1A 0%, #1a1f35 100%);
    position: relative;
    overflow: hidden;
}

.countdown-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(61, 163, 230, 0.3);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 16px 64px rgba(61, 163, 230, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.countdown-bg-particles {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(61, 163, 230, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 69, 0, 0.08) 0%, transparent 50%);
    animation: particlesFloat 8s ease-in-out infinite;
}

@keyframes particlesFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10px, -10px) scale(1.05); }
}

.countdown-lock-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.countdown-lock {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 20px rgba(61, 163, 230, 0.4));
    animation: lockPulse 3s ease-in-out infinite;
}

@keyframes lockPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.countdown-lock-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(61, 163, 230, 0.3) 0%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.countdown-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    color: white;
    letter-spacing: 0.05em;
    margin-bottom: 3rem;
    text-shadow: 0 2px 20px rgba(61, 163, 230, 0.3);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(16px, 3vw, 32px);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.countdown-number {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 700;
    color: white;
    line-height: 1;
    background: linear-gradient(135deg, rgba(61, 163, 230, 0.2), rgba(61, 163, 230, 0.05));
    border: 2px solid rgba(61, 163, 230, 0.4);
    border-radius: 16px;
    padding: 20px 24px;
    min-width: clamp(80px, 12vw, 120px);
    box-shadow: 
        0 4px 16px rgba(61, 163, 230, 0.2),
        0 8px 32px rgba(61, 163, 230, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    animation: numberPulse 2s ease-in-out infinite;
}

@keyframes numberPulse {
    0%, 100% {
        box-shadow: 
            0 4px 16px rgba(61, 163, 230, 0.2),
            0 8px 32px rgba(61, 163, 230, 0.1),
            inset 0 2px 0 rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 6px 20px rgba(61, 163, 230, 0.3),
            0 12px 40px rgba(61, 163, 230, 0.15),
            inset 0 2px 0 rgba(255, 255, 255, 0.15);
    }
}

.countdown-label {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #3da3e6;
    text-shadow: 0 0 10px rgba(61, 163, 230, 0.4);
}

.countdown-separator {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 60px);
    color: rgba(61, 163, 230, 0.5);
    animation: separatorBlink 2s ease-in-out infinite;
}

@keyframes separatorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.countdown-date {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin: 2rem 0;
    padding: 16px 32px;
    background: rgba(61, 163, 230, 0.1);
    border-radius: 50px;
    display: inline-block;
    border: 1px solid rgba(61, 163, 230, 0.3);
}

.countdown-date strong {
    color: #3da3e6;
    font-weight: 700;
}

.countdown-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    justify-content: center;
}

.countdown-feature svg {
    color: #3da3e6;
    flex-shrink: 0;
}

.countdown-cta {
    margin-top: 2rem;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-glow-orange {
    position: relative;
    overflow: hidden;
}

.btn-glow-orange::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #FF4500, #FF6A33, #FF8C5A, #FF4500);
    background-size: 300% 300%;
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: gradientRotate 3s ease infinite;
}

.btn-glow-orange:hover::after {
    opacity: 1;
}

.btn-glow-orange:hover {
    border-color: transparent;
    box-shadow: 
        0 0 20px rgba(255, 69, 0, 0.5),
        0 0 40px rgba(255, 69, 0, 0.3),
        0 0 60px rgba(255, 69, 0, 0.2);
    transform: translateY(-3px);
}

.btn-glow-blue {
    background: linear-gradient(135deg, #3da3e6 0%, #5eb8f0 100%);
    border: 2px solid #3da3e6;
    position: relative;
    overflow: hidden;
}

.btn-glow-blue::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-glow-blue:hover::before {
    transform: translateX(100%);
}

.btn-glow-blue:hover {
    box-shadow: 
        0 0 20px rgba(61, 163, 230, 0.6),
        0 0 40px rgba(61, 163, 230, 0.4),
        0 0 60px rgba(61, 163, 230, 0.2),
        0 8px 32px rgba(61, 163, 230, 0.3);
    transform: translateY(-3px) scale(1.02);
    border-color: #5eb8f0;
}

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

/* ========================================
   NOTIFICATION MODAL
   ======================================== */

.notify-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.notify-modal.active {
    opacity: 1;
    visibility: visible;
}

.notify-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 26, 0.9);
    backdrop-filter: blur(10px);
}

.notify-modal-content {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.98), rgba(20, 25, 40, 0.98));
    backdrop-filter: blur(30px);
    border: 2px solid rgba(61, 163, 230, 0.3);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    max-width: 500px;
    width: calc(100% - 2rem);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.5),
        0 24px 96px rgba(61, 163, 230, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.notify-modal.active .notify-modal-content {
    transform: scale(1);
}

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

.notify-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notify-modal-close:hover {
    background: rgba(255, 69, 0, 0.2);
    border-color: #FF4500;
    transform: rotate(90deg);
}

.notify-modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.notify-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(61, 163, 230, 0.2), rgba(61, 163, 230, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.notify-modal-header h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.05em;
}

.notify-modal-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
}

.notify-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-group input {
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 16px 20px;
    color: white;
    font-size: 16px;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    outline: none;
}

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

.form-group input:focus {
    border-color: #3da3e6;
    background: rgba(61, 163, 230, 0.08);
    box-shadow: 
        0 0 0 4px rgba(61, 163, 230, 0.1),
        0 4px 16px rgba(61, 163, 230, 0.2);
}

.form-group input:invalid:not(:placeholder-shown) {
    border-color: #FF4500;
}

.notify-form-actions {
    margin-top: 1rem;
}

.notify-form-actions .btn-primary-large {
    width: 100%;
    justify-content: center;
    background: linear-gradient(90deg, #FF4500 0%, #FF6A33 50%, #FF4500 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.notify-form-actions .btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 24px rgba(255, 69, 0, 0.4),
        0 16px 48px rgba(255, 69, 0, 0.2);
}

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

/* Success State */
.notify-success {
    text-align: center;
    animation: successFadeIn 0.5s ease;
}

@keyframes successFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.notify-success svg {
    margin: 0 auto 1.5rem;
    animation: checkmarkDraw 0.8s ease;
}

@keyframes checkmarkDraw {
    0% {
        stroke-dasharray: 200;
        stroke-dashoffset: 200;
    }
    100% {
        stroke-dasharray: 200;
        stroke-dashoffset: 0;
    }
}

.notify-success h3 {
    font-family: var(--font-display);
    font-size: 36px;
    color: #3da3e6;
    margin: 0 0 1rem 0;
}

.notify-success p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.notify-success strong {
    color: #3da3e6;
}

.notify-close-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notify-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #3da3e6;
    box-shadow: 0 4px 16px rgba(61, 163, 230, 0.3);
}

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-secondary-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary-large:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #3da3e6;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(61, 163, 230, 0.3);
}

.btn-secondary-large svg {
    transition: transform 0.3s ease;
}

.btn-secondary-large:hover svg {
    transform: translateX(-4px);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .countdown-cta {
        flex-direction: column;
    }
    
    .btn-secondary-large,
    .btn-primary-large {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   INFO CARDS SECTION
   ======================================== */

.section-info-cards {
    padding: var(--spacing-2xl) 0;
    background: var(--color-light);
}

.section-info-cards h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 56px);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    color: var(--color-dark);
    letter-spacing: 0.03em;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.info-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.08),
        0 8px 32px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(61, 163, 230, 0.1);
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 8px 24px rgba(61, 163, 230, 0.15),
        0 16px 48px rgba(61, 163, 230, 0.08);
    border-color: rgba(61, 163, 230, 0.3);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.info-card-header h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: var(--color-dark);
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: #666;
    font-size: 15px;
    position: relative;
    padding-left: 24px;
}

.info-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3da3e6;
    font-weight: 700;
}

.info-card li:last-child {
    border-bottom: none;
}

.info-card li strong {
    color: var(--color-dark);
    font-weight: 600;
}

@media (max-width: 768px) {
    .info-cards-grid {
        grid-template-columns: 1fr;
    }
}
