body {
    background: #0a0610;
    color: #d4c4e8;
    font-family: 'Segoe UI', 'Roboto', sans-serif;
}
a:link, a:visited {
    color: #b8a0d0;
    transition: all 0.3s ease;
}
a:hover {
    color: #ffb3e6;
    text-shadow: 0 0 10px rgba(200, 120, 255, 0.6);
}
#container {
    background: rgba(26, 20, 35, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(180, 130, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8), inset 0 0 60px rgba(100, 50, 180, 0.15);
    border-radius: 16px;
    margin: 20px auto;
    padding: 20px;
}
.thead {
    background: linear-gradient(145deg, #1f1135, #2d1a4a);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, #a855f7, #ec4899, #a855f7) 1;
    color: #f0e6ff;
    text-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
    padding: 12px 15px;
    border-radius: 10px 10px 0 0;
    animation: glowPulse 4s infinite alternate;
}
.thead a:link, .thead a:visited {
    color: #d8b4fe;
}
.tcat {
    background: rgba(50, 37, 64, 0.7);
    backdrop-filter: blur(4px);
    border-bottom: 1px solid #4a3560;
    color: #d4c4e8;
    animation: glowPulse 4s infinite alternate;
}
.tcat a:link, .tcat a:visited {
    color: #c8b0e0;
}
.tborder {
    background: rgba(31, 24, 40, 0.6);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(100, 70, 160, 0.4);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.post {
    background: rgba(37, 29, 48, 0.5);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(120, 80, 200, 0.2);
}
.post_author {
    background: rgba(26, 20, 35, 0.6);
    border-right: 2px solid #3d2d4d;
    color: #e0d0f0;
}
.post_content {
    background: transparent;
}
.codeblock, .quote {
    background: rgba(10, 6, 16, 0.7);
    border-left: 4px solid #a855f7;
    border-radius: 8px;
    color: #d4c4e8;
    box-shadow: inset 0 0 20px rgba(168, 85, 247, 0.1);
}
.button, input[type="submit"], input[type="button"], .pagination a, .pagination span {
    background: linear-gradient(145deg, #2d1a4a, #1f1135) !important;
    border: 1px solid #a855f7 !important;
    color: #f0e6ff !important;
    padding: 8px 20px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.3), inset 0 0 15px rgba(168, 85, 247, 0.1) !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase;
    font-size: 12px;
}
.button:hover, input[type="submit"]:hover, input[type="button"]:hover {
    background: linear-gradient(145deg, #7c3aed, #be185d) !important;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.7), 0 0 60px rgba(236, 72, 153, 0.4) !important;
    transform: translateY(-2px) scale(1.02);
    color: #ffffff !important;
}
.pagination .current {
    background: linear-gradient(145deg, #7c3aed, #be185d) !important;
    border-color: #ec4899 !important;
    box-shadow: 0 0 25px rgba(236, 72, 153, 0.6) !important;
}
input, textarea, select {
    background: rgba(31, 24, 40, 0.8) !important;
    border: 1px solid #4a3560 !important;
    color: #d4c4e8 !important;
    border-radius: 12px !important;
    padding: 10px 15px !important;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}
input:focus, textarea:focus {
    border-color: #a855f7 !important;
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.4), inset 0 0 20px rgba(168, 85, 247, 0.1) !important;
    outline: none;
}
@keyframes glowPulse {
    0% { text-shadow: 0 0 10px rgba(168, 85, 247, 0.3); border-image: linear-gradient(90deg, #a855f7, #ec4899) 1; }
    100% { text-shadow: 0 0 25px rgba(236, 72, 153, 0.6); border-image: linear-gradient(90deg, #ec4899, #a855f7) 1; }
}
body, #container, .thead, .tcat, .post, .button, input, textarea {
    transition: all 0.3s ease;
}