 /* ============================================
   SYNONYM SENTRAL V2 - WAITLIST STYLES
   Liquid Glass | Cryptic | Modern
   ============================================ */

/* CSS Variables - Design Tokens */
:root {
    /* Primary Colors - Mystical Cyan/Purple palette */
    --primary-cyan: #00f0ff;
    --primary-purple: #b400ff;
    --primary-magenta: #ff00aa;
    --accent-green: #00ff88;

    /* Dark background palette */
    --bg-ultra-dark: #030308;
    --bg-dark: #0a0a15;
    --bg-medium: #12121f;
    --bg-light: #1a1a2e;

    /* Glass effects */
    --glass-bg: rgba(15, 15, 30, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shine: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, transparent 100%);

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-muted: rgba(255, 255, 255, 0.3);

    /* Glows */
    --glow-cyan: 0 0 40px rgba(0, 240, 255, 0.4);
    --glow-purple: 0 0 40px rgba(180, 0, 255, 0.4);
    --glow-magenta: 0 0 40px rgba(255, 0, 170, 0.4);

    /* Typography */
    --font-display: 'Orbitron', sans-serif;
    --font-mono: 'Space Mono', monospace;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-mono);
    background: var(--bg-ultra-dark);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ============================================
   ANIMATED BACKGROUND
   ============================================ */

.background-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: perspective(500px) rotateX(60deg) translateY(0);
    }

    100% {
        transform: perspective(500px) rotateX(60deg) translateY(50px);
    }
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: orbFloat 10s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-cyan) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-purple) 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
    animation-delay: -3s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-magenta) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -5s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -30px) scale(1.1);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

.scan-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
    animation: scanMove 4s linear infinite;
    opacity: 0.3;
}

@keyframes scanMove {
    0% {
        top: -2px;
    }

    100% {
        top: 100%;
    }
}

.particle-field {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-cyan);
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* ============================================
   MAIN CONTAINER
   ============================================ */

.main-container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    gap: var(--space-lg);
}

/* Cipher Header */
.cipher-header {
    display: flex;
    gap: var(--space-md);
    font-size: 1.5rem;
    color: var(--primary-cyan);
    animation: pulseGlow 2s ease-in-out infinite;
}

.cipher-symbol {
    animation: symbolRotate 4s linear infinite;
    text-shadow: var(--glow-cyan);
}

.cipher-symbol:nth-child(2) {
    animation-delay: -1s;
}

.cipher-symbol:nth-child(3) {
    animation-delay: -2s;
    color: var(--primary-purple);
    text-shadow: var(--glow-purple);
}

.cipher-symbol:nth-child(4) {
    animation-delay: -3s;
}

@keyframes symbolRotate {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

/* Logo Section */
.logo-container {
    text-align: center;
    margin-bottom: var(--space-sm);
}

.main-logo {
    font-family: var(--font-display);
    font-size: clamp(2rem, 8vw, 4.5rem);
    font-weight: 900;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-purple) 50%, var(--primary-magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: logoGlitch 5s ease-in-out infinite;
}

.main-logo::before,
.main-logo::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-logo::before {
    animation: glitchLeft 2s ease-in-out infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.main-logo::after {
    animation: glitchRight 2.5s ease-in-out infinite;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

@keyframes glitchLeft {

    0%,
    94%,
    100% {
        transform: translateX(0);
    }

    95% {
        transform: translateX(-5px);
    }

    96% {
        transform: translateX(5px);
    }
}

@keyframes glitchRight {

    0%,
    96%,
    100% {
        transform: translateX(0);
    }

    97% {
        transform: translateX(5px);
    }

    98% {
        transform: translateX(-5px);
    }
}

@keyframes logoGlitch {

    0%,
    90%,
    100% {
        filter: hue-rotate(0deg);
    }

    95% {
        filter: hue-rotate(20deg);
    }
}

.version-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.v2-badge {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--bg-dark);
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-green));
    padding: 0.3em 0.8em;
    border-radius: 4px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
    }

    50% {
        box-shadow: 0 0 40px rgba(0, 240, 255, 0.8);
    }
}

.status-text {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--text-secondary);
    animation: blink 1s step-start infinite;
}

@keyframes blink {
    50% {
        opacity: 0.5;
    }
}

/* ============================================
   GLASS CARD
   ============================================ */

.glass-card {
    position: relative;
    width: 100%;
    max-width: 600px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: var(--space-xl);
    overflow: hidden;
}

.glass-shine {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: var(--glass-shine);
    pointer-events: none;
    border-radius: 24px 24px 0 0;
}

.glass-border {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg,
            rgba(0, 240, 255, 0.3) 0%,
            rgba(255, 255, 255, 0.1) 25%,
            rgba(180, 0, 255, 0.3) 50%,
            rgba(255, 255, 255, 0.1) 75%,
            rgba(255, 0, 170, 0.3) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderRotate 4s linear infinite;
}

@keyframes borderRotate {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(360deg);
    }
}

.card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

/* Cryptic Text Section */
.cryptic-text {
    text-align: center;
}

.cipher-line {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    color: var(--primary-cyan);
    margin-bottom: var(--space-sm);
    animation: flicker 3s ease-in-out infinite;
}

@keyframes flicker {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }

    52% {
        opacity: 0.4;
    }

    54% {
        opacity: 1;
    }
}

.description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.highlight {
    color: var(--primary-cyan);
    font-weight: 700;
    text-shadow: var(--glow-cyan);
}

/* Countdown Section */
.countdown-section {
    text-align: center;
}

.countdown-label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.progress-bar {
    position: relative;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: var(--space-md);
}

.progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-purple), var(--primary-magenta));
    border-radius: 2px;
    transition: width 1s ease;
}

.progress-glow {
    position: absolute;
    right: 0;
    top: -4px;
    width: 20px;
    height: 12px;
    background: var(--primary-cyan);
    filter: blur(8px);
    animation: glowPulse 1s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xs);
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.time-value {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-cyan);
    text-shadow: var(--glow-cyan);
}

.time-label {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

.time-separator {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary-purple);
    animation: separatorBlink 1s step-start infinite;
}

@keyframes separatorBlink {
    50% {
        opacity: 0.3;
    }
}

/* Form Section */
.waitlist-form {
    text-align: center;
}

.form-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--primary-purple);
    margin-bottom: var(--space-md);
}

#waitlist-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.input-wrapper {
    position: relative;
}

#email {
    width: 100%;
    padding: 1rem 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
}

#email::placeholder {
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

#email:focus {
    border-color: var(--primary-cyan);
    box-shadow: var(--glow-cyan), inset 0 0 20px rgba(0, 240, 255, 0.1);
}

.input-border {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#email:focus~.input-border {
    opacity: 1;
    animation: inputPulse 2s ease-in-out infinite;
}

@keyframes inputPulse {

    0%,
    100% {
        box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 0 4px rgba(0, 240, 255, 0.1);
    }
}

.submit-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--bg-dark);
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-green));
    border: none;
    border-radius: 12px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(4px);
}

.btn-ripple {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateX(-100%);
}

.submit-btn:hover .btn-ripple {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    100% {
        transform: translateX(100%);
    }
}

.form-subtext {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-top: var(--space-xs);
}

/* Stats Section */
.stats-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--glass-border);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-cyan);
    text-shadow: var(--glow-cyan);
}

.stat-label {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--primary-purple), transparent);
}

/* ============================================
   FOOTER
   ============================================ */

.footer-section {
    text-align: center;
    margin-top: var(--space-lg);
}

.binary-text {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
    animation: binaryFlicker 4s linear infinite;
}

@keyframes binaryFlicker {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.footer-link {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-cyan);
    text-shadow: var(--glow-cyan);
}

.link-sep {
    color: var(--text-muted);
}

.copyright {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

/* ============================================
   MODAL
   ============================================ */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: var(--space-xl);
    max-width: 400px;
    width: 90%;
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s ease;
}

.modal-overlay.active .modal-card {
    transform: scale(1) translateY(0);
}

.modal-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    border-radius: 26px;
    z-index: -1;
    filter: blur(20px);
    opacity: 0.3;
}

.modal-content {
    text-align: center;
}

.success-icon {
    font-size: 3rem;
    color: var(--accent-green);
    text-shadow: 0 0 40px rgba(0, 255, 136, 0.6);
    animation: iconPulse 1s ease-in-out infinite;
    margin-bottom: var(--space-md);
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.modal-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    color: var(--primary-cyan);
    margin-bottom: var(--space-sm);
}

.modal-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.modal-code {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--accent-green);
    background: rgba(0, 255, 136, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    margin-bottom: var(--space-md);
}

.modal-close {
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    background: transparent;
    border: 1px solid var(--primary-cyan);
    padding: 0.75rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--primary-cyan);
    color: var(--bg-dark);
    box-shadow: var(--glow-cyan);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .main-container {
        padding: var(--space-md);
    }

    .glass-card {
        padding: var(--space-lg);
    }

    .countdown-timer {
        gap: 0;
    }

    .time-unit {
        min-width: 50px;
    }

    .stats-section {
        gap: var(--space-md);
    }

    .cipher-header {
        gap: var(--space-sm);
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .main-logo {
        letter-spacing: 0.1em;
    }

    .v2-badge {
        font-size: 1rem;
    }

    .status-text {
        font-size: 0.6rem;
        letter-spacing: 0.15em;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}

/* ============================================
   VALENTINE'S DAY THEMED STYLES
   ============================================ */

/* Hearts Container */
.hearts-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
    overflow: hidden;
}

/* Floating Hearts Animation */
.floating-heart {
    position: absolute;
    bottom: -50px;
    animation: floatUp 6s ease-out forwards;
    opacity: 0;
    pointer-events: none;
    filter: drop-shadow(0 0 10px rgba(255, 105, 180, 0.5));
}

@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
        transform: translateY(-10vh) rotate(10deg) scale(1);
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-110vh) rotate(360deg) scale(0.5);
        opacity: 0;
    }
}

/* Love Hint Text */
.love-hint {
    font-size: 0.85rem;
    color: #ff69b4;
    margin-top: var(--space-sm);
    opacity: 0.8;
    animation: loveHintPulse 3s ease-in-out infinite;
    text-shadow: 0 0 15px rgba(255, 105, 180, 0.5);
    transition: opacity 0.5s ease;
}

@keyframes loveHintPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

/* Valentine's Date Badge */
.valentine-date {
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: #ff69b4;
    margin-bottom: var(--space-sm);
    animation: datePulse 2s ease-in-out infinite;
}

@keyframes datePulse {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
    }

    50% {
        text-shadow: 0 0 25px rgba(255, 105, 180, 0.8);
    }
}

/* Secret Message */
.secret-message {
    font-size: 0.8rem;
    color: #ff69b4;
    margin-top: var(--space-md);
    opacity: 0;
    transition: opacity 0.5s ease;
    text-shadow: 0 0 20px rgba(255, 105, 180, 0.6);
    line-height: 1.6;
}

/* Romantic Mode - Activated by Easter Egg */
body.romantic-mode {
    --primary-cyan: #ff69b4;
    --primary-purple: #ff1493;
    --primary-magenta: #ff006e;
}

body.romantic-mode .glass-border {
    background: linear-gradient(135deg,
            rgba(255, 105, 180, 0.5) 0%,
            rgba(255, 20, 147, 0.3) 25%,
            rgba(255, 0, 110, 0.5) 50%,
            rgba(255, 105, 180, 0.3) 75%,
            rgba(255, 20, 147, 0.5) 100%);
}

body.romantic-mode .glow-orb {
    filter: blur(80px) hue-rotate(300deg);
}

/* Launch Day Special */
body.launch-day {
    --primary-cyan: #ff69b4;
    --primary-purple: #ff1493;
}

body.launch-day .main-logo {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 50%, #ff006e 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

body.launch-day .v2-badge {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    animation: launchPulse 0.5s ease-in-out infinite;
}

@keyframes launchPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Footer Link Heart Hover */
.footer-link:hover {
    color: #ff69b4;
    text-shadow: 0 0 15px rgba(255, 105, 180, 0.8);
}

#easter-egg {
    color: #ff69b4;
}

#easter-egg:hover {
    animation: heartBeat 0.5s ease-in-out;
}

@keyframes heartBeat {

    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.2);
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.2);
    }
}

/* Submit Button Heart Icon */
.btn-icon {
    color: inherit;
    font-size: 1.1em;
}

.submit-btn:hover .btn-icon {
    transform: scale(1.2);
    animation: heartBounce 0.6s ease-in-out infinite;
}

@keyframes heartBounce {

    0%,
    100% {
        transform: scale(1.2);
    }

    50% {
        transform: scale(1.4);
    }
}

/* Modal Heart Icon */
.success-icon {
    filter: drop-shadow(0 0 20px rgba(255, 105, 180, 0.8));
}

/* Binary Love Highlight */
#binary-love {
    transition: all 0.3s ease;
}

#binary-love:hover {
    color: #ff69b4;
    text-shadow: 0 0 15px rgba(255, 105, 180, 0.6);
    cursor: pointer;
}