@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400&display=swap');

:root {
    /* Synaps Independent Palette */
    --synaps-bg: #020610;
    --synaps-accent: #00f2ff;
    --synaps-glow: rgba(0, 242, 255, 0.4);
    --synaps-text: #f0f9ff;
    --synaps-muted: #94a3b8;
    --synaps-danger: #ff0055;

    --glass-surface: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.08);

    --font-main: 'Outfit', sans-serif;
    --font-code: 'JetBrains Mono', monospace;

    --ease-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--synaps-bg);
    font-family: var(--font-main);
    color: var(--synaps-text);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- Ambient Background --- */
.bg-scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%),
        linear-gradient(90deg, rgba(255, 0, 0, 0.02), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.02));
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
}

.bg-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: radial-gradient(circle at 50% 10%, #0a192f 0%, var(--synaps-bg) 70%);
}

/* --- MacOS Style Bottom Dock --- */
.dock-wrapper {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dock {
    background: rgba(10, 10, 20, 0.6);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    padding: 12px 24px;
    border-radius: 200px;
    display: flex;
    gap: 16px;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.dock-item {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--synaps-muted);
    padding: 10px 20px;
    border-radius: 100px;
    transition: all 0.4s var(--ease-expo);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dock-item:hover {
    background: var(--glass-hover);
    color: #fff;
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 242, 255, 0.1);
}

.dock-item.active {
    background: rgba(0, 242, 255, 0.1);
    color: var(--synaps-accent);
    border: 1px solid rgba(0, 242, 255, 0.2);
}

.dock-separator {
    width: 1px;
    height: 20px;
    background: var(--glass-border);
}

/* --- Sections --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 200px;
    /* Space for dock */
}

h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 800;
    letter-spacing: -4px;
    line-height: 0.9;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, var(--synaps-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.uncensored-tag {
    display: inline-block;
    background: rgba(255, 0, 85, 0.1);
    border: 1px solid var(--synaps-danger);
    color: var(--synaps-danger);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    animation: flicker 4s infinite;
}

@keyframes flicker {

    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
        opacity: 1;
    }

    20%,
    22%,
    24%,
    55% {
        opacity: 0.5;
    }
}

/* --- Components --- */
.card {
    background: var(--glass-surface);
    border: 1px solid var(--glass-border);
    padding: 48px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.btn {
    display: inline-flex;
    padding: 16px 40px;
    background: var(--synaps-accent);
    color: #000;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: 0.3s var(--ease-expo);
    cursor: pointer;
    border: none;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--synaps-glow);
}

/* --- Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: 1s var(--ease-expo);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

footer {
    padding: 100px 0 160px 0;
    /* Extra space for dock */
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--synaps-muted);
    font-size: 0.85rem;
}

/* --- Mobile Dock Adjustments --- */
@media (max-width: 768px) {
    .dock {
        padding: 8px 16px;
        gap: 8px;
    }

    .dock-item {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
}