/* ========================================
   NATASHA LOPEZ DE VICTORIA - LOADING SCREEN
   Elegant/Classic/Sophisticated/Sacred Geometry
   ======================================== */

/* Initial black screen for smooth fade-in */
body {
    background-color: #000000;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Prevent scrolling during loading */
    transition: background-color 2.5s ease-in-out;
}

body.site-loaded {
    overflow: auto; /* Restore scrolling after loading */
    background: 
        radial-gradient(ellipse at center, #1e2a3a 0%, #1a1a1a 70%),
        linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 50%, #0f0f0f 100%);
    background-attachment: fixed;
}

/* Main site container - hidden initially */
.main-content {
    opacity: 0;
    transition: opacity 2.5s ease-in-out;
    position: relative;
    z-index: 1;
}

body.site-loaded .main-content {
    opacity: 1;
}

/* Ensure no background flashes during transition */
.main-content::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(232, 180, 160, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(247, 231, 206, 0.01) 0%, transparent 50%);
    z-index: -1;
    opacity: 0;
    transition: opacity 2.5s ease-in-out;
}

body.site-loaded .main-content::before {
    opacity: 1;
}

:root {
    --primary-gold: #d4af37;
    --deep-gold: #b8860b;
    --warm-white: #f8f6f0;
    --soft-cream: #faf8f2;
    --elegant-black: #1a1a1a;
    --charcoal: #2c2c2c;
    --platinum: #e5e4e2;
    --rose-gold: #e8b4a0;
    --champagne: #f7e7ce;
    --deep-navy: #1e2a3a;
    --soft-silver: #c9c9c9;
    --ivory: #fffff0;
    --warm-gray: #8b8680;
}

/* Main Loading Screen Container */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, var(--deep-navy) 0%, var(--elegant-black) 70%),
        linear-gradient(135deg, var(--charcoal) 0%, var(--elegant-black) 50%, #0f0f0f 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
    opacity: 0;
    transition: opacity 2s ease, visibility 2s ease;
    animation: loading-entrance 2s ease-out forwards;
}

@keyframes loading-entrance {
    0% {
        opacity: 0;
        transform: scale(1.02);
        filter: brightness(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: brightness(1);
    }
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
    animation: loading-exit 3s ease-in-out forwards;
}

@keyframes loading-exit {
    0% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0px) brightness(1);
        z-index: 9999;
    }
    50% {
        opacity: 0.5;
        transform: scale(0.98);
        filter: blur(1px) brightness(0.8);
        z-index: 9999;
    }
    100% {
        opacity: 0;
        transform: scale(0.95);
        filter: blur(2px) brightness(0.5);
        z-index: -1;
    }
}

/* Enhanced Visual Effects */
.loading-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(232, 180, 160, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 60% 20%, rgba(247, 231, 206, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    animation: ambient-glow 8s ease-in-out infinite;
}

@keyframes ambient-glow {
    0%, 100% { 
        opacity: 0.3;
        filter: blur(0px);
    }
    50% { 
        opacity: 0.6;
        filter: blur(1px);
    }
}

/* Luxury Loading Enhancement */
.loading-screen::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(212, 175, 55, 0.02) 25%,
        transparent 50%,
        rgba(232, 180, 160, 0.02) 75%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 2;
    animation: luxury-sweep 12s ease-in-out infinite;
}

@keyframes luxury-sweep {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Sacred Geometry Container with VIBRATION EFFECT enhancements */
.sacred-geometry-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    animation: vibration-container-pulse 6s ease-in-out infinite;
}

@keyframes vibration-container-pulse {
    0%, 100% {
        filter: brightness(1) hue-rotate(0deg);
        transform: scale(1);
    }
    50% {
        filter: brightness(1.1) hue-rotate(5deg);
        transform: scale(1.002);
    }
}

.geometry-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Hexagon Grid Layer */
.hexagon-grid {
    position: relative;
    width: 600px;
    height: 600px;
}

.hexagon {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hexagon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    border: 1px solid var(--primary-gold);
    border-radius: 0;
    transform: rotate(30deg);
    clip-path: polygon(50% 0%, 93.3% 25%, 93.3% 75%, 50% 100%, 6.7% 75%, 6.7% 25%);
    animation: 
        hexagon-pulse 6s ease-in-out infinite var(--delay),
        vibration-flicker-effect 3s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
}

.hexagon:nth-child(1) { transform: translate(-50%, -50%) rotate(0deg) translateY(-150px); }
.hexagon:nth-child(2) { transform: translate(-50%, -50%) rotate(60deg) translateY(-150px); }
.hexagon:nth-child(3) { transform: translate(-50%, -50%) rotate(120deg) translateY(-150px); }
.hexagon:nth-child(4) { transform: translate(-50%, -50%) rotate(180deg) translateY(-150px); }
.hexagon:nth-child(5) { transform: translate(-50%, -50%) rotate(240deg) translateY(-150px); }
.hexagon:nth-child(6) { transform: translate(-50%, -50%) rotate(300deg) translateY(-150px); }

@keyframes hexagon-pulse {
    0%, 100% { 
        opacity: 0.3;
        transform: rotate(30deg) scale(1);
        filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
    }
    50% { 
        opacity: 0.8;
        transform: rotate(30deg) scale(1.08);
        filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
    }
}

/* Mandala Circle Layer */
.mandala-circle {
    position: relative;
    width: 400px;
    height: 400px;
}

.mandala-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: mandala-rotate 20s linear infinite;
}

.mandala-ring-1 {
    width: 300px;
    height: 300px;
    border-color: var(--primary-gold);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
    animation-duration: 45s;
    animation-name: mandala-rotate, vibration-depth-shift;
    --depth-duration: 8s;
    --depth-delay: 0s;
}

.mandala-ring-2 {
    width: 250px;
    height: 250px;
    border-color: var(--rose-gold);
    box-shadow: 0 0 10px rgba(232, 180, 160, 0.2);
    animation-duration: 50s;
    animation-direction: reverse;
    animation-name: mandala-rotate, vibration-depth-shift;
    --depth-duration: 9s;
    --depth-delay: 2s;
}

.mandala-ring-3 {
    width: 200px;
    height: 200px;
    border-color: var(--champagne);
    box-shadow: 0 0 8px rgba(247, 231, 206, 0.2);
    animation-duration: 55s;
    animation-name: mandala-rotate, vibration-depth-shift;
    --depth-duration: 7s;
    --depth-delay: 4s;
}

.mandala-ring-4 {
    width: 150px;
    height: 150px;
    border-color: var(--platinum);
    box-shadow: 0 0 15px rgba(229, 228, 226, 0.2);
    animation-duration: 60s;
    animation-direction: reverse;
    animation-name: mandala-rotate, vibration-depth-shift;
    --depth-duration: 10s;
    --depth-delay: 6s;
}

@keyframes mandala-rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Fibonacci Spiral Layer */
.fibonacci-spiral {
    position: relative;
    width: 500px;
    height: 500px;
}

.spiral-segment {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(20px * var(--index));
    height: calc(20px * var(--index));
    border: 1px solid var(--soft-silver);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(calc(72deg * var(--index)));
    animation: spiral-flow 12s ease-in-out infinite calc(0.8s * var(--index));
    opacity: 0.4;
}

@keyframes spiral-flow {
    0%, 100% { 
        opacity: 0.2;
        transform: translate(-50%, -50%) rotate(calc(72deg * var(--index))) scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: translate(-50%, -50%) rotate(calc(72deg * var(--index))) scale(1.3);
    }
}

/* Flower of Life Layer */
.flower-of-life {
    position: relative;
    width: 300px;
    height: 300px;
}

.petal {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    border: 1px solid var(--warm-gray);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(var(--rotation)) translateY(-40px);
    animation: petal-bloom 10s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes petal-bloom {
    0%, 100% { 
        opacity: 0.3;
        transform: translate(-50%, -50%) rotate(var(--rotation)) translateY(-40px) scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: translate(-50%, -50%) rotate(var(--rotation)) translateY(-40px) scale(1.1);
    }
}

/* Loading Content */
.loading-content {
    position: relative;
    z-index: 50 !important; /* Higher z-index to be above overlays */
    text-align: center;
    max-width: 600px;
    padding: 40px;
    background: transparent !important; /* Ensure no background */
}

/* Enhanced Particle System */
.floating-element {
    filter: blur(0.5px);
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.4);
}

/* Sacred Geometry Particle System */
.cyber-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 50%;
    left: var(--x);
    top: var(--y);
    animation: particle-float var(--duration) ease-in-out infinite var(--delay);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.particle:nth-child(2n) {
    background: var(--rose-gold);
    box-shadow: 0 0 8px rgba(232, 180, 160, 0.4);
}

.particle:nth-child(3n) {
    background: var(--champagne);
    box-shadow: 0 0 8px rgba(247, 231, 206, 0.4);
}

@keyframes particle-float {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.2;
    }
    50% { 
        transform: translateY(-15px) scale(1.2);
        opacity: 0.7;
    }
}

/* Artist Name and Title Styling */
.artist-name-container {
    position: relative;
    z-index: 60 !important; /* Even higher z-index */
    text-align: center;
    margin-bottom: 40px;
    background: transparent !important; /* 100% transparent container - no visual interference */
    backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
}

.artist-monogram {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    animation: monogram-entrance 2s ease-out;
}

.monogram-letter {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.monogram-letter:hover {
    transform: scale(1.1);
    text-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
}

.artist-name {
    font-family: 'Avenir Next', 'Avenir', 'Proxima Nova', 'Futura', 'Helvetica Neue', 'Arial', sans-serif;
    font-size: clamp(32px, 8vw, 48px);
    font-weight: 300;
    text-align: center;
    margin: 0;
    margin-bottom: 15px;
    letter-spacing: 2px;
    line-height: 1.2;
    
    /* CRYSTAL CLEAR - No blur, maximum sharpness */
    position: relative;
    z-index: 100 !important;
    overflow: visible;
    
    /* Enhanced text rendering for maximum clarity */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "liga" 1, "kern" 1;
    
    /* Sharp, bright, highly visible text */
    color: #ffffff !important;
    text-shadow: 
        0 0 20px rgba(212, 175, 55, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.3);
    
    /* Remove any blur-causing effects */
    filter: none !important;
    backdrop-filter: none !important;
    
    /* Simple professional glow without gradient complexity */
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
    
    /* Flexbox for stacked layout */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    
    animation: 
        name-entrance 2.5s ease-out,
        crystal-clear-glow 4s ease-in-out infinite;
}

.name-line {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.name-first-line {
    /* First line with just "Natasha" */
    margin-bottom: 8px;
}

.name-last-line {
    /* Second line with "Lopez De Victoria" */
    gap: 8px;
}

/* New crystal clear glow animation */
@keyframes crystal-clear-glow {
    0%, 100% {
        text-shadow: 
            0 0 20px rgba(212, 175, 55, 0.8),
            0 2px 4px rgba(0, 0, 0, 0.3);
        transform: scale(1);
    }
    50% {
        text-shadow: 
            0 0 30px rgba(212, 175, 55, 1),
            0 0 40px rgba(232, 180, 160, 0.6),
            0 2px 4px rgba(0, 0, 0, 0.3);
        transform: scale(1.01);
    }
}

.artist-name::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -150%;
    width: 150%;
    height: calc(100% + 10px);
    background: linear-gradient(
        90deg,
        transparent 0%,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 45%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0.3) 55%,
        transparent 70%,
        transparent 100%
    );
    animation: crystal-clear-glimmer 5s ease-in-out infinite;
    pointer-events: none;
    transform: skewX(-15deg);
    z-index: 1;
    filter: none !important; /* No blur */
}

@keyframes crystal-clear-glimmer {
    0% {
        left: -150%;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        left: 150%;
        opacity: 0;
    }
}

.name-part {
    display: inline-block;
    margin: 0 4px;
    opacity: 0;
    animation: name-part-reveal 0.8s ease-out forwards;
}

.name-part.name-first {
    animation-delay: 0.5s;
    font-weight: 300;
}

.name-part.name-middle {
    animation-delay: 0.8s;
    font-weight: 300;
}

.name-part.name-last {
    animation-delay: 1.1s;
    font-weight: 400;
}

.artist-title {
    font-family: 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 500;
    color: var(--platinum);
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    animation: title-entrance 2s ease-out 1.5s both;
    opacity: 0.95;
}

.title-separator {
    font-family: 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    margin: 0 15px;
    color: var(--rose-gold);
    font-size: 1.1em;
    font-weight: 300;
    opacity: 0.9;
}

.artist-credentials {
    font-family: 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(14px, 2.8vw, 18px);
    font-weight: 400;
    color: var(--champagne);
    text-align: center;
    letter-spacing: 2px;
    margin-top: 15px;
    opacity: 0;
    animation: credentials-entrance 2s ease-out 2s both;
    text-shadow: 0 0 8px rgba(247, 231, 206, 0.3);
    
    /* Enhanced readability styling */
    background: rgba(0, 17, 34, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 25px;
    padding: 12px 24px;
    backdrop-filter: blur(5px);
    display: inline-block;
}

.credential {
    font-style: normal;
    font-weight: 400;
    display: inline-block;
    padding: 0;
}

@keyframes monogram-entrance {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes name-entrance {
    0% {
        opacity: 0;
        transform: translateY(20px);
        letter-spacing: 10px;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 1px;
    }
}

@keyframes name-part-reveal {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes title-entrance {
    0% {
        opacity: 0;
        transform: translateY(15px);
        letter-spacing: 8px;
    }
    100% {
        opacity: 0.9;
        transform: translateY(0);
        letter-spacing: 2px;
    }
}

@keyframes credentials-entrance {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typewriter Cursor */
.typewriter-cursor {
    color: var(--primary-gold);
    animation: cursor-blink 1s infinite;
}

@keyframes cursor-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Progress Ring Enhancement */
.progress-ring {
    position: relative;
    margin: 30px auto;
    transition: transform 0.3s ease;
}

.progress-ring:hover {
    transform: scale(1.05);
}

.progress-ring-svg {
    transform: rotate(-90deg);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.progress-ring-circle {
    transition: stroke-dashoffset 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Professional Loading Messages */
.loading-status {
    position: relative;
    overflow: hidden;
    margin-top: 25px;
    text-align: center;
}

.loading-status::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.1),
        transparent
    );
    animation: message-shimmer 3s ease-in-out infinite;
}

.loading-status span {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(14px, 2.5vw, 18px);
    color: var(--soft-cream);
    letter-spacing: 1px;
    font-style: italic;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

@keyframes message-shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Development Timer (remove in production) */
.loading-timer {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    padding: 10px 15px;
    border-radius: 4px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    z-index: 10001;
    opacity: 0.7;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.loading-timer.development-mode {
    display: block;
}

.loading-timer.production-mode {
    display: none;
}

/* ========================================
   VIBRATION EFFECT INSPIRED ENHANCEMENTS
   Hypnotic, Rhythmic, Cascading Animations
   ======================================== */

/* Vibration-Style Particle Cascades */
.vibration-cascade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
    overflow: hidden;
}

.cascade-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-gold);
    opacity: 0;
    animation: vibration-fall var(--fall-duration) linear infinite;
    animation-delay: var(--fall-delay);
}

.cascade-particle.type-1 { background: var(--primary-gold); }
.cascade-particle.type-2 { background: var(--rose-gold); }
.cascade-particle.type-3 { background: var(--champagne); }
.cascade-particle.type-4 { background: var(--platinum); }

@keyframes vibration-fall {
    0% {
        transform: translateY(-10px) scale(0);
        opacity: 0;
    }
    15% {
        transform: translateY(20vh) scale(1);
        opacity: 0.8;
    }
    85% {
        transform: translateY(80vh) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translateY(110vh) scale(0);
        opacity: 0;
    }
}

/* Vibration-Style Rhythmic Pulses */
.vibration-pulse-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid var(--primary-gold);
    border-radius: 50%;
    opacity: 0;
    animation: vibration-pulse var(--pulse-duration) ease-out infinite;
    animation-delay: var(--pulse-delay);
}

@keyframes vibration-pulse {
    0% {
        width: 80px;
        height: 80px;
        opacity: 0.6;
        border-width: 1px;
    }
    50% {
        width: 400px;
        height: 400px;
        opacity: 0.2;
        border-width: 0.5px;
    }
    100% {
        width: 800px;
        height: 800px;
        opacity: 0;
        border-width: 0px;
    }
}

/* Vibration-Style Sacred Geometry Morphing */
.vibration-morph-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    pointer-events: none;
    z-index: 4;
    overflow: visible;
}

.morph-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 45px;
    background: linear-gradient(180deg, transparent, var(--primary-gold), transparent);
    opacity: 0.4;
    animation: zen-sacred-flow var(--morph-duration) ease-in-out infinite;
    animation-delay: var(--morph-delay);
    transform-origin: center bottom;
    border-radius: 1.5px;
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.2));
    transition: all 0.3s ease;
}

.morph-shape:hover {
    opacity: 0.7;
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.4));
    transform: scale(1.05);
}

@keyframes zen-sacred-flow {
    0% {
        transform: translate(-50%, -50%) rotate(var(--start-angle)) translateY(-320px) scaleY(1);
        opacity: 0.3;
        filter: blur(0px);
    }
    25% {
        transform: translate(-50%, -50%) rotate(calc(var(--start-angle) + 30deg)) translateY(-380px) scaleY(1.8);
        opacity: 0.7;
        filter: blur(0.5px);
    }
    50% {
        transform: translate(-50%, -50%) rotate(calc(var(--start-angle) + 60deg)) translateY(-340px) scaleY(1.2);
        opacity: 0.4;
        filter: blur(1px);
    }
    75% {
        transform: translate(-50%, -50%) rotate(calc(var(--start-angle) + 90deg)) translateY(-400px) scaleY(2);
        opacity: 0.8;
        filter: blur(0.3px);
    }
    100% {
        transform: translate(-50%, -50%) rotate(calc(var(--start-angle) + 120deg)) translateY(-320px) scaleY(1);
        opacity: 0.3;
        filter: blur(0px);
    }
}

/* Vibration-Style Synchronized Breathing */
.vibration-sync-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    animation: vibration-breath 8s ease-in-out infinite;
}

@keyframes vibration-breath {
    0%, 100% {
        filter: hue-rotate(0deg) brightness(1);
        transform: scale(1);
    }
    50% {
        filter: hue-rotate(3deg) brightness(1.03);
        transform: scale(1.002);
    }
}

/* Vibration-Style Hypnotic Grid */
.vibration-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background-image: 
        linear-gradient(0deg, transparent 24%, rgba(212, 175, 55, 0.01) 25%, rgba(212, 175, 55, 0.01) 26%, transparent 27%, transparent 74%, rgba(212, 175, 55, 0.01) 75%, rgba(212, 175, 55, 0.01) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(212, 175, 55, 0.01) 25%, rgba(212, 175, 55, 0.01) 26%, transparent 27%, transparent 74%, rgba(212, 175, 55, 0.01) 75%, rgba(212, 175, 55, 0.01) 76%, transparent 77%, transparent);
    background-size: 60px 60px;
    animation: vibration-grid-flow 15s linear infinite;
}

@keyframes vibration-grid-flow {
    0% {
        background-position: 0 0, 0 0;
        opacity: 0.1;
    }
    50% {
        background-position: 25px 25px, 25px 25px;
        opacity: 0.3;
    }
    100% {
        background-position: 50px 50px, 50px 50px;
        opacity: 0.1;
    }
}

/* Vibration-Style Progress Ring Enhancement */
.progress-ring-vibration {
    position: relative;
    animation: vibration-progress-pulse 2s ease-in-out infinite;
}

@keyframes vibration-progress-pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    }
    50% {
        transform: scale(1.02);
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
    }
}

/* Vibration-Style Cascading Text - DISABLED for artist name to prevent interference */
.vibration-text-effect {
    position: relative;
    /* overflow: hidden; */ /* DISABLED - was hiding text */
}

.vibration-text-effect::before {
    display: none !important; /* DISABLED - was creating overlay */
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.3),
        rgba(232, 180, 160, 0.3),
        rgba(247, 231, 206, 0.3),
        transparent
    );
    animation: vibration-text-cascade 3s ease-in-out infinite;
}

@keyframes vibration-text-cascade {
    0% {
        left: -100%;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Vibration-Style Layered Depth */
.vibration-depth-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    animation: vibration-depth-shift var(--depth-duration) ease-in-out infinite;
    animation-delay: var(--depth-delay);
}

@keyframes vibration-depth-shift {
    0%, 100% {
        transform: translateZ(0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateZ(10px) scale(1.05);
        opacity: 0.8;
    }
}

/* Vibration-Style Particle Explosion */
.vibration-explosion {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 2px;
    background: var(--primary-gold);
    border-radius: 50%;
    opacity: 0;
    animation: vibration-explode var(--explode-duration) ease-out;
    animation-delay: var(--explode-delay);
}

@keyframes vibration-explode {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.8;
    }
    30% {
        transform: translate(calc(-50% + var(--explode-x) * 0.3), calc(-50% + var(--explode-y) * 0.3)) scale(1);
        opacity: 0.6;
    }
    70% {
        transform: translate(calc(-50% + var(--explode-x) * 0.7), calc(-50% + var(--explode-y) * 0.7)) scale(0.8);
        opacity: 0.3;
    }
    100% {
        transform: translate(calc(-50% + var(--explode-x)), calc(-50% + var(--explode-y))) scale(0);
        opacity: 0;
    }
}

/* Vibration-Style Synchronized Flicker */
.vibration-flicker {
    animation: vibration-flicker-effect 2.5s ease-in-out infinite alternate;
}

@keyframes vibration-flicker-effect {
    0% {
        opacity: 0.6;
        filter: brightness(1);
    }
    100% {
        opacity: 0.9;
        filter: brightness(1.08);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hexagon-grid {
        width: 400px;
        height: 400px;
    }
    
    .mandala-circle {
        width: 300px;
        height: 300px;
    }
    
    .fibonacci-spiral {
        width: 350px;
        height: 350px;
    }
    
    .flower-of-life {
        width: 250px;
        height: 250px;
    }
    
    .loading-content {
        padding: 20px;
    }
    
    .artist-name {
        font-size: clamp(24px, 6vw, 36px);
        gap: 3px;
    }
    
    .name-part {
        letter-spacing: 2px;
        margin: 0 2px;
    }
    
    .name-first-line {
        margin-bottom: 5px;
    }
    
    .name-last-line {
        gap: 4px;
    }
    
    /* Sacred Geometry Lines - Tablet */
    .vibration-morph-container {
        width: 700px;
        height: 700px;
    }
    
    .morph-shape {
        height: 35px;
    }
    
    @keyframes zen-sacred-flow {
        0% {
            transform: translate(-50%, -50%) rotate(var(--start-angle)) translateY(-250px) scaleY(1);
            opacity: 0.3;
        }
        25% {
            transform: translate(-50%, -50%) rotate(calc(var(--start-angle) + 30deg)) translateY(-300px) scaleY(1.6);
            opacity: 0.6;
        }
        50% {
            transform: translate(-50%, -50%) rotate(calc(var(--start-angle) + 60deg)) translateY(-270px) scaleY(1.1);
            opacity: 0.35;
        }
        75% {
            transform: translate(-50%, -50%) rotate(calc(var(--start-angle) + 90deg)) translateY(-320px) scaleY(1.8);
            opacity: 0.7;
        }
        100% {
            transform: translate(-50%, -50%) rotate(calc(var(--start-angle) + 120deg)) translateY(-250px) scaleY(1);
            opacity: 0.3;
        }
    }
}

@media (max-width: 480px) {
    .hexagon-grid {
        width: 300px;
        height: 300px;
    }
    
    .mandala-circle {
        width: 250px;
        height: 250px;
    }
    
    .fibonacci-spiral {
        width: 280px;
        height: 280px;
    }
    
    .flower-of-life {
        width: 200px;
        height: 200px;
    }
    
    .hexagon {
        width: 60px;
        height: 60px;
    }
    
    .mandala-ring-1 { width: 200px; height: 200px; }
    .mandala-ring-2 { width: 170px; height: 170px; }
    .mandala-ring-3 { width: 140px; height: 140px; }
    .mandala-ring-4 { width: 110px; height: 110px; }
    
    /* Sacred Geometry Lines - Mobile */
    .vibration-morph-container {
        width: 500px;
        height: 500px;
    }
    
    .morph-shape {
        height: 25px;
        width: 2px;
    }
    
    @keyframes zen-sacred-flow {
        0% {
            transform: translate(-50%, -50%) rotate(var(--start-angle)) translateY(-180px) scaleY(1);
            opacity: 0.25;
        }
        25% {
            transform: translate(-50%, -50%) rotate(calc(var(--start-angle) + 30deg)) translateY(-220px) scaleY(1.4);
            opacity: 0.5;
        }
        50% {
            transform: translate(-50%, -50%) rotate(calc(var(--start-angle) + 60deg)) translateY(-200px) scaleY(1);
            opacity: 0.3;
        }
        75% {
            transform: translate(-50%, -50%) rotate(calc(var(--start-angle) + 90deg)) translateY(-240px) scaleY(1.6);
            opacity: 0.6;
        }
        100% {
            transform: translate(-50%, -50%) rotate(calc(var(--start-angle) + 120deg)) translateY(-180px) scaleY(1);
            opacity: 0.25;
        }
    }
}

/* High Performance Optimizations */
.loading-screen * {
    will-change: transform, opacity;
}

.geometry-layer {
    contain: layout style paint;
}

/* Ensure navigation buttons are visible after loading */
body.site-loaded .panel-navigation {
    opacity: 1;
    visibility: visible;
    display: flex;
}

/* ========================================
   PROFESSIONAL FOOTER - BRANDED CONTACT SECTION
   Elegant horizontal layout with NLDV branding
   ======================================== */

.minimal-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 70;
    padding: 18px 30px;
    background: rgba(0, 17, 34, 0.3);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    pointer-events: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    pointer-events: all;
}

.brand-initials {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    animation: brand-gentle-glow 3s ease-in-out infinite;
}

@keyframes brand-gentle-glow {
    0%, 100% {
        text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
        transform: scale(1.02);
    }
}

.footer-divider {
    width: 1px;
    height: 30px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(212, 175, 55, 0.3),
        transparent
    );
    flex-shrink: 0;
}

.contact-links {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: nowrap;
}

.contact-separator {
    color: var(--rose-gold);
    font-size: 14px;
    opacity: 0.7;
    margin: 0 5px;
    font-family: 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 17, 34, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 25px;
    color: var(--primary-gold);
    text-decoration: none;
    font-family: 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.3px;
    backdrop-filter: blur(5px);
    pointer-events: all;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    
    /* Subtle glow effect */
    box-shadow: 
        0 0 15px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.contact-button:hover {
    background: rgba(0, 17, 34, 0.6);
    border-color: rgba(212, 175, 55, 0.4);
    color: #ffffff;
    
    /* Enhanced glow on hover */
    box-shadow: 
        0 0 20px rgba(212, 175, 55, 0.2),
        0 0 40px rgba(232, 180, 160, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    
    transform: translateY(-1px) scale(1.02);
}

.contact-button:active {
    transform: translateY(0) scale(0.98);
    transition: all 0.1s ease;
}

.contact-icon {
    width: 16px;
    height: 16px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 3px rgba(212, 175, 55, 0.3));
    flex-shrink: 0;
}

.contact-button:hover .contact-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.5));
}

.contact-text {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.contact-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    transition: left 0.5s ease;
    z-index: 1;
    mix-blend-mode: overlay;
}

.contact-button:hover .contact-text::before {
    left: 100%;
}

/* Email specific styling */
.email-button {
    border-color: rgba(232, 180, 160, 0.2);
}

.email-button:hover {
    border-color: rgba(232, 180, 160, 0.4);
    box-shadow: 
        0 0 20px rgba(232, 180, 160, 0.2),
        0 0 40px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.email-text {
    font-size: 12px;
    letter-spacing: 0.2px;
}

/* Gentle pulsing animation */
@keyframes contact-gentle-pulse {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(212, 175, 55, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 0 25px rgba(212, 175, 55, 0.15),
            0 0 40px rgba(232, 180, 160, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .minimal-footer {
        padding: 15px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-divider {
        width: 30px;
        height: 1px;
        background: linear-gradient(
            to right,
            transparent,
            rgba(212, 175, 55, 0.3),
            transparent
        );
    }
    
    .contact-links {
        gap: 15px;
        justify-content: center;
    }
    
    .contact-button {
        padding: 8px 14px;
        font-size: 12px;
        gap: 6px;
    }
    
    .contact-icon {
        width: 14px;
        height: 14px;
    }
    
    .email-text {
        font-size: 11px;
    }
    
    .brand-initials {
        font-size: 20px;
        letter-spacing: 2px;
    }
    
    /* Typography tablet optimizations */
    .artist-name {
        font-size: clamp(28px, 7vw, 40px);
        gap: 4px;
    }
    
    .name-part {
        letter-spacing: 1.5px;
        margin: 0 3px;
    }
    
    .name-first-line {
        margin-bottom: 6px;
    }
    
    .name-last-line {
        gap: 6px;
    }
    
    /* Typography responsive adjustments */
    .artist-title {
        font-size: clamp(14px, 2.5vw, 18px);
        letter-spacing: 1px;
        margin-bottom: 15px;
    }
    
    .artist-credentials {
        font-size: clamp(12px, 2.2vw, 16px);
        padding: 10px 20px;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 480px) {
    .minimal-footer {
        padding: 12px 15px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 12px;
    }
    
    .contact-links {
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-separator {
        display: none;
    }
    
    .contact-button {
        padding: 8px 12px;
        font-size: 11px;
        gap: 6px;
        width: auto;
        max-width: 280px;
    }
    
    .contact-icon {
        width: 12px;
        height: 12px;
    }
    
    .email-text {
        font-size: 10px;
        letter-spacing: 0.1px;
    }
    
    .brand-initials {
        font-size: 18px;
        letter-spacing: 1.5px;
    }
    
    .footer-divider {
        width: 25px;
        height: 1px;
    }
    
    /* Artist name mobile optimizations */
    .artist-name {
        font-size: clamp(20px, 5vw, 28px);
        gap: 2px;
    }
    
    .name-part {
        letter-spacing: 1px;
        margin: 0 1px;
    }
    
    .name-first-line {
        margin-bottom: 3px;
    }
    
    .name-last-line {
        gap: 3px;
    }
    
    /* Typography mobile optimizations */
    .artist-title {
        font-size: clamp(12px, 2vw, 16px);
        letter-spacing: 0.8px;
        margin-bottom: 12px;
    }
    
    .title-separator {
        margin: 0 10px;
        font-size: 1em;
    }
    
    .artist-credentials {
        font-size: clamp(11px, 2vw, 14px);
        padding: 8px 16px;
        letter-spacing: 1px;
        margin-top: 12px;
    }
}
