/*
Theme Name: Aurex Coming Soon
Theme URI: https://aurex.com
Author: Aurex
Author URI: https://aurex.com
Description: A stunning, animated Coming Soon / Launching Soon page for Aurex with particle effects, countdown timer, and premium glassmorphism design.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aurex-coming-soon
*/

/* ===== CSS Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --aurex-blue: #1E90FF;
    --aurex-red: #E63946;
    --aurex-dark: #0a0a1a;
    --aurex-darker: #050510;
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glow-blue: rgba(30, 144, 255, 0.3);
    --glow-red: rgba(230, 57, 70, 0.3);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-muted: rgba(255, 255, 255, 0.35);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--aurex-darker);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== Preloader ===== */
#aurex-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--aurex-darker);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#aurex-preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-ring {
    width: 60px;
    height: 60px;
    border: 3px solid transparent;
    border-top-color: var(--aurex-blue);
    border-right-color: var(--aurex-red);
    border-radius: 50%;
    animation: preloaderSpin 1s linear infinite;
}

@keyframes preloaderSpin {
    to { transform: rotate(360deg); }
}

/* ===== Background Canvas ===== */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ===== Animated Gradient Orbs ===== */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

.bg-orb--blue {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--aurex-blue), transparent 70%);
    top: -200px;
    right: -200px;
    animation: orbFloat1 15s ease-in-out infinite;
}

.bg-orb--red {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--aurex-red), transparent 70%);
    bottom: -200px;
    left: -200px;
    animation: orbFloat2 18s ease-in-out infinite;
}

.bg-orb--purple {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #7B2FFF, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbFloat3 20s ease-in-out infinite;
    opacity: 0.2;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-80px, 60px) scale(1.1); }
    50% { transform: translate(-40px, 120px) scale(0.9); }
    75% { transform: translate(40px, 40px) scale(1.05); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(60px, -80px) scale(1.1); }
    50% { transform: translate(120px, -40px) scale(0.95); }
    75% { transform: translate(40px, -60px) scale(1.05); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    33% { transform: translate(-40%, -60%) scale(1.2); }
    66% { transform: translate(-60%, -40%) scale(0.8); }
}

/* ===== Grid Lines Background ===== */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
}

/* ===== Main Container ===== */
.aurex-main {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
}

/* ===== Logo Section ===== */
.aurex-logo-wrap {
    margin-bottom: 20px;
    animation: logoReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
    position: relative;
}

.aurex-logo-wrap::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--aurex-blue), var(--aurex-red));
    border-radius: 2px;
    animation: lineExpand 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

.aurex-logo {
    width: 220px;
    height: auto;
    filter: drop-shadow(0 0 30px var(--glow-blue));
    transition: filter 0.5s ease;
}

.aurex-logo:hover {
    filter: drop-shadow(0 0 50px var(--glow-blue)) drop-shadow(0 0 80px var(--glow-red));
}

@keyframes logoReveal {
    from {
        opacity: 0;
        transform: translateY(-40px) scale(0.8);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes lineExpand {
    from { width: 0; opacity: 0; }
    to { width: 80px; opacity: 1; }
}

/* ===== Glass Card ===== */
.aurex-glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 60px 50px;
    max-width: 700px;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: cardReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.aurex-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--aurex-blue), var(--aurex-red), transparent);
    animation: shimmerTop 5s linear infinite;
}

.aurex-glass-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: 0;
    width: 1px;
    height: 200%;
    background: linear-gradient(180deg, transparent, var(--aurex-blue), transparent);
    animation: shimmerRight 6s linear infinite;
}

@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
        filter: blur(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes shimmerTop {
    from { transform: translateX(-50%); }
    to { transform: translateX(0%); }
}

@keyframes shimmerRight {
    from { transform: translateY(-50%); }
    to { transform: translateY(0%); }
}

/* ===== Badge ===== */
.aurex-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.15), rgba(230, 57, 70, 0.15));
    border: 1px solid rgba(30, 144, 255, 0.25);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--aurex-blue);
    margin-bottom: 30px;
    animation: badgePulse 3s ease-in-out infinite;
}

.aurex-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--aurex-red);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(30, 144, 255, 0.1); }
    50% { box-shadow: 0 0 0 10px rgba(30, 144, 255, 0); }
}

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

/* ===== Headings ===== */
.aurex-heading {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.7) 50%, #ffffff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 4s ease-in-out infinite, headingReveal 1s ease 0.7s both;
}

.aurex-heading .highlight {
    background: linear-gradient(135deg, var(--aurex-blue), var(--aurex-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

@keyframes headingReveal {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.aurex-subheading {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 40px;
    animation: fadeInUp 1s ease 0.9s both;
}

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

/* ===== Contact Info ===== */
.aurex-contact {
    margin-top: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.support-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.15), rgba(230, 57, 70, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    animation: fadeInUp 1s ease 1.1s both;
}

.support-email span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.support-email:hover {
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.3), rgba(230, 57, 70, 0.3));
    border-color: rgba(30, 144, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.2);
    color: #fff;
}

.support-email svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}/* ===== Footer ===== */
.aurex-footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 30px 20px;
    color: var(--text-muted);
    font-size: 13px;
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease 1.7s both;
}

.aurex-footer a {
    color: var(--aurex-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.aurex-footer a:hover {
    color: var(--aurex-red);
}

/* ===== Floating Particles (CSS) ===== */
.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(30, 144, 255, 0.5);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

.particle:nth-child(odd) {
    background: rgba(230, 57, 70, 0.4);
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) translateX(10px) scale(1);
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-10vh) translateX(-20px) scale(0.5);
        opacity: 0;
    }
}

/* ===== Mouse Glow Effect ===== */
.mouse-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 144, 255, 0.08), transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: left 0.3s ease-out, top 0.3s ease-out;
}



/* ===== Responsive ===== */
@media (max-width: 768px) {
    .aurex-glass-card {
        padding: 40px 25px;
        border-radius: 20px;
    }

    .support-email {
        font-size: 13px;
        padding: 12px 16px;
        width: 100%;
    }

    .aurex-logo {
        width: 160px;
    }

    .bg-orb--blue { width: 300px; height: 300px; }
    .bg-orb--red { width: 250px; height: 250px; }
    .bg-orb--purple { width: 200px; height: 200px; }
}

@media (max-width: 480px) {
    .support-email {
        font-size: 11px;
        padding: 10px 12px;
        letter-spacing: 0.5px;
        gap: 6px;
    }
}
