.hero-section {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.75) 100%),
        url('https://images.unsplash.com/photo-1480714378408-67cf0d13bc1b?q=80&w=2070') center/cover;
    color: white;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    min-height: 100vh;
    ;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-title {
    font-size: 28px;
    color: #60a5fa;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
    font-family: 'Poppins', sans-serif;
    animation: fadeInDown 1s ease-out;
}

.hero-slogan {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 56px;
    margin-bottom: 40px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.countdown-container {
    background: rgba(15, 23, 42, 0.2);
    border: 2px solid rgba(59, 130, 246, 0.25);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 0 60px rgba(59, 130, 246, 0.1);
    animation: fadeIn 1s ease-out 0.4s both;
}

.countdown-labels {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 15px;
}

.countdown-label {
    font-size: 14px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.countdown-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 72px;
    font-weight: 700;
    color: white;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.countdown-number {
    min-width: 120px;
    text-align: center;
}

.countdown-separator {
    color: #60a5fa;
    opacity: 0.6;
}

.countdown-target {
    margin-top: 20px;
    font-size: 18px;
    color: #cbd5e1;
    letter-spacing: 3px;
}

.hero-links-wrapper {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #e2e8f0;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.9;
    pointer-events: none;
    animation: fadeIn 1s ease-out 0.6s both;
}

.scroll-mouse {
    width: 28px;
    height: 44px;
    border: 2px solid rgba(226, 232, 240, 0.7);
    border-radius: 16px;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
}

.scroll-wheel {
    width: 6px;
    height: 10px;
    border-radius: 8px;
    background: #e2e8f0;
    animation: scrollWheel 1.8s ease-in-out infinite;
    display: inline-block;
}

.scroll-text {
    font-size: 12px;
    color: #cbd5e1;
    letter-spacing: 3px;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(-6px);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    60% {
        transform: translateY(10px);
        opacity: 1;
    }
    100% {
        transform: translateY(16px);
        opacity: 0;
    }
}

.hero-link-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    transition: gap 0.2s ease;
}

.hero-link-group.count-1 {
    justify-content: center;
}

.hero-link-group.count-2 {
    justify-content: center;
    gap: 40px;
}

.hero-link-group.count-3 {
    justify-content: center;
    gap: 40px;
}

.hero-link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #facc15 0%, #eab308 100%);
    color: #1f2937;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -0.1px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(234, 179, 8, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
    min-width: 160px;
}

.hero-link-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(234, 179, 8, 0.42);
    background: linear-gradient(135deg, #fde68a 0%, #facc15 100%);
}

.hero-link-button:active {
    transform: translateY(0);
    box-shadow: 0 8px 20px rgba(234, 179, 8, 0.35);
}

.hero-link-manage-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hero-link-manage-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-link-manage-btn:active {
    transform: translateY(1px);
}

.hero-link-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.hero-link-modal.active {
    display: flex;
}

.hero-link-modal-content {
    background: #0f172a;
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    width: 100%;
    max-width: 520px;
    padding: 24px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.hero-link-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.hero-link-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.hero-link-modal-close {
    border: none;
    background: rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    display: grid;
    place-items: center;
}

.hero-link-modal-close:hover {
    background: rgba(255, 255, 255, 0.12);
}

.hero-link-modal-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-link-modal-desc {
    margin: 0;
    color: #94a3b8;
    font-size: 13px;
}

.hero-link-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-link-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.02);
    display: grid;
    gap: 10px;
}

.hero-link-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.hero-link-field label {
    font-size: 13px;
    color: #cbd5e1;
    font-weight: 600;
}

.hero-link-field input {
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #e2e8f0;
    font-size: 14px;
    outline: none;
    transition: border 0.15s ease, background 0.15s ease;
}

.hero-link-field input:focus {
    border-color: #60a5fa;
    background: rgba(96, 165, 250, 0.08);
}

.hero-link-visible {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #cbd5e1;
    font-weight: 600;
}

.hero-link-visible input {
    width: 18px;
    height: 18px;
}

.hero-link-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 10px;
}

.hero-link-btn {
    border: none;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hero-link-btn.primary {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    color: #0b152a;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.35);
}

.hero-link-btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 36px rgba(59, 130, 246, 0.4);
}

.hero-link-btn.ghost {
    background: rgba(255, 255, 255, 0.06);
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-link-btn.ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
