/* lechemintvwmunycley3gv2yef3fdfyr76wff4pcjvtqhhzacuwbylad.onion */
:root{
    --bg-1: #0b0b0c;
    --bg-2: #1f1f24;
    --panel: #2b2b2f;
    --panel-2: #34343a; 
    --border: #4a4a52;
    --text: #e7e7e7;  
    --muted: #b9b9b9;  
    --muted-2:#8f8e8f;  
    --accent: #d7d7d7;   
    --accent-2:#ffffff;  
    --shadow: rgba(0,0,0,0.55);
}

html {
    scroll-behavior: smooth;
}
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--bg-2), var(--bg-1));
    color: var(--text);
    line-height: 1.8;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background: linear-gradient(90deg, var(--panel-2), var(--bg-1));
    border: 1px solid var(--border);
    color: var(--text);
    padding: 12px;
    margin-bottom: 15px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 20px var(--shadow);
}

header h1 {
    font-size: 41px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    background: linear-gradient(90deg, var(--accent-2), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 12px rgba(255,255,255,0.10);
}

.logo {
    font-size: 50px;
    color: var(--accent-2) !important;
    text-shadow: 0 0 18px rgba(215,215,215,0.25);
}

header nav ul li {
    display: inline-block;
    margin: 0 12px;
}

header nav ul li a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.25s ease;
}

header nav ul li a:hover {
    background: rgba(215,215,215,0.12);
    color: var(--accent-2);
    transform: translateY(-2px);
}

.category {
    background: linear-gradient(180deg, var(--panel), #242428);
    margin-bottom: 25px;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 18px var(--shadow);
    transition: 0.25s ease;
}

.category:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 26px rgba(0,0,0,0.65);
}

.category h2 {
    background: linear-gradient(90deg, #4a4a52, #242428);
    color: var(--text);
    padding: 18px 20px;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.forum {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background 0.25s ease, border-left 0.25s ease;
}

.forum:last-child {
    border-bottom: none;
}

.forum:hover {
    background: rgba(255,255,255,0.05);
    border-left: 4px solid rgba(215,215,215,0.55);
}

.forum-info {
    flex: 1;
}

.forum-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 700;
}

.forum-info h3 a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.25s ease;
}

.forum-info h3 a:hover {
    color: var(--accent-2);
    text-decoration: underline;
    text-decoration-color: rgba(215,215,215,0.6);
}

.forum-info p {
    font-size: 14px;
    color: var(--muted);
}

.forum-info .stats {
    font-size: 12px;
    color: var(--muted-2);
    margin-top: 8px;
}

.last-post {
    text-align: right;
    flex-basis: 30%;
    font-size: 13px;
    color: var(--muted);
    font-style: italic;
}

.last-post strong {
    display: block;
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
}

.message {
    margin-top: 20px;
    padding: 12px;
    background: rgba(255,255,255,0.06);
    color: var(--accent);
    border: 1px solid rgba(215,215,215,0.18);
    border-radius: 8px;
    text-align: center;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

footer {
    background: linear-gradient(90deg, #1a1a1d, #0b0b0c);
    color: var(--muted);
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 18px var(--shadow);
    font-size: 14px;
}

.login-page h1 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--accent);
    font-size: 30px;
    font-weight: 800;
}

.login-page form {
    max-width: 400px;
    margin: 30px auto;
    padding: 25px;
    background: linear-gradient(180deg, var(--panel), #242428);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.65);
}

.login-page .form-group {
    margin-bottom: 18px;
}

.login-page .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--muted);
}

.login-page .form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 8px;
    background: #141416;
    color: var(--text);
    font-size: 14px;
    transition: 0.25s ease;
}

.login-page .form-group input:focus {
    border-color: rgba(215,215,215,0.35);
    box-shadow: 0 0 0 3px rgba(215,215,215,0.10);
    outline: none;
}

.login-page .form-group button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background: linear-gradient(90deg, #5b5b63, #2f2f35);
    color: var(--accent-2);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.25s ease;
}

.login-page .form-group button:hover {
    background: linear-gradient(90deg, #6a6a73, #3a3a42);
    transform: translateY(-2px);
}

.login-page form {
    border-right: 1px solid rgba(255,255,255,0.12);
    box-shadow: 
        6px 0 15px rgba(0,0,0,0.4); 
    padding-right: 30px;
}

.dashboard-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    background: linear-gradient(135deg, var(--bg-2), var(--bg-1));
}

.dashboard-card {
    background: linear-gradient(180deg, var(--panel), #242428);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 12px 24px rgba(0,0,0,0.65);
    text-align: center;
    width: 400px;
}

.loader {
    border: 4px solid rgba(255,255,255,0.12);
    border-top: 4px solid var(--accent);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    display: inline-block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

a {
    color: #d7d7d7;         
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover {
    color: #ffffff;         
    text-decoration: underline;
    text-decoration-color: rgba(215,215,215,0.5);
}

a:visited {
    color: #bfbfbf;
}	

