:root {
    /* Colors pulled from Pager_Rat_Icon.jpg */
    --neon-green: #39ff14; 
    --neon-purple: #d300c5;
    --bg-dark: #050505;
    --bg-panel: #0a0a0a;
    --text-main: #e0e0e0;
    --grid-color: rgba(57, 255, 20, 0.15);
    
    --font-header: 'Orbitron', sans-serif;
    --font-code: 'JetBrains Mono', monospace;
}

* { box-sizing: border-box; }

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-code);
    margin: 0;
    overflow-x: hidden;
}

/* --- LINKS & BUTTONS (CYBERPUNK STYLE) --- */
        a {
            color: var(--primary);
            text-decoration: none;
            transition: all 0.2s ease-in-out;
        }
        a:hover {
            color: var(--primary-hover);
            text-decoration: underline;
            /* Subtle neon glow on hover */
            text-shadow: 0 0 8px rgba(88, 166, 255, 0.75); 
        }

        .btn {
            display: inline-block;
            background: var(--primary);
            color: #0d1117; /* Dark text on bright button for contrast */
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: 700;
            font-size: 0.9rem;
            margin-top: 10px;
            border: 1px solid var(--primary);
        }
        .btn:hover { 
            background: var(--primary-hover); 
            text-decoration: none;
            box-shadow: 0 0 15px rgba(88, 166, 255, 0.4); /* Button Glow */
            color: #000;
            text-shadow: none;
        }

/* CRT Scanline Overlay */
.scanlines {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
    z-index: 999;
}

/* Typography & Glitch */
h1, h2, h3 { font-family: var(--font-header); text-transform: uppercase; letter-spacing: 2px; }

.section-title {
    color: var(--neon-purple);
    text-shadow: 0 0 10px var(--neon-purple);
    border-bottom: 2px solid var(--neon-green);
    display: inline-block;
    padding-bottom: 10px;
}

/* Navbar */
.navbar {
    display: flex; justify-content: space-between; padding: 20px 40px;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--neon-green);
    position: sticky; top: 0; z-index: 100;
}
.logo { font-size: 1.5rem; color: var(--neon-green); font-weight: 900; text-shadow: 0 0 5px var(--neon-green); }
.cursor { animation: blink 1s infinite; }
.nav-links a { margin-left: 30px; color: var(--text-main); text-decoration: none; position: relative; transition: 0.3s; }
.nav-links a:hover { color: var(--neon-purple); text-shadow: 0 0 8px var(--neon-purple); }

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
}
.grid-bg {
    position: absolute; width: 200%; height: 200%;
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px);
    animation: gridMove 20s linear infinite;
    z-index: -1;
}

.hero-content {
    display: flex; align-items: center; gap: 50px; flex-wrap: wrap; justify-content: center;
    z-index: 2;
}

/* APP ICON STYLING */
.icon-wrapper { position: relative; width: 200px; height: 200px; }
.cyber-icon {
    width: 100%; height: 100%;
    border-radius: 20px;
    box-shadow: 0 0 30px var(--neon-green), 0 0 60px var(--neon-purple);
    border: 2px solid var(--neon-green);
}

.text-wrapper { max-width: 600px; }
.glitch-title { font-size: 3.5rem; margin: 0; color: #fff; text-shadow: 2px 2px var(--neon-purple); }
.sub-glitch { font-size: 2.5rem; margin: 0 0 20px 0; color: var(--neon-green); }
.terminal-text { color: var(--text-main); font-size: 1.1rem; line-height: 1.6; border-left: 3px solid var(--neon-purple); padding-left: 20px; margin-bottom: 30px; }

/* Cyber Buttons */
.cyber-btn.launch {
    background-color: var(--neon-green);
    color: #050505; /* Dark text for contrast against green */
    border: 2px solid var(--neon-purple);
    box-shadow: 0 0 20px var(--neon-green);
    margin-right: 0; /* Center alignment adjustment */
    width: auto;
    text-align: center;
}
        
.cyber-btn.launch:hover {
    background-color: var(--neon-purple);
    color: #fff;
    border-color: var(--neon-green);
    box-shadow: 0 0 30px var(--neon-purple);
}

/* Adjustment for the single button layout */
.cta-group {
display: flex;
gap: 20px;
}
.cyber-btn {
    display: inline-block; padding: 15px 30px; text-decoration: none; font-weight: bold; font-family: var(--font-header);
    position: relative; overflow: hidden; transition: 0.3s; clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
    margin-right: 20px;
}
.cyber-btn.primary { background: var(--neon-green); color: #000; box-shadow: 0 0 20px var(--neon-green); }
.cyber-btn.secondary { border: 2px solid var(--neon-purple); color: var(--neon-purple); background: transparent; }
.cyber-btn:hover { transform: translateY(-2px); filter: brightness(1.2); }

/* Grid Cards */
.cyber-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
.cyber-card {
    background: rgba(20, 20, 20, 0.8); border: 1px solid #333; padding: 25px;
    transition: 0.3s; position: relative; overflow: hidden;
}
.cyber-card:hover { border-color: var(--neon-green); box-shadow: 0 0 15px rgba(57, 255, 20, 0.2); }
.card-header { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.card-header h3 { color: var(--neon-green); margin: 0; font-size: 1.2rem; }
.card-header .icon { font-size: 1.5rem; }

/* Roadmap Timeline */
.cyber-timeline {
    border-left: 2px solid #333; margin-left: 20px; padding: 40px 0;
    position: relative;
}
.timeline-node {
    margin-bottom: 40px; padding-left: 40px; position: relative;
}
.timeline-node::before {
    content: ''; position: absolute; left: -6px; top: 5px; width: 10px; height: 10px; background: #333;
    transform: rotate(45deg);
}
.timeline-node.complete::before { background: var(--neon-green); box-shadow: 0 0 10px var(--neon-green); }
.timeline-node.active::before { background: var(--neon-purple); box-shadow: 0 0 15px var(--neon-purple); }

.date { font-size: 0.8rem; color: #666; margin-bottom: 5px; font-family: var(--font-header); }
.active .date { color: var(--neon-purple); font-weight: bold; }
.active .node-content { 
    border: 1px solid var(--neon-purple); padding: 15px; background: rgba(211, 0, 197, 0.05);
}

/* Animations */
@keyframes gridMove { 0% { background-position: 0 0; } 100% { background-position: 0 40px; } }
@keyframes blink { 50% { opacity: 0; } }

/* Footer */
footer { text-align: center; padding: 50px; border-top: 1px solid #333; margin-top: 50px; }
.legal-tiny { font-size: 0.7rem; opacity: 0.5; margin-top: 20px; }

/* Responsive */
@media (max-width: 768px) {
    .hero-content { flex-direction: column; text-align: center; }
    .container.hero-content { MARGIN-TOP: 75px; }
    .glitch-title { font-size: 2.5rem; }
    .navbar { padding: 15px; }
    .nav-links { display: none; }
}