:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --accent-purple: #a855f7;
    --accent-blue: #3b82f6;
    --chat-bubble-received: #111;
    --chat-bubble-sent: #1a1a1a; 
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-blur: 40px;
    --input-bg: rgba(20, 20, 20, 0.6);
    --purple-logo: linear-gradient(90deg, #ffffff 0%, #a855f7 100%);
}


body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: default;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000000; 
}

::-webkit-scrollbar-thumb {
    background: #ffffff; 
    border-radius: 5px;
    border: 2px solid #000000;
}

::-webkit-scrollbar-thumb:hover {
    background: #cccccc; 
}

html {
    scrollbar-width: thin;
    scrollbar-color: #ffffff #000000;
}

.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 10000;
    pointer-events: none;
}

.site-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #111111 0%, #ffffff 100%);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    transition: width 0.1s linear;
    border-bottom-right-radius: 2px;
    border-top-right-radius: 2px;
}

.cinematic-bg {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1;
    background-color: #000000;
    pointer-events: none;
}

.cinematic-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

.fluid-h1 { font-size: clamp(3rem, 8vw, 8rem); line-height: 0.95; letter-spacing: -0.04em; font-weight: 600; }
.fluid-h2 { font-size: clamp(2rem, 5vw, 4.5rem); line-height: 1.1; letter-spacing: -0.03em; font-weight: 500; }
.text-balance { text-wrap: balance; }
.font-mono { font-family: 'JetBrains Mono', monospace; }

.aurora-text {
    background: linear-gradient(to right, #fff 20%, #a855f7 50%, #fff 80%);
    background-size: 200% auto;
    color: #fff; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
}
@keyframes shine { to { background-position: 200% center; } }

.preloader { position: fixed; inset: 0; background: #000; z-index: 9999; display: flex; justify-content: center; align-items: center; }
.loader-line { width: 150px; height: 1px; background: rgba(255,255,255,0.1); overflow: hidden; position: relative; }
.loader-fill { position: absolute; top: 0; left: 0; height: 100%; width: 0%; background: #fff; }

.manifesto-section { 
    padding: 25vh 5vw;
    display: flex;
    justify-content: center;
}

.manifesto-wrapper {
    max-width: 1200px;
    text-align: center;
}

.manifesto-line {
    display: block;
    font-size: clamp(3rem, 7vw, 7rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.3);
    background: linear-gradient(to right, #fff 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    background-clip: text;
    transition: background-position 0.1s;
}

#mega-footer {
    background-color: #000000 !important;
}

.andz-big-text {
    font-family: 'Inter', sans-serif;
    font-size: 28vw;
    line-height: 0.8;
    font-weight: 900;
    letter-spacing: -0.06em;
    color: #ffffff; 
    background: none;
    -webkit-text-fill-color: initial;
    text-shadow: none;
    white-space: nowrap;
    pointer-events: none;
}

.footer-mask {
    background: linear-gradient(to bottom, #000000 0%, rgba(0,0,0,0) 100%);
}

#site-content {
    box-shadow: 0px 20px 50px rgba(0,0,0,0.8);
}

#cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    padding: 20px;
}

#cookie-card {
    position: relative;
    width: 100%;
    max-width: 700px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    transform: translateY(50px);
    opacity: 0;
}

@media (max-width: 768px) {
    #cookie-card {
        max-width: 100%;
    }
}

.cookie-image-container {
    width: 100%;
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(168, 85, 247, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cookie-content {
    padding: 30px;
    text-align: center;
    color: #fff;
}

.cookie-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.2;
    background: linear-gradient(to right, #fff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cookie-description {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.cookie-btn {
    padding: 12px 30px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-accept {
    background: #fff;
    color: #000;
    border: none;
}

.btn-accept:hover {
    background: #a855f7;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(168, 85, 247, 0.3);
}

.btn-more {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-more:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.no-scroll {
    overflow: hidden !important;
}