/* 💎 PIXELS NETWORK - PREMIUM DESIGN SYSTEM */
:root {
    --bg-color: #121212;
    --surface-color: #1a1a1a;
    --accent-pink: #FE1181;
    --accent-lime: #C3FF00;
    --text-main: #FFFFFF;
    --text-dim: #A0A0A0;
    --glass-bg: rgba(26, 26, 26, 0.8);
    --glass-border: rgba(195, 255, 0, 0.1);
    
    /* Global Aliases */
    --primary-color: var(--accent-lime);
    --border-color: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* --- Layout --- */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* --- Glass Panels --- */
.panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.panel:hover {
    border-color: var(--accent-lime);
}

/* --- Typography --- */
h1 {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    color: var(--accent-lime);
}

/* --- Controls & Buttons --- */
button {
    background: var(--accent-lime);
    color: #000;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(195, 255, 0, 0.3);
    filter: brightness(1.1);
}

button.secondary {
    background: transparent;
    border: 1px solid var(--accent-pink);
    color: var(--accent-pink);
}

button.secondary:hover {
    background: var(--accent-pink);
    color: white;
    box-shadow: 0 0 15px rgba(254, 17, 129, 0.3);
}

/* --- Forms --- */
input, select {
    background: #1a1a1a;
    border: 1px solid #444;
    color: white;
    padding: 0.8rem;
    border-radius: 6px;
    width: 100%;
}

input:focus {
    outline: none;
    border-color: var(--accent-lime);
}

/* --- Data Table --- */
.data-table-container {
    overflow-x: auto;
    margin-top: 1rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

th {
    text-align: left;
    padding: 1rem;
    color: var(--accent-lime);
    border-bottom: 2px solid #333;
    font-size: 0.9rem;
    text-transform: uppercase;
}

td {
    padding: 1rem;
    border-bottom: 1px solid #333;
    color: var(--text-dim);
}

tr:hover td {
    color: white;
    background: rgba(195, 255, 0, 0.03);
}

/* --- Landing Page Specifics --- */
.hero {
    padding: 10vh 0 5vh;
    text-align: center;
}

.glitch-title {
    font-size: clamp(2rem, 8vw, 5rem);
    margin-bottom: 0.5rem;
    color: var(--accent-lime);
    text-shadow: 0 0 30px rgba(195, 255, 0, 0.2);
}

.pixel-divider {
    height: 2px;
    width: 60px;
    background: var(--accent-pink);
    margin: 0 auto 3rem;
}

.links-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--surface-color);
    border: 1px solid #222;
    border-radius: 4px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-link:hover {
    border-color: var(--accent-lime);
    background: #1e1e1e;
    transform: translateX(10px);
}

.nav-link .prefix {
    color: var(--accent-lime);
    margin-right: 1.5rem;
    font-family: monospace;
    font-size: 0.9rem;
    opacity: 0.7;
}

.nav-link .suffix {
    margin-left: auto;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.4;
    transition: opacity 0.3s;
}

.nav-link:hover .suffix {
    opacity: 1;
    color: var(--accent-pink);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    pointer-events: none;
    z-index: 10;
}

footer {
    margin-top: 10vh;
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 2rem;
}

.copyright {
    font-size: 0.8rem;
    color: var(--text-dim);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.email-address {
    font-size: 0.7rem;
    color: #555;
    margin-top: 0.5rem;
}

/* --- Animations --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-lime);
}

.scroll-indicator {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 20;
}

.scroll-text {
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: #444;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
}

.scroll-bar-bg {
    width: 1px;
    height: 60px;
    background: #222;
    position: relative;
    margin: 0 auto;
}

.scroll-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--accent-lime);
    height: 30%;
    animation: scrollMove 2s infinite ease-in-out;
}

@keyframes scrollMove {
    0% { height: 0; top: 0; }
    50% { height: 100%; top: 0; }
    100% { height: 0; top: 100%; }
}
