/* PIZDATO СТИЛИ SEVER93.RU */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --accent: #2cd5c4;
    --accent-hover: #1ab3a3;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --text-muted: #666666;
    --border: #333333;
    --danger: #ff6b6b;
    --success: #2cd5c4;
    --purple: #8c2d4a;
    --glow: 0 0 20px rgba(44, 213, 196, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, var(--bg-primary) 0%, #1a1a2e 50%, #16213e 100%);
    color: var(--text-primary);
    font-family: 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* АНИМАЦИЯ ФОНА */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(44, 213, 196, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(140, 45, 74, 0.1) 0%, transparent 50%);
    z-index: -1;
}

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

/* КАРТОЧКИ С GLOW ЭФФЕКТОМ */
.card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    margin: 20px 0;
    border: 1px solid rgba(51, 51, 51, 0.5);
    box-shadow: var(--glow);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(44, 213, 196, 0.4);
}

/* ТИПОГРАФИЯ */
h1, h2, h3, h4, h5, h6 {
    background: linear-gradient(135deg, var(--accent) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    font-weight: 700;
}

h1 { 
    font-size: 3rem; 
    text-align: center;
}

h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--accent);
    transition: width 0.3s ease;
}

a:hover {
    color: var(--accent-hover);
}

a:hover::after {
    width: 100%;
}

/* ФОРМЫ ПИЗДАТЫЕ */
.form-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(17, 17, 17, 0.8);
    color: var(--text-primary);
    border: 2px solid var(--border);
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(44, 213, 196, 0.2);
    transform: scale(1.02);
}

/* КНОПКИ С АНИМАЦИЕЙ */
.btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: #000;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(44, 213, 196, 0.4);
}

.btn-danger {
    background: linear-gradient(135deg, var(--danger) 0%, var(--purple) 100%);
    color: white;
}

/* НАВИГАЦИЯ */
.nav {
    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--accent) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    font-weight: 600;
    padding: 10px 0;
}

/* ТАБЛИЦЫ */
.table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 12px;
    overflow: hidden;
}

.table th,
.table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.table th {
    background: linear-gradient(135deg, var(--accent) 0%, var(--purple) 100%);
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.table tr:hover {
    background: rgba(44, 213, 196, 0.1);
}

/* СТАТУСЫ */
.status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-published {
    background: var(--success);
    color: #000;
    box-shadow: 0 0 10px rgba(44, 213, 196, 0.3);
}

.status-draft {
    background: var(--purple);
    color: white;
    box-shadow: 0 0 10px rgba(140, 45, 74, 0.3);
}

/* АНИМАЦИИ */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* АДАПТИВ */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .card {
        padding: 20px;
        margin: 15px 0;
    }
    
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--accent) 0%, var(--purple) 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}
