/* ================================================================================
   5 SENSES HUB - ENTERPRISE PREMIUM FUTURISTIC DESIGN SYSTEM
   A Luxury Brand Experience for Multi-Sensory Business Platform
   ================================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ========== DESIGN TOKENS / CSS VARIABLES ========== */
:root {
    /* Brand Colors */
    --5sh-main: #553c1e;
    --5sh-gold: #ffdf00;
    --5sh-blue: #07208d;
    --5sh-beige: #e0c5ac;

    /* Neon Spectrum */
    --neon-cyan: #00f5ff;
    --neon-purple: #bf00ff;
    --neon-pink: #ff00aa;
    --neon-gold: #ffd700;
    --neon-green: #00ff88;
    --neon-orange: #ff6600;

    /* Dark Luxury Palette */
    --dark-void: #000000;
    --dark-space: #050510;
    --dark-nebula: #0a0a1a;
    --dark-cosmos: #101025;
    --dark-galaxy: #1a1a3a;

    /* Glassmorphism */
    --glass-light: rgba(255, 255, 255, 0.08);
    --glass-medium: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-glow: rgba(0, 245, 255, 0.1);

    /* Typography */
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    --font-accent: 'Rajdhani', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;

    /* Animation Timing */
    --ease-smooth: cubic-bezier(0.23, 1, 0.32, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-elastic: cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* ========== GLOBAL RESET & BASE ========== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body) !important;
    background: var(--dark-space) !important;
    color: #ffffff !important;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========== IMMERSIVE SPACE BACKGROUND ========== */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        /* Deep space nebula layers */
        radial-gradient(ellipse 80% 50% at 10% 90%, rgba(191, 0, 255, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 90% 10%, rgba(0, 245, 255, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 70% 60% at 50% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 70% 70%, rgba(255, 0, 170, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 30% 30%, rgba(0, 255, 136, 0.1) 0%, transparent 40%),
        /* Cosmic gradient base */
        linear-gradient(180deg,
            var(--dark-void) 0%,
            var(--dark-space) 10%,
            var(--dark-nebula) 30%,
            var(--dark-cosmos) 50%,
            var(--dark-nebula) 70%,
            var(--dark-space) 90%,
            var(--dark-void) 100%);
    z-index: -3;
    animation: nebulaFlow 30s ease-in-out infinite alternate;
}

@keyframes nebulaFlow {
    0% {
        filter: hue-rotate(0deg) brightness(1);
        transform: scale(1);
    }
    50% {
        filter: hue-rotate(15deg) brightness(1.1);
        transform: scale(1.02);
    }
    100% {
        filter: hue-rotate(-10deg) brightness(1.05);
        transform: scale(1.01);
    }
}

/* Floating Star Field */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 300%;
    height: 300%;
    background-image:
        /* Large stars */
        radial-gradient(3px 3px at 100px 50px, rgba(255,255,255,0.9), transparent),
        radial-gradient(3px 3px at 400px 150px, rgba(0,245,255,0.8), transparent),
        radial-gradient(3px 3px at 700px 100px, rgba(255,215,0,0.8), transparent),
        radial-gradient(3px 3px at 250px 300px, rgba(191,0,255,0.7), transparent),
        radial-gradient(3px 3px at 550px 400px, rgba(255,255,255,0.8), transparent),
        /* Medium stars */
        radial-gradient(2px 2px at 50px 200px, rgba(255,255,255,0.7), transparent),
        radial-gradient(2px 2px at 150px 80px, rgba(0,245,255,0.6), transparent),
        radial-gradient(2px 2px at 300px 180px, rgba(255,215,0,0.6), transparent),
        radial-gradient(2px 2px at 450px 280px, rgba(191,0,255,0.5), transparent),
        radial-gradient(2px 2px at 600px 50px, rgba(255,0,170,0.6), transparent),
        radial-gradient(2px 2px at 180px 420px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 380px 320px, rgba(0,255,136,0.5), transparent),
        radial-gradient(2px 2px at 520px 180px, rgba(0,245,255,0.5), transparent),
        /* Small stars */
        radial-gradient(1px 1px at 80px 120px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 200px 250px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 350px 50px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 480px 350px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 650px 200px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 120px 380px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 280px 450px, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 420px 100px, rgba(255,255,255,0.5), transparent);
    background-size: 800px 600px;
    animation: starDrift 120s linear infinite;
    z-index: -2;
    pointer-events: none;
    opacity: 0.9;
}

@keyframes starDrift {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-66.666%, -66.666%) rotate(5deg); }
}

/* Cyber Grid Overlay */
.wp-site-blocks::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg, rgba(0, 245, 255, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(0, 245, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: -1;
    pointer-events: none;
    animation: gridPulse 10s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* ========== TYPOGRAPHY SYSTEM ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display) !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.2;
}

/* Hero Title - Maximum Impact */
h1.wp-block-heading,
.wp-block-post-title,
.hero-title {
    font-size: clamp(2.5rem, 10vw, 7rem) !important;
    font-weight: 900 !important;
    background: linear-gradient(
        135deg,
        var(--neon-gold) 0%,
        #ffffff 20%,
        var(--neon-cyan) 40%,
        #ffffff 60%,
        var(--neon-purple) 80%,
        var(--neon-gold) 100%
    ) !important;
    background-size: 300% 300% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: holoShift 8s ease-in-out infinite;
    filter: drop-shadow(0 0 60px rgba(255, 215, 0, 0.4))
            drop-shadow(0 0 120px rgba(0, 245, 255, 0.2));
    position: relative;
}

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

/* Section Titles */
h2.wp-block-heading {
    font-size: clamp(1.8rem, 5vw, 3.5rem) !important;
    font-weight: 700 !important;
    color: transparent !important;
    background: linear-gradient(90deg, var(--neon-cyan) 0%, #ffffff 50%, var(--neon-purple) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGradient 5s ease infinite;
    position: relative;
    display: inline-block;
}

h2.wp-block-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple), var(--neon-cyan));
    background-size: 200% 100%;
    animation: lineGlow 3s ease infinite;
    border-radius: 2px;
    box-shadow: 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-purple);
}

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

@keyframes lineGlow {
    0%, 100% { background-position: 0% 50%; opacity: 0.8; }
    50% { background-position: 100% 50%; opacity: 1; }
}

/* Card Titles */
h3.wp-block-heading {
    font-size: clamp(1.2rem, 3vw, 1.8rem) !important;
    font-weight: 600 !important;
    color: var(--neon-gold) !important;
    text-shadow:
        0 0 10px rgba(255, 215, 0, 0.5),
        0 0 30px rgba(255, 215, 0, 0.3),
        0 0 60px rgba(255, 215, 0, 0.1);
    transition: all 0.4s var(--ease-smooth);
}

h3.wp-block-heading:hover {
    text-shadow:
        0 0 15px rgba(255, 215, 0, 0.8),
        0 0 40px rgba(255, 215, 0, 0.5),
        0 0 80px rgba(255, 215, 0, 0.3);
    transform: translateX(5px);
}

/* Body Text */
p, li, span, div {
    font-family: var(--font-body) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ========== GLASSMORPHISM CARDS ========== */
.wp-block-column,
.wp-block-group.has-background {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.02) 100%
    ) !important;
    backdrop-filter: blur(30px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(30px) saturate(150%) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 24px !important;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 32px 64px -32px rgba(0, 245, 255, 0.1) !important;
    transition: all 0.6s var(--ease-smooth) !important;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    padding: 2rem !important;
}

/* Card Hover States */
.wp-block-column:hover,
.wp-block-group.has-background:hover {
    transform: translateY(-15px) scale(1.02) rotateX(2deg) !important;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(0, 245, 255, 0.15),
        0 0 120px rgba(191, 0, 255, 0.1),
        0 0 0 1px rgba(0, 245, 255, 0.3) inset !important;
    border-color: rgba(0, 245, 255, 0.4) !important;
}

/* Card Glow Border Animation */
.wp-block-column::before,
.wp-block-group.has-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(
        135deg,
        var(--neon-cyan) 0%,
        var(--neon-purple) 25%,
        var(--neon-pink) 50%,
        var(--neon-gold) 75%,
        var(--neon-cyan) 100%
    );
    background-size: 400% 400%;
    -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;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: borderGradient 6s linear infinite;
}

.wp-block-column:hover::before,
.wp-block-group.has-background:hover::before {
    opacity: 1;
}

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

/* Card Inner Glow */
.wp-block-column::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(0, 245, 255, 0.15) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.wp-block-column:hover::after {
    opacity: 1;
}

/* ========== ANTIGRAVITY FLOATING ANIMATION ========== */
.wp-block-columns > .wp-block-column {
    animation: antigravity var(--float-duration, 6s) var(--ease-smooth) infinite;
}

.wp-block-columns > .wp-block-column:nth-child(1) { --float-duration: 6s; --float-delay: 0s; }
.wp-block-columns > .wp-block-column:nth-child(2) { --float-duration: 7s; --float-delay: 0.5s; }
.wp-block-columns > .wp-block-column:nth-child(3) { --float-duration: 8s; --float-delay: 1s; }
.wp-block-columns > .wp-block-column:nth-child(4) { --float-duration: 6.5s; --float-delay: 1.5s; }
.wp-block-columns > .wp-block-column:nth-child(5) { --float-duration: 7.5s; --float-delay: 2s; }

@keyframes antigravity {
    0%, 100% {
        transform: translateY(0) rotate3d(1, 1, 0, 0deg);
        filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    }
    25% {
        transform: translateY(-15px) rotate3d(1, 0, 0, 2deg);
        filter: drop-shadow(0 25px 50px rgba(0, 245, 255, 0.15));
    }
    50% {
        transform: translateY(-25px) rotate3d(0, 1, 0, 2deg);
        filter: drop-shadow(0 35px 60px rgba(191, 0, 255, 0.15));
    }
    75% {
        transform: translateY(-12px) rotate3d(1, 1, 0, -1deg);
        filter: drop-shadow(0 22px 45px rgba(255, 215, 0, 0.1));
    }
}

/* ========== PREMIUM BUTTONS ========== */
.wp-block-button__link {
    font-family: var(--font-display) !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    padding: 18px 40px !important;
    border-radius: 50px !important;
    background: transparent !important;
    border: 2px solid var(--neon-cyan) !important;
    color: var(--neon-cyan) !important;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-smooth) !important;
    cursor: pointer;
    z-index: 1;
}

/* Button Background Fill Effect */
.wp-block-button__link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-purple) 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s var(--ease-smooth);
    z-index: -1;
}

.wp-block-button__link:hover::before {
    width: 400px;
    height: 400px;
}

.wp-block-button__link:hover {
    color: var(--dark-void) !important;
    border-color: transparent !important;
    box-shadow:
        0 10px 40px rgba(0, 245, 255, 0.4),
        0 0 80px rgba(191, 0, 255, 0.3);
    transform: translateY(-3px) scale(1.02);
}

/* Button Shine Effect */
.wp-block-button__link::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: rotate(25deg);
    transition: left 0.7s ease;
}

.wp-block-button__link:hover::after {
    left: 130%;
}

/* Button Pulse Ring */
.wp-block-button {
    position: relative;
}

.wp-block-button::before,
.wp-block-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid var(--neon-cyan);
    border-radius: 50px;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: buttonPulse 3s ease-out infinite;
}

.wp-block-button::after {
    animation-delay: 1.5s;
}

@keyframes buttonPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* ========== NAVIGATION PREMIUM ========== */
header,
.wp-block-template-part {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        transparent 100%
    ) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wp-block-navigation a {
    font-family: var(--font-display) !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 8px 16px !important;
    position: relative;
    transition: all 0.4s var(--ease-smooth) !important;
}

.wp-block-navigation a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    transform: translateX(-50%);
    transition: width 0.4s var(--ease-smooth);
    box-shadow: 0 0 10px var(--neon-cyan);
}

.wp-block-navigation a:hover {
    color: var(--neon-cyan) !important;
    text-shadow: 0 0 30px var(--neon-cyan);
}

.wp-block-navigation a:hover::before {
    width: 80%;
}

/* ========== FOOTER PREMIUM ========== */
footer,
.wp-block-template-part[data-slug="footer"] {
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.8) 20%,
        rgba(0, 0, 0, 0.95) 100%
    ) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-top: 4rem !important;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--neon-cyan),
        var(--neon-purple),
        var(--neon-cyan),
        transparent
    );
    box-shadow: 0 0 20px var(--neon-cyan);
}

/* ========== ICONS & EMOJIS GLOW ========== */
.wp-block-column p:first-of-type,
p[style*="font-size:48px"],
p[style*="font-size:36px"] {
    filter: drop-shadow(0 0 30px currentColor);
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1) translateY(0);
        filter: drop-shadow(0 0 30px currentColor);
    }
    50% {
        transform: scale(1.15) translateY(-8px);
        filter: drop-shadow(0 0 50px currentColor) brightness(1.2);
    }
}

/* ========== IMAGES PREMIUM ========== */
img,
.wp-block-image img {
    border-radius: 16px;
    transition: all 0.6s var(--ease-smooth);
    filter: saturate(1.1) contrast(1.05);
}

.wp-block-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.wp-block-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 245, 255, 0.1) 0%,
        transparent 50%,
        rgba(191, 0, 255, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
    border-radius: 16px;
}

.wp-block-image:hover::before {
    opacity: 1;
}

.wp-block-image:hover img {
    transform: scale(1.05);
    filter: saturate(1.2) contrast(1.1);
}

/* ========== QUOTE BLOCK PREMIUM ========== */
.wp-block-quote,
blockquote {
    background: linear-gradient(
        135deg,
        rgba(255, 215, 0, 0.08) 0%,
        rgba(255, 215, 0, 0.02) 100%
    ) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 215, 0, 0.2) !important;
    border-left: 4px solid var(--neon-gold) !important;
    border-radius: 0 20px 20px 0 !important;
    padding: 2.5rem 3rem !important;
    position: relative;
    overflow: hidden;
    margin: 2rem 0 !important;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(255, 215, 0, 0.1) inset;
}

.wp-block-quote::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: 20px;
    font-size: 200px;
    font-family: Georgia, serif;
    color: rgba(255, 215, 0, 0.1);
    line-height: 1;
    pointer-events: none;
}

.wp-block-quote p {
    font-size: 1.3rem !important;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95) !important;
}

/* ========== SEPARATOR PREMIUM ========== */
.wp-block-separator,
hr {
    height: 3px !important;
    border: none !important;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--neon-cyan) 20%,
        var(--neon-purple) 50%,
        var(--neon-gold) 80%,
        transparent 100%
    ) !important;
    border-radius: 3px !important;
    margin: 4rem auto !important;
    max-width: 600px !important;
    box-shadow:
        0 0 20px var(--neon-cyan),
        0 0 40px var(--neon-purple),
        0 0 60px var(--neon-gold);
    animation: separatorGlow 4s ease-in-out infinite;
}

@keyframes separatorGlow {
    0%, 100% {
        opacity: 0.8;
        filter: blur(0px);
    }
    50% {
        opacity: 1;
        filter: blur(1px);
    }
}

/* ========== LIST ITEMS PREMIUM ========== */
ul, ol {
    list-style: none !important;
    padding-left: 0 !important;
}

li {
    position: relative;
    padding-left: 30px !important;
    margin-bottom: 12px;
}

li::before {
    content: '›';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--neon-cyan);
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 0 10px var(--neon-cyan);
    animation: listGlow 2s ease-in-out infinite;
}

@keyframes listGlow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* ========== COVER BLOCK ENHANCEMENT ========== */
.wp-block-cover {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.wp-block-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, rgba(191, 0, 255, 0.3) 0%, transparent 40%),
        linear-gradient(225deg, rgba(0, 245, 255, 0.3) 0%, transparent 40%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

/* ========== SCROLLBAR PREMIUM ========== */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-void);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(
        180deg,
        var(--neon-cyan) 0%,
        var(--neon-purple) 50%,
        var(--neon-gold) 100%
    );
    border-radius: 5px;
    border: 2px solid var(--dark-void);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
        180deg,
        var(--neon-gold) 0%,
        var(--neon-cyan) 50%,
        var(--neon-purple) 100%
    );
}

/* ========== SELECTION HIGHLIGHT ========== */
::selection {
    background: var(--neon-cyan) !important;
    color: var(--dark-void) !important;
    text-shadow: none !important;
}

::-moz-selection {
    background: var(--neon-cyan) !important;
    color: var(--dark-void) !important;
}

/* ========== LINK STYLES ========== */
a:not(.wp-block-button__link):not(.wp-block-navigation-item__content) {
    color: var(--neon-cyan) !important;
    text-decoration: none !important;
    position: relative;
    transition: all 0.3s ease !important;
}

a:not(.wp-block-button__link):not(.wp-block-navigation-item__content):hover {
    color: var(--neon-gold) !important;
    text-shadow: 0 0 20px var(--neon-gold);
}

a:not(.wp-block-button__link):not(.wp-block-navigation-item__content)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--neon-gold);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--neon-gold);
}

a:not(.wp-block-button__link):not(.wp-block-navigation-item__content):hover::after {
    width: 100%;
}

/* ========== TABLE PREMIUM ========== */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--glass-light);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

th {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.2) 0%, rgba(191, 0, 255, 0.1) 100%);
    color: var(--neon-cyan) !important;
    font-family: var(--font-display) !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 16px 20px;
    text-align: left;
    border-bottom: 2px solid var(--neon-cyan);
}

td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

tr:hover td {
    background: rgba(0, 245, 255, 0.05);
}

/* ========== FORM ELEMENTS PREMIUM ========== */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
textarea,
select {
    font-family: var(--font-body) !important;
    font-size: 1rem;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 12px !important;
    color: #ffffff !important;
    transition: all 0.4s var(--ease-smooth) !important;
    outline: none !important;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--neon-cyan) !important;
    box-shadow:
        0 0 0 3px rgba(0, 245, 255, 0.1),
        0 0 30px rgba(0, 245, 255, 0.2) !important;
    background: rgba(0, 245, 255, 0.05) !important;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* Submit Button */
input[type="submit"],
button[type="submit"] {
    font-family: var(--font-display) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    padding: 16px 40px !important;
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-purple) 100%) !important;
    border: none !important;
    border-radius: 50px !important;
    color: var(--dark-void) !important;
    cursor: pointer;
    transition: all 0.4s var(--ease-smooth) !important;
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3);
}

input[type="submit"]:hover,
button[type="submit"]:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 15px 40px rgba(0, 245, 255, 0.4),
        0 0 60px rgba(191, 0, 255, 0.3);
}

/* ========== SPECIAL SECTIONS ========== */
/* Hero Section */
.wp-block-cover.alignfull {
    min-height: 100vh !important;
}

/* Stats / Numbers */
.wp-block-column p strong {
    font-family: var(--font-display) !important;
    font-size: 3rem !important;
    background: linear-gradient(135deg, var(--neon-gold) 0%, var(--neon-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

/* ========== ANIMATIONS FOR SCROLL REVEAL ========== */
.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s var(--ease-smooth);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s var(--ease-smooth);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 1024px) {
    h1.wp-block-heading {
        font-size: clamp(2rem, 8vw, 4rem) !important;
    }

    h2.wp-block-heading {
        font-size: clamp(1.5rem, 5vw, 2.5rem) !important;
    }

    .wp-block-column {
        margin-bottom: 2rem !important;
    }
}

@media (max-width: 768px) {
    :root {
        font-size: 14px;
    }

    h1.wp-block-heading {
        font-size: clamp(1.8rem, 10vw, 3rem) !important;
        letter-spacing: 0.05em;
    }

    h2.wp-block-heading::after {
        display: none;
    }

    .wp-block-button__link {
        padding: 14px 28px !important;
        font-size: 0.8rem !important;
    }

    .wp-block-columns > .wp-block-column {
        animation: mobileFloat 5s var(--ease-smooth) infinite !important;
    }

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

    /* Reduce particle effects on mobile for performance */
    body::after {
        animation-duration: 200s;
        opacity: 0.5;
    }

    .wp-block-column::before,
    .wp-block-group.has-background::before {
        display: none;
    }
}

@media (max-width: 480px) {
    h1.wp-block-heading {
        font-size: 1.8rem !important;
    }

    .wp-block-column,
    .wp-block-group.has-background {
        padding: 1.5rem !important;
        border-radius: 16px !important;
    }

    .wp-block-quote {
        padding: 1.5rem 2rem !important;
    }
}

/* ========== PREFERS REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    body::before,
    body::after {
        animation: none !important;
    }
}

/* ========== PRINT STYLES ========== */
@media print {
    body::before,
    body::after,
    .wp-site-blocks::before {
        display: none !important;
    }

    * {
        color: #000 !important;
        background: #fff !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
}

/* ========== SPECIAL EFFECTS ========== */
/* Holographic Card Shine */
.wp-block-column.holo-card {
    background:
        linear-gradient(125deg,
            rgba(255,255,255,0.15) 0%,
            rgba(0,245,255,0.1) 20%,
            rgba(191,0,255,0.1) 40%,
            rgba(255,215,0,0.1) 60%,
            rgba(255,255,255,0.15) 80%,
            rgba(0,245,255,0.1) 100%
        ),
        var(--glass-light) !important;
    background-size: 200% 200%;
    animation: holoShine 10s linear infinite;
}

@keyframes holoShine {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 200%; }
}

/* Neon Text Glow for Specific Elements */
.neon-glow {
    animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% {
        text-shadow:
            0 0 5px currentColor,
            0 0 10px currentColor,
            0 0 20px currentColor,
            0 0 40px currentColor;
    }
    50% {
        text-shadow:
            0 0 10px currentColor,
            0 0 20px currentColor,
            0 0 40px currentColor,
            0 0 80px currentColor;
    }
}

/* Glitch Effect for Headlines */
.glitch-text {
    position: relative;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    left: 2px;
    text-shadow: -2px 0 var(--neon-cyan);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: -2px 0 var(--neon-purple);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim-2 2s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% { clip: rect(12px, 9999px, 94px, 0); }
    20% { clip: rect(65px, 9999px, 32px, 0); }
    40% { clip: rect(78px, 9999px, 17px, 0); }
    60% { clip: rect(35px, 9999px, 89px, 0); }
    80% { clip: rect(24px, 9999px, 67px, 0); }
    100% { clip: rect(89px, 9999px, 23px, 0); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(89px, 9999px, 23px, 0); }
    20% { clip: rect(24px, 9999px, 67px, 0); }
    40% { clip: rect(35px, 9999px, 89px, 0); }
    60% { clip: rect(78px, 9999px, 17px, 0); }
    80% { clip: rect(65px, 9999px, 32px, 0); }
    100% { clip: rect(12px, 9999px, 94px, 0); }
}

/* Data Stream Animation */
.data-stream::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        0deg,
        transparent 0%,
        rgba(0, 245, 255, 0.03) 50%,
        transparent 100%
    );
    background-size: 100% 10px;
    animation: dataScroll 2s linear infinite;
    pointer-events: none;
}

@keyframes dataScroll {
    0% { background-position: 0 0; }
    100% { background-position: 0 20px; }
}

/* Energy Orb */
.energy-orb {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(255, 255, 255, 0.8),
        rgba(0, 245, 255, 0.4) 30%,
        rgba(191, 0, 255, 0.3) 60%,
        rgba(255, 215, 0, 0.2) 80%,
        transparent
    );
    box-shadow:
        0 0 60px rgba(0, 245, 255, 0.5),
        0 0 120px rgba(191, 0, 255, 0.3),
        inset 0 0 60px rgba(255, 255, 255, 0.2);
    animation: orbPulse 4s ease-in-out infinite;
}

@keyframes orbPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow:
            0 0 60px rgba(0, 245, 255, 0.5),
            0 0 120px rgba(191, 0, 255, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow:
            0 0 80px rgba(0, 245, 255, 0.7),
            0 0 160px rgba(191, 0, 255, 0.5);
    }
}
