        :root {
            --bg: #000000;
            --fg: #ffffff;
            --acid: #ccff00; /* Toxic Lime */
            --gray: #333333;
            --border-thick: 2px solid var(--fg);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        ::selection {
            background: var(--acid);
            color: var(--bg);
        }

        body {
            background-color: var(--bg);
            color: var(--fg);
            font-family: 'JetBrains Mono', monospace;
            line-height: 1.4;
            overflow-x: hidden;
            cursor: crosshair;	
        }

        /* --- HEADER --- */
        header {
            padding: 40px 20px 60px;
            border-bottom: 1px solid var(--gray);
        }

        .top-bar {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .status-indicator {
            font-size: 0.8rem;
            color: var(--acid);
            border: 1px solid var(--acid);
            padding: 4px 8px;
            text-transform: uppercase;
            animation: blink 2s infinite;
        }

        @keyframes blink { 50% { opacity: 0; } }

        h1 {
            font-family: 'Teko', sans-serif;
            font-size: clamp(5rem, 15vw, 11rem);
            line-height: 0.8;
            text-transform: uppercase;
            margin-left: -5px;
            font-weight: 700;
            color: var(--fg);
        }

        /* Animacja Glitch/Flicker dla '.WTF' */
        h1 span {
            display: inline-block;
            animation: flicker 1.5s infinite alternate;
        }

        @keyframes flicker {
            0%, 18%, 22%, 25%, 53%, 57%, 100% {	
                text-shadow:	
                    0 0 5px var(--acid),	
                    0 0 10px var(--acid),
                    -1px 0 0 #ff00ff;
            }
            20%, 24%, 55% {	
                text-shadow: none;	
            }
        }
        
        .tagline {
            font-size: 1.1rem;
            max-width: 600px;
            margin-top: 20px;
            color: #888;
        }
        
        .tagline strong { color: var(--fg); }

        .intro-slogan {
            font-size: 1.8rem;
            font-family: 'Teko', sans-serif;
            font-weight: 600;
            color: var(--fg);
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        /* --- TOP 3 BOXES --- */
        .overview-section {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            border-bottom: 1px solid var(--gray);
        }

        .overview-box {
            padding: 40px;
            border-right: 1px solid var(--gray);
            min-height: 400px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: all 0.1s linear;
        }

        .overview-box:last-child {
            border-right: none;
        }

        .overview-box:hover {
            background: var(--fg);
            color: var(--bg);
            /* cursor: pointer; */
        }

        .overview-box:hover h2, 
        .overview-box:hover p, 
        .overview-box:hover .meta {
            color: var(--bg);
        }
        
        .overview-box:hover .read-btn {
            background: var(--bg);
            color: var(--acid);
            border-color: var(--bg);
        }

        /* Middle box highlight */
        .overview-box.highlight-box {
            background: #0a0a0a;
            box-shadow: inset 0 0 20px rgba(204, 255, 0, 0.1);
        }
        
        .overview-box.highlight-box h2 {
            color: var(--acid);
        }
        
        .overview-box.highlight-box:hover {
            background: var(--acid);
        }
        
        .overview-box.highlight-box:hover h2,
        .overview-box.highlight-box:hover p,
        .overview-box.highlight-box:hover .meta {
            color: #000;
        }
        
        .overview-box.highlight-box:hover .read-btn {
            background: #000;
            color: var(--acid);
            border-color: #000;
        }

        /* Left box - white */
        .overview-box.white-box {
            background: var(--fg);
            color: var(--bg);
        }

        .overview-box.white-box h2,
        .overview-box.white-box p,
        .overview-box.white-box .meta {
            color: var(--bg);
        }

        .overview-box.white-box .read-btn {
            background: var(--bg);
            color: var(--fg);
            border-color: var(--bg);
        }

        .overview-box.white-box:hover {
            background: #e6e6e6;
        }
        
        .overview-box.white-box:hover .read-btn {
            background: var(--acid);
            color: var(--bg);
            border-color: var(--bg);
        }

        .meta {
            font-size: 0.8rem;
            color: #666;
            margin-bottom: 20px;
            display: block;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        h2 {
            font-family: 'Teko', sans-serif;
            font-size: 3rem;
            line-height: 0.9;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        p {
            font-size: 1rem;
            color: #aaa;
            margin-bottom: 40px;
            flex-grow: 1;
        }

        .read-btn {
            display: inline-block;
            padding: 10px 20px;
            background: var(--gray);
            color: var(--fg);
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9rem;
            transition: 0.1s;
            border: 1px solid var(--gray);
        }
        
        /* Status Badges */
        .status-building {
            background: var(--acid) !important;
            color: #000 !important;
            border: 1px solid var(--acid) !important;
        }
        
        .status-concept {
            border: 1px dashed #666;
            background: transparent;
        }

        .read-btn:hover {
             /* cursor: pointer; */
        }

        /* --- ROADMAP SECTION --- */
        .roadmap-section {
            padding: 80px 20px;
            position: relative;
        }

        .roadmap-title {
            font-family: 'Teko', sans-serif;
            font-size: 4rem;
            text-transform: uppercase;
            text-align: center;
            margin-bottom: 60px;
            color: var(--acid);
        }

        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Vertical line */
        .timeline::after {
            content: '';
            position: absolute;
            width: 3px;
            background-color: var(--acid);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -1.5px;
        }

        /* Container for roadmap items */
        .roadmap-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
            margin-bottom: 60px;
        }

        /* Left items */
        .roadmap-item.left {
            left: 0;
        }

        /* Right items */
        .roadmap-item.right {
            left: 50%;
        }

        /* Circles on timeline */
        .roadmap-item::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background-color: var(--bg);
            border: 3px solid var(--acid);
            top: 20px;
            border-radius: 50%;
            z-index: 1;
        }

        /* Positioning circles */
        .roadmap-item.left::after {
            right: -10px;
        }

        .roadmap-item.right::after {
            left: -10px;
        }

        /* Content styling */
        .roadmap-content {
            padding: 20px 30px;
            background-color: #111;
            position: relative;
            border-radius: 6px;
            border: 1px solid var(--gray);
            transition: all 0.3s ease;
        }

        .roadmap-content:hover {
            background-color: #1a1a1a;
            border-color: var(--acid);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(204, 255, 0, 0.1);
        }

        .roadmap-meta {
            font-size: 0.8rem;
            color: var(--acid);
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .roadmap-content h3 {
            font-family: 'Teko', sans-serif;
            font-size: 2.2rem;
            line-height: 0.9;
            text-transform: uppercase;
            margin-bottom: 15px;
            color: var(--fg);
        }

        .roadmap-content p {
            font-size: 0.95rem;
            color: #aaa;
            margin-bottom: 20px;
        }

        .tech-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            margin-top: 15px;
            margin-bottom: 21px;
        }
        
        .tech-tag {
            font-size: 0.7rem;
            padding: 2px 6px;
            background: rgba(204, 255, 0, 0.1);
            color: var(--acid);
            border: 1px solid var(--acid);
            text-transform: uppercase;
        }

        /* --- CTA SECTION --- */
        .cta-zone {
            padding: 100px 20px;
            background: var(--acid);
            color: var(--bg);
            text-align: center;
        }

        .cta-zone h2 {
            font-size: clamp(3rem, 10vw, 6rem);
            line-height: 0.9;
            margin-bottom: 20px;
            color: var(--bg);
        }

        .cta-btn {
            display: inline-block;
            margin-top: 30px;
            padding: 20px 60px;
            background: var(--bg);
            color: var(--acid);
            font-family: 'Teko', sans-serif;
            font-size: 2rem;
            text-transform: uppercase;
            text-decoration: none;
            border: 4px solid var(--bg);
            font-weight: 600;
            transition: all 0.2s ease-in-out;
        }

        .cta-btn:hover {
            background: transparent;
            color: var(--bg);
            box-shadow: 0 0 10px var(--bg);
            /* cursor: pointer; */
        }

        /* --- FOOTER --- */
        footer {
            padding: 40px 20px;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            font-size: 0.8rem;
            text-transform: uppercase;
        }

        footer a { color: var(--fg); text-decoration: none; border-bottom: 1px solid var(--acid); }
        footer a:hover { cursor: pointer; }

        /* Mobile adjust */
        @media (max-width: 768px) {
            .overview-section {
                grid-template-columns: 1fr;
            }
            
            .overview-box {
                border-right: none;
                border-bottom: 1px solid var(--gray);
            }
            
            .overview-box:last-child {
                border-bottom: none;
            }
            
            /* Timeline mobile */
            .timeline::after {
                left: 31px;
            }
            
            .roadmap-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            
            .roadmap-item.right {
                left: 0;
            }
            
            .roadmap-item::after {
                left: 21px !important;
            }
            
            .roadmap-title {
                font-size: 2.5rem;
            }
        }
.roadmap-subtitle {
    text-align: center;
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 40px;
    font-family: 'JetBrains Mono', monospace;
}

.roadmap-content.coming-soon {
    background: rgba(204, 255, 0, 0.05);
    border: 2px dashed var(--acid);
}

.roadmap-content.coming-soon h3 {
    color: var(--acid);
}

.status-teaser {
    background: transparent !important;
    color: var(--acid) !important;
    border: 1px solid var(--acid) !important;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}

.roadmap-footer {
    text-align: center;
    margin-top: 60px;
    padding: 20px;
    border-top: 1px solid var(--gray);
    color: #666;
    font-size: 0.9rem;
}