/* --- FUNDAMENT STYLU --- */
body { 
    background-color: #050505; /* Bardzo głęboka czerń */
    margin: 4px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #e2e8f0;
}

font, th, td, p { font-family: 'Segoe UI', Tahoma, sans-serif; }
a:link, a:active, a:visited { color: #00f2ff; text-decoration: none; transition: 0.2s; }
a:hover { color: #bd00ff; text-shadow: 0 0 8px #bd00ff; text-decoration: none; }

/* Ramka wokół całego forum */
.bodyline { 
    background-color: #0d0d0d; 
    border: 1px solid #1a1a1a; 
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* --- TABELE I WIERSZE --- */
.forumline { 
    background-color: #1a1a1a; 
    border: 1px solid #333; 
}

td.row1 { background-color: #0f0f0f; color: #e2e8f0; border-bottom: 1px solid #1a1a1a; }
td.row2 { background-color: #141414; color: #e2e8f0; border-bottom: 1px solid #1a1a1a; }
td.row3 { background-color: #050505; }

/* Nagłówki sekcji */
th {
    color: #00f2ff; 
    font-size: 12px; 
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #050505 0%, #1a1a1a 100%);
    height: 35px;
    border-bottom: 2px solid #bd00ff; /* Fioletowy akcent */
}

/* --- LOGO PCFLOW CYBER-VERSION --- */
.pcflow-logo {
    display: flex;
    align-items: center;
    background: transparent;
    padding: 15px;
    border: 2px solid #00f2ff;
    border-radius: 0px; /* Styl kanciasty */
    box-shadow: -4px -4px 0px #bd00ff;
    width: fit-content;
    transition: 0.3s;
}

.pcflow-logo:hover {
    box-shadow: 4px 4px 0px #bd00ff;
    transform: translate(-2px, -2px);
}

.logo-icon {
    background: #00f2ff;
    color: #000;
    width: 30px;
    height: 30px;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%); /* Trapezowy kształt */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.logo-text { color: #fff; font-size: 26px; font-weight: 900; letter-spacing: -1px; }
.logo-text span { color: #00f2ff; text-shadow: 0 0 10px #00f2ff; }

/* --- NOWOCZESNE PODDZIAŁY --- */
.subforums-wrapper {
    margin-top: 10px;
    padding: 10px;
    background: #1a1a1a;
    border-left: 3px solid #bd00ff;
}

.subforums-list a {
    font-size: 11px;
    font-weight: bold;
    color: #00f2ff !important;
}

.subforums-list a:hover {
    color: #fff !important;
    padding-left: 5px;
}

/* --- PRZYCISKI I FORMULARZE --- */
input.post, textarea.post, select {
    background-color: #000;
    color: #00f2ff;
    border: 1px solid #bd00ff;
    padding: 8px;
    font-family: 'Courier New', monospace; /* Programistyczny vibe */
}

input.mainoption {
    background: #bd00ff;
    color: #fff;
    border: none;
    padding: 5px 15px;
    font-weight: bold;
    cursor: pointer;
}

input.mainoption:hover {
    background: #00f2ff;
    color: #000;
    box-shadow: 0 0 15px #00f2ff;
}

/* Statystyki na dole */
.gensmall { color: #666; font-size: 10px; }