@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Lato:wght@300;400;600;700&family=Open+Sans:wght@300;400;500;600&family=Crimson+Text:ital,wght@0,400;1,400&display=swap');

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

body {
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
    color: #1e40af;
}

.cosmic-container {
    min-height: 100vh;
    background: 
        linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%),
        radial-gradient(ellipse at top left, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(30, 64, 175, 0.08) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.cosmic-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(59, 130, 246, 0.05) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(30, 64, 175, 0.03) 50%, transparent 70%);
    z-index: 1;
}

.cosmic-container::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 80% 80%, rgba(30, 64, 175, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 40% 60%, rgba(147, 197, 253, 0.06) 0%, transparent 25%);
    animation: auroraMove 20s ease-in-out infinite;
    z-index: 1;
}

/* Background elements removed for clean white design */
.stars {
    display: none;
}

@keyframes gentleTwinkle {
    0% { opacity: 0.4; }
    100% { opacity: 0.8; }
}

.floating-orbs {
    display: none;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    33% { transform: translateY(-20px) scale(1.05); }
    66% { transform: translateY(15px) scale(0.95); }
}

.energy-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    transform: translate(-50%, -50%);
}

.energy-waves::before,
.energy-waves::after {
    content: '';
    position: absolute;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse 3s ease-out infinite;
}

.energy-waves::before {
    width: 100%;
    height: 100%;
}

.energy-waves::after {
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    animation-delay: 1.5s;
}

@keyframes pulse {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* Hero Section */
.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    text-align: center;
    position: relative;
    z-index: 10;
}

.logo-container {
    animation: fadeInUp 2s ease-out;
}

.brand-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e40af;
    letter-spacing: -0.01em;
}

.word-boundless {
    color: #3b82f6;
    display: inline-block;
    margin-right: 0.5em;
    position: relative;
    transition: all 0.3s ease;
}

.word-boundless:hover {
    transform: translateY(-2px);
    color: #1d4ed8;
}

.word-mind {
    color: #1e40af;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.word-mind:hover {
    transform: translateY(-2px);
    color: #1e3a8a;
}

/* Removed gaming-style animations */

.tagline {
    font-family: 'Lato', sans-serif;
    font-size: clamp(0.9rem, 2.5vw, 1.3rem);
    color: #64748b;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.tagline:hover {
    color: #3b82f6;
    opacity: 1;
}

/* Removed glow animation */

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

/* Content Section */
.content-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40vh;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.creative-manifesto {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Quotes Section */
.quotes-section {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.quote-container {
    margin-bottom: 2.5rem;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 1rem;
}

.quote-text {
    font-size: clamp(1.2rem, 3.5vw, 2rem);
    color: #1e40af;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 1.5rem;
    position: relative;
    font-style: italic;
    text-align: center;
    max-width: 100%;
    font-family: 'Crimson Text', serif;
    transition: all 0.3s ease;
}

.quote-text:hover {
    color: #1d4ed8;
    transform: translateY(-1px);
}

.quote-text::before {
    content: '"';
    position: absolute;
    left: -30px;
    top: -15px;
    font-size: 2.5em;
    color: rgba(59, 130, 246, 0.4);
    font-family: 'Crimson Text', serif;
    opacity: 0.6;
    font-style: normal;
}

.quote-text::after {
    content: '"';
    position: absolute;
    right: -30px;
    bottom: -15px;
    font-size: 2.5em;
    color: rgba(30, 64, 175, 0.4);
    font-family: 'Crimson Text', serif;
    opacity: 0.6;
    font-style: normal;
}

.quote-author {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: #64748b;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.quote-author:hover {
    color: #1e40af;
    opacity: 1;
}

.new-quote-btn {
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    padding: 12px 30px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #3b82f6;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.new-quote-btn:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.5);
    color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.new-quote-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.new-quote-btn span {
    position: relative;
    z-index: 1;
}

/* Quote loading animation */
.quote-loading {
    opacity: 0.5;
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.manifesto-text {
    font-size: clamp(1.2rem, 3.5vw, 1.8rem);
    color: #475569;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    animation: fadeIn 3s ease-out 1s both;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
    position: relative;
    opacity: 0.95;
    transition: all 0.3s ease;
}

.manifesto-text:hover {
    color: #1e40af;
    opacity: 1;
}

/* Removed manifesto background glow */

/* Removed text gradient flow animation */

/* Removed border glow animation */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}



/* Custom Cursor */
.cursor-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.8) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-section {
        padding: 1rem;
    }
}
/*
 Paint Splatters */
.paint-splatters {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.paint-splatters::before,
.paint-splatters::after {
    content: '';
    position: absolute;
    border-radius: 50% 40% 60% 30%;
    animation: paintDrip 8s ease-in-out infinite;
}

.paint-splatters::before {
    width: 80px;
    height: 120px;
    top: 15%;
    left: 20%;
    background: radial-gradient(ellipse, rgba(255, 0, 150, 0.6) 0%, rgba(255, 0, 150, 0.2) 40%, transparent 70%);
    animation-delay: 0s;
    transform: rotate(45deg);
}

.paint-splatters::after {
    width: 60px;
    height: 90px;
    top: 70%;
    right: 25%;
    background: radial-gradient(ellipse, rgba(0, 255, 255, 0.6) 0%, rgba(0, 255, 255, 0.2) 40%, transparent 70%);
    animation-delay: 4s;
    transform: rotate(-30deg);
}

@keyframes paintDrip {
    0%, 100% { 
        transform: rotate(45deg) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: rotate(45deg) scale(1.2) translateY(10px);
        opacity: 0.8;
    }
}

/* Neon Graffiti */
.neon-graffiti {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.neon-graffiti::before {
    content: '◊ CREATIVE ◊';
    position: absolute;
    top: 25%;
    left: 5%;
    font-family: 'Bungee', cursive;
    font-size: clamp(1rem, 3vw, 2rem);
    color: #ff00ff;
    text-shadow: 
        0 0 5px #ff00ff,
        0 0 10px #ff00ff,
        0 0 15px #ff00ff,
        0 0 20px #ff00ff;
    transform: rotate(-15deg);
    animation: neonBuzz 3s ease-in-out infinite;
    opacity: 0.8;
}

.neon-graffiti::after {
    content: '✦ INFINITE ✦';
    position: absolute;
    bottom: 20%;
    right: 8%;
    font-family: 'Bungee', cursive;
    font-size: clamp(0.8rem, 2.5vw, 1.5rem);
    color: #00ffff;
    text-shadow: 
        0 0 5px #00ffff,
        0 0 10px #00ffff,
        0 0 15px #00ffff,
        0 0 20px #00ffff;
    transform: rotate(12deg);
    animation: neonBuzz 3s ease-in-out infinite;
    animation-delay: 1.5s;
    opacity: 0.7;
}

@keyframes neonBuzz {
    0%, 100% { 
        opacity: 0.7;
        text-shadow: 
            0 0 5px currentColor,
            0 0 10px currentColor,
            0 0 15px currentColor,
            0 0 20px currentColor;
    }
    50% { 
        opacity: 1;
        text-shadow: 
            0 0 2px currentColor,
            0 0 5px currentColor,
            0 0 8px currentColor,
            0 0 12px currentColor,
            0 0 15px currentColor;
    }
}

@keyframes neonFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
    75% { opacity: 1; }
    85% { opacity: 0.9; }
}

/* Digital Glitch */
.digital-glitch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 0, 255, 0.03) 2px,
            rgba(255, 0, 255, 0.03) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 255, 0.03) 2px,
            rgba(0, 255, 255, 0.03) 4px
        );
    animation: glitchScan 10s linear infinite;
}

@keyframes glitchScan {
    0% { transform: translateX(0); }
    100% { transform: translateX(100px); }
}

/* Holographic Grid */
.holographic-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridShift 20s linear infinite;
    opacity: 0.3;
}

@keyframes gridShift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Holographic Elements */
.holographic-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.holo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 52px solid rgba(0, 255, 255, 0.3);
    top: 30%;
    right: 20%;
    animation: holoRotate 8s linear infinite, holoFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

.holo-diamond {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 0, 150, 0.2);
    transform: rotate(45deg);
    top: 60%;
    left: 15%;
    animation: holoRotate 12s linear infinite reverse, holoFloat 8s ease-in-out infinite;
    border: 2px solid rgba(255, 0, 150, 0.6);
    filter: drop-shadow(0 0 15px rgba(255, 0, 150, 0.4));
}

.holo-hexagon {
    position: absolute;
    width: 50px;
    height: 28.87px;
    background: rgba(255, 255, 0, 0.2);
    top: 20%;
    left: 70%;
    border: 2px solid rgba(255, 255, 0, 0.6);
    animation: holoRotate 10s linear infinite, holoFloat 7s ease-in-out infinite;
    filter: drop-shadow(0 0 12px rgba(255, 255, 0, 0.4));
}

.holo-hexagon::before,
.holo-hexagon::after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
}

.holo-hexagon::before {
    bottom: 100%;
    border-bottom: 14.43px solid rgba(255, 255, 0, 0.2);
    border-bottom-color: rgba(255, 255, 0, 0.6);
}

.holo-hexagon::after {
    top: 100%;
    border-top: 14.43px solid rgba(255, 255, 0, 0.2);
    border-top-color: rgba(255, 255, 0, 0.6);
}

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

@keyframes holoFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
}

/* Data Stream Effects */
.data-streams {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.data-line {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: rgba(0, 255, 0, 0.6);
    white-space: nowrap;
    animation: dataFlow 15s linear infinite;
}

.data-line:nth-child(1) {
    top: 10%;
    left: -100%;
    animation-delay: 0s;
}

.data-line:nth-child(2) {
    top: 25%;
    left: -100%;
    animation-delay: 3s;
    color: rgba(0, 255, 255, 0.5);
}

.data-line:nth-child(3) {
    top: 40%;
    left: -100%;
    animation-delay: 6s;
    color: rgba(255, 255, 0, 0.4);
}

.data-line:nth-child(4) {
    top: 55%;
    left: -100%;
    animation-delay: 9s;
    color: rgba(255, 0, 255, 0.5);
}

.data-line:nth-child(5) {
    top: 70%;
    left: -100%;
    animation-delay: 12s;
    color: rgba(0, 255, 0, 0.6);
}

@keyframes dataFlow {
    0% { transform: translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(calc(100vw + 200px)); opacity: 0; }
}

/* Texture Overlays */
.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.01) 2px,
            rgba(255, 255, 255, 0.01) 4px
        );
    animation: scanLines 0.1s linear infinite;
}

@keyframes scanLines {
    0% { transform: translateY(0); }
    100% { transform: translateY(4px); }
}

/* Neon Borders */
.neon-border {
    position: relative;
    padding: 3rem 2.5rem;
    margin: 2rem auto;
    border-radius: 15px;
}

.neon-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 15px;
    padding: 2px;
    z-index: -1;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
}

.neon-border::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 13px;
    z-index: -1;
    backdrop-filter: blur(10px);
}

/* Removed neon border flow animation */

/* Loading Animation */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease-out;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    color: #1e40af;
    animation: loadingPulse 2s ease-in-out infinite;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    background: #3b82f6;
    animation: loadingProgress 3s ease-out forwards;
    width: 0%;
    border-radius: 2px;
}

@keyframes loadingPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes loadingProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Removed loading glow animation */

/* Glitch Effects */
.glitch-hover {
    transition: all 0.3s ease;
}

.glitch-hover:hover {
    animation: glitchEffect 0.3s ease-in-out;
}

@keyframes glitchEffect {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}



/* Spray Paint Effects */
.paint-splatters {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.paint-splatters::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    top: 10%;
    left: 15%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 0, 0.4) 0%, transparent 30%),
        radial-gradient(circle at 70% 70%, rgba(255, 0, 150, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.2) 0%, transparent 60%);
    border-radius: 50% 40% 60% 30%;
    animation: sprayFloat 12s ease-in-out infinite;
    filter: blur(1px);
}

.paint-splatters::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    bottom: 15%;
    right: 20%;
    background: 
        radial-gradient(circle at 40% 60%, rgba(128, 0, 255, 0.4) 0%, transparent 35%),
        radial-gradient(circle at 60% 40%, rgba(255, 128, 0, 0.3) 0%, transparent 45%);
    border-radius: 60% 30% 50% 40%;
    animation: sprayFloat 15s ease-in-out infinite reverse;
    filter: blur(1px);
}

@keyframes sprayFloat {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
        opacity: 0.6;
    }
    33% { 
        transform: rotate(120deg) scale(1.1);
        opacity: 0.8;
    }
    66% { 
        transform: rotate(240deg) scale(0.9);
        opacity: 0.7;
    }
}/* Enhanc
ed Color Variations */
.electric-theme {
    --primary-color: #00ff80;
    --secondary-color: #8000ff;
    --accent-color: #ff4000;
}

.acid-theme {
    --primary-color: #0080ff;
    --secondary-color: #ff8000;
    --accent-color: #80ff00;
}

.vibrant-theme {
    --primary-color: #ff0040;
    --secondary-color: #40ff00;
    --accent-color: #0040ff;
}

/* Advanced Spiral Animations */
@keyframes spiralIn {
    0% {
        transform: rotate(0deg) translateX(200px) rotate(0deg) scale(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: rotate(360deg) translateX(0px) rotate(-360deg) scale(1);
        opacity: 0;
    }
}

@keyframes waveMotion {
    0% {
        transform: translateX(-100px) translateY(0px);
    }
    25% {
        transform: translateX(25vw) translateY(-20px);
    }
    50% {
        transform: translateX(50vw) translateY(20px);
    }
    75% {
        transform: translateX(75vw) translateY(-10px);
    }
    100% {
        transform: translateX(calc(100vw + 100px)) translateY(0px);
    }
}

/* Enhanced Depth Layers */
.depth-layer-1 {
    transform: translateZ(100px);
    animation-duration: 8s;
}

.depth-layer-2 {
    transform: translateZ(50px);
    animation-duration: 12s;
}

.depth-layer-3 {
    transform: translateZ(25px);
    animation-duration: 16s;
}

/* Advanced Glitch Effects */
@keyframes advancedGlitch {
    0% {
        transform: translate(0);
        filter: hue-rotate(0deg);
    }
    10% {
        transform: translate(-2px, 2px) skew(1deg);
        filter: hue-rotate(90deg);
    }
    20% {
        transform: translate(-2px, -2px) skew(-1deg);
        filter: hue-rotate(180deg);
    }
    30% {
        transform: translate(2px, 2px) skew(0.5deg);
        filter: hue-rotate(270deg);
    }
    40% {
        transform: translate(2px, -2px) skew(-0.5deg);
        filter: hue-rotate(360deg);
    }
    50% {
        transform: translate(-1px, 1px) skew(0.2deg);
        filter: hue-rotate(45deg) saturate(150%);
    }
    60% {
        transform: translate(1px, -1px) skew(-0.2deg);
        filter: hue-rotate(135deg) saturate(200%);
    }
    70% {
        transform: translate(-0.5px, 0.5px);
        filter: hue-rotate(225deg) saturate(100%);
    }
    80% {
        transform: translate(0.5px, -0.5px);
        filter: hue-rotate(315deg) saturate(120%);
    }
    90% {
        transform: translate(-0.2px, 0.2px);
        filter: hue-rotate(180deg);
    }
    100% {
        transform: translate(0);
        filter: hue-rotate(0deg);
    }
}

/* Cyberpunk Scan Lines */
.scan-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 6;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 255, 0.02) 2px,
        rgba(0, 255, 255, 0.02) 4px
    );
    animation: scanMove 0.1s linear infinite;
}

@keyframes scanMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(4px); }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .holographic-shapes {
        display: none; /* Hide complex shapes on mobile */
    }
    
    .data-streams .data-line {
        font-size: 10px;
        animation-duration: 20s; /* Slower on mobile */
    }
    
    .brand-title {
        font-size: clamp(2.5rem, 6vw, 5rem);
        font-weight: 700;
    }
    
    .manifesto-text {
        font-size: clamp(1rem, 3vw, 1.5rem);
    }
    
    .content-section {
        min-height: 30vh;
        padding: 1rem;
    }
    
    .quotes-section {
        max-width: 95%;
    }
    
    .quote-text {
        font-size: clamp(1rem, 2.5vw, 1.4rem);
    }
    
    .quote-text::before,
    .quote-text::after {
        font-size: 1.8em;
    }
    
    .new-quote-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .neon-border {
        padding: 2rem 1.5rem;
        margin: 1rem auto;
    }
    
    /* Reduce particle effects on mobile */
    .floating-orbs::before,
    .floating-orbs::after {
        animation-duration: 12s; /* Slower animations */
    }
    
    .stars {
        animation-duration: 6s; /* Slower twinkling */
    }
}

@media (max-width: 480px) {
    .neon-border {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .loading-logo {
        font-size: 2.5rem;
        font-weight: 700;
    }
    
    .loading-bar {
        width: 250px;
    }
    
    .content-section {
        min-height: 25vh;
        padding: 0.5rem;
    }
    
    .quote-text::before {
        left: -12px;
        top: -8px;
        font-size: 1.5em;
    }
    
    .quote-text::after {
        right: -12px;
        bottom: -8px;
        font-size: 1.5em;
    }
    
    .new-quote-btn {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    
    .neon-border {
        padding: 1.5rem 1rem;
        margin: 0.5rem auto;
    }
    
    /* Further reduce effects on small screens */
    .paint-splatters::before,
    .paint-splatters::after {
        display: none;
    }
    
    .digital-glitch {
        opacity: 0.5;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .cosmic-container {
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    }
    
    .brand-title {
        text-shadow: 0 0 20px rgba(255, 255, 255, 1);
    }
    
    .manifesto-text {
        background: linear-gradient(135deg, #ffffff, #ffffff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-orbs::before,
    .floating-orbs::after,
    .stars,
    .holographic-shapes > *,
    .data-streams .data-line {
        animation: none !important;
    }
}/* Aurora
 and Wave Animations */
@keyframes auroraMove {
    0%, 100% { 
        transform: translate(0%, 0%) rotate(0deg);
        opacity: 0.6;
    }
    25% { 
        transform: translate(-5%, -10%) rotate(1deg);
        opacity: 0.8;
    }
    50% { 
        transform: translate(5%, 5%) rotate(-1deg);
        opacity: 0.7;
    }
    75% { 
        transform: translate(-3%, 8%) rotate(0.5deg);
        opacity: 0.9;
    }
}

@keyframes waveFlow {
    0% { transform: translateX(-100%) translateY(0px); }
    50% { transform: translateX(50%) translateY(-10px); }
    100% { transform: translateX(200%) translateY(0px); }
}

@keyframes gentleWave {
    0%, 100% { 
        transform: translateY(0px) scaleY(1);
        opacity: 0.4;
    }
    50% { 
        transform: translateY(-5px) scaleY(1.1);
        opacity: 0.6;
    }
}

/* Wave Pattern Elements */
.wave-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.wave-pattern::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -50%;
    width: 200%;
    height: 100px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.1) 25%, 
        rgba(147, 197, 253, 0.15) 50%, 
        rgba(59, 130, 246, 0.1) 75%, 
        transparent 100%);
    border-radius: 50px;
    animation: waveFlow 15s ease-in-out infinite;
    transform: rotate(-5deg);
}

.wave-pattern::after {
    content: '';
    position: absolute;
    bottom: 30%;
    right: -50%;
    width: 200%;
    height: 80px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(30, 64, 175, 0.08) 25%, 
        rgba(59, 130, 246, 0.12) 50%, 
        rgba(30, 64, 175, 0.08) 75%, 
        transparent 100%);
    border-radius: 40px;
    animation: waveFlow 18s ease-in-out infinite reverse;
    transform: rotate(3deg);
    animation-delay: -5s;
}

/* Additional Wave Layers */
.wave-layer-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 800px 200px at 50% 20%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 600px 150px at 20% 80%, rgba(147, 197, 253, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 700px 180px at 80% 60%, rgba(30, 64, 175, 0.05) 0%, transparent 50%);
    animation: gentleWave 12s ease-in-out infinite;
    z-index: 1;
}

.wave-layer-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 40%, rgba(59, 130, 246, 0.03) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(147, 197, 253, 0.02) 50%, transparent 60%);
    animation: gentleWave 16s ease-in-out infinite reverse;
    animation-delay: -3s;
    z-index: 1;
}

/* Footer Styles */
.footer {
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    padding: 2rem 0;
    text-align: center;
    position: relative;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content p {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: #64748b;
    margin: 0.5rem 0;
    transition: all 0.3s ease;
}

.footer-content p:hover {
    color: #1e40af;
}

.footer-content a {
    color: #3b82f6;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-content a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0;
    }
    
    .footer-content {
        padding: 0 1rem;
    }
    
    .footer-content p {
        font-size: 0.8rem;
    }
}