/* Stylesheet for Premium Animated Under Construction Page */

:root {
    --bg-main: #030407;
    --card-bg: rgba(9, 11, 20, 0.45);
    --border-glow: rgba(255, 255, 255, 0.055);
    --text-main: #f9fafb;
    --text-sub: #9ca3af;
    
    /* Neon gradients HSL mappings */
    --neon-blue: #3b82f6;
    --neon-purple: #a855f7;
    --neon-pink: #ec4899;
    --neon-cyan: #06b6d4;
    --neon-green: #10b981;
    
    --font-family: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-family);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* 1. Canvas overlay */
#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: all;
}

/* 2. Liquid Morphing Blobs */
.blob-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.morph-blob {
    position: absolute;
    filter: blur(140px);
    opacity: 0.35;
    mix-blend-mode: screen;
    animation: morphLiquid 18s infinite alternate ease-in-out;
}

.blob-purple {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--neon-purple) 0%, rgba(168, 85, 247, 0) 70%);
    top: -10%;
    left: -10%;
}

.blob-blue {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--neon-blue) 0%, rgba(59, 130, 246, 0) 70%);
    bottom: -15%;
    right: -10%;
    animation-delay: -6s;
}

.blob-cyan {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--neon-cyan) 0%, rgba(6, 118, 212, 0) 70%);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -12s;
    opacity: 0.25;
}

@keyframes morphLiquid {
    0% {
        border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        border-radius: 70% 30% 52% 48% / 60% 40% 60% 40%;
        transform: translate(40px, -60px) scale(1.08) rotate(120deg);
    }
    66% {
        border-radius: 50% 50% 30% 70% / 40% 60% 40% 60%;
        transform: translate(-50px, 30px) scale(0.92) rotate(240deg);
    }
    100% {
        border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
        transform: translate(0, 0) scale(1) rotate(360deg);
    }
}

/* 3. Main Viewport alignment */
.viewport-wrapper {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-svg {
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.4));
}

.spin-slow {
    transform-origin: 50px 50px;
    animation: rotateClockwise 20s infinite linear;
}

.pulse-slow {
    transform-origin: 50px 50px;
    animation: pulseNode 3s infinite alternate ease-in-out;
}

.brand-txt {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 4px;
    color: var(--text-main);
}

.brand-txt span {
    background: linear-gradient(90deg, #3b82f6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--neon-blue);
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    text-shadow: 0 0 8px rgba(59, 130, 246, 0.3);
}

/* 4. Showcase card container */
.content-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 40px 0;
}

.main-card {
    background: var(--card-bg);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--border-glow);
    border-radius: 32px;
    padding: 56px 48px;
    width: 100%;
    max-width: 620px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    text-align: center;
    position: relative;
}

/* Interactive Cog Node decoration */
.decor-nodes {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.interactive-node {
    filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.4));
}

.spin-clockwise {
    transform-origin: 50px 50px;
    animation: rotateClockwise 12s infinite linear;
}

.spin-counter-clockwise {
    transform-origin: 50px 50px;
    animation: rotateCounterClockwise 10s infinite linear;
}

.pulse-node {
    transform-origin: 50px 50px;
    animation: pulseNode 2s infinite alternate ease-in-out;
}

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

@keyframes rotateCounterClockwise {
    100% { transform: rotate(-360deg); }
}

@keyframes pulseNode {
    0% { transform: scale(0.9); opacity: 0.7; }
    100% { transform: scale(1.1); opacity: 1; }
}

/* Eyebrow tag */
.eyebrow-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--neon-pink);
    display: inline-block;
    margin-bottom: 16px;
    text-shadow: 0 0 10px rgba(236, 72, 153, 0.3);
}

/* Headline and Description */
.headline {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.15;
    background: linear-gradient(135deg, #ffffff 40%, #c084fc 75%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    color: var(--text-sub);
    font-size: 15px;
    line-height: 1.65;
    max-width: 490px;
    margin: 0 auto 36px auto;
}

/* 5. Laser Progress bar */
.laser-progress {
    max-width: 460px;
    margin: 0 auto 40px auto;
    text-align: left;
}

.progress-details {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.progress-title {
    color: var(--text-sub);
}

.progress-num {
    color: var(--neon-cyan);
    text-shadow: 0 0 8px rgba(6, 182, 212, 0.4);
}

.laser-track {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.laser-bar {
    height: 100%;
    width: 0%; /* Will animate in JS */
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple), var(--neon-pink));
    border-radius: 10px;
    position: relative;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.laser-glow {
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 15px var(--neon-pink),
                0 0 8px var(--neon-purple),
                0 0 4px #ffffff;
    animation: flashLaser 1.5s infinite alternate ease-in-out;
}

@keyframes flashLaser {
    0% { transform: translateY(-50%) scale(0.85); filter: brightness(1); }
    100% { transform: translateY(-50%) scale(1.15); filter: brightness(1.3); }
}

/* 6. Premium Support Contact Info */
.support-inquiry {
    margin: 40px auto 10px auto;
    text-align: center;
    max-width: 460px;
}

.support-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-sub);
    margin-bottom: 14px;
    opacity: 0.7;
}

.support-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 28px;
    border-radius: 16px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.support-link i {
    font-size: 16px;
    color: var(--neon-blue);
    filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.4));
}

.support-link:hover {
    color: #ffffff;
    border-color: rgba(168, 85, 247, 0.4);
    background: rgba(168, 85, 247, 0.04);
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.02);
    transform: translateY(-3px) scale(1.02);
}

.support-link:active {
    transform: translateY(-1px) scale(1);
}

/* 8. Bottom Footer & Social links */
.bottom-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 28px;
}

.copyright-txt {
    font-size: 12px;
    color: var(--text-sub);
    opacity: 0.8;
}

.developed-by {
    font-size: 12px;
    color: var(--text-sub);
    opacity: 0.8;
}

.developer-link {
    color: var(--neon-cyan) !important;
    text-decoration: none !important;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.developer-link:hover {
    color: var(--neon-pink) !important;
    text-shadow: 0 0 8px rgba(236, 72, 153, 0.6);
    transform: translateY(-1px);
}

/* 9. Premium success Toast alert */
.premium-toast {
    position: fixed;
    top: 32px;
    right: 32px;
    background: rgba(6, 8, 14, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    z-index: 100;
    transform: translateX(130%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.15);
    overflow: hidden;
}

.premium-toast.show {
    transform: translateX(0);
}

.toast-indicator {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(to bottom, var(--neon-blue), var(--neon-purple));
}

.toast-body {
    display: flex;
    align-items: center;
    gap: 16px;
}

.check-icon {
    color: var(--neon-green);
    font-size: 26px;
    filter: drop-shadow(0 0 6px rgba(16, 185, 129, 0.3));
}

.toast-txt h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}

.toast-txt p {
    font-size: 11px;
    color: var(--text-sub);
}

.toast-close-btn {
    background: transparent;
    border: none;
    color: var(--text-sub);
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
}

.toast-close-btn:hover {
    color: #ffffff;
}

/* 10. Responsive rules */
@media (max-width: 768px) {
    .viewport-wrapper {
        padding: 24px;
    }
    
    .navbar {
        flex-direction: column;
        gap: 16px;
    }
    
    .main-card {
        padding: 40px 24px;
    }
    
    .headline {
        font-size: 30px;
    }
    
    .bottom-footer {
        flex-direction: column-reverse;
        gap: 16px;
        padding-top: 20px;
    }
}

@media (max-width: 480px) {
    .support-link {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
}
