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

body {
    font-family: Verdana, Arial, sans-serif;
    font-size: 11px;
    background-color: #141414;
    color: #E0E0E0;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #2A2A2A;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Header */
.header {
    background: linear-gradient(135deg, #2A2A2A 0%, #1F1F1F 100%);
    text-align: center;
    border-bottom: 3px solid #cc1177;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #FFFFFF;
}

.logo img {
    width: 100%;
    max-width: 600px;
}

/* Navigation */
.nav-bar {
    background: linear-gradient(135deg, #1F1F1F 0%, #171717 100%);
    padding: 10px 12px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.nav-link {
    background: linear-gradient(135deg, #383838 0%, #2F2F2F 100%);
    border: 1px solid #555555;
    padding: 8px 20px;
    text-decoration: none;
    color: #E0E0E0;
    font-size: 11px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    background: linear-gradient(135deg, #484848 0%, #3F3F3F 100%);
    color: #FFFFFF;
    transform: translateY(-1px);
}

.nav-link.active {
    background: linear-gradient(to bottom, #ff1493, #cc1177);
    color: #FFFFFF;
    border-color: #AD1457;
}

/* Main Content */
.main-content {
    display: flex;
    background-color: #2B2B2B;
    min-height: 500px;
    gap: 12px;
    padding: 12px;
    border-bottom: 1px solid #333333;
}

/* Sidebar */
.sidebar {
    width: 300px;
    flex-shrink: 0;
}

.sidebar-box {
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1F1F1F 0%, #171717 100%);
    overflow: hidden;
}

.about-box {
    background: linear-gradient(135deg, #1F1F1F 0%, #171717 100%);
}

.box-header {
    background: linear-gradient(to bottom, #ff1493, #cc1177);
    padding: 5px;
    font-weight: bold;
    font-size: 12px;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.box-content {
    padding: 15px;
    color: #E0E0E0;
}

.friends {
    text-align: center;
}

.welcome-text {
    font-size: 11px;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: justify;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 6px;
    border-left: 3px solid #cc1177;
}

.rules-faq {
    font-size: 11px;
    text-align: center;
    padding: 10px;
    background: rgba(233, 30, 99, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(233, 30, 99, 0.3);
}

.rules-faq a {
    color: #ddb2ca;
    font-weight: bold;
    text-decoration: none;
}

.rules-faq a:hover {
    text-decoration: underline;
}

.stat-item {
    padding: 1px;
    font-size: 11px;
}

/* Forum Area */
.forum-area {
    flex: 1;
}

.category-header {
    background: linear-gradient(to bottom, #ff1493, #cc1177);
    color: #FFFFFF;
    padding: 5px;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.forum-table {
    background: linear-gradient(135deg, #1F1F1F 0%, #171717 100%);
    overflow: hidden;
}

.forum-row {
    border-bottom: 1px solid #333333;
    padding: 10px;
}

.forum-row a {
    color: #fff;
}

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

.forum-row:hover {
    background: linear-gradient(135deg, #252525 0%, #1D1D1D 100%);
    transform: translateX(2px);
    border-left: 3px solid #cc1177;
}

.forum-info {
    width: 100%;
}

.forum-title {
    font-weight: bold;
    font-size: 12px;
}

.forum-desc {
    color: #B0B0B0;
    font-size: 11px;
    line-height: 1.4;
}

/* Show NSFW Button */
.show-nsfw {
    text-align: center;
    margin: 7px 0;
}

.nsfw-button {
    background: linear-gradient(135deg, #424242 0%, #303030 100%);
    border: 1px solid #666666;
    color: #E0E0E0;
    padding: 5px 24px;
    font-size: 11px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nsfw-button:hover {
    background: linear-gradient(135deg, #525252 0%, #404040 100%);
    color: #FFFFFF;
}

/* Recent Posts */

.recent-posts-content {
    background: linear-gradient(135deg, #1F1F1F 0%, #171717 100%);
    padding: 15px;
}

.recent-post {
    padding: 6px 0;
    font-size: 11px;
    border-bottom: 1px solid #333333;
    color: #E0E0E0;
    line-height: 1.4;
}

.recent-post a{
    color: #fff;
    text-decoration: none;
}

.recent-post a:hover{
    text-decoration: underline;
}

.recent-post:last-child {
    border-bottom: none;
}

.recent-post:hover {
    color: #FFFFFF;
    padding-left: 5px;
    border-left: 2px solid #cc1177;
}

.recent-post strong {
    color: #cc1177;
    font-weight: bold;
}

/*.scroller {
    height: 30px;
    overflow: hidden;
    position: relative;
    background: #3e3e3e;
    color: #fff;
    border-bottom: 2px solid #333333;
}

.scroller p {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    line-height: 30px;
    text-align: center;
    transform: translateX(100%);
    animation: scroller 20s linear infinite;
}

@keyframes scroller {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}
*/

/* Responsive adjustments */
@media (max-width: 800px) {
    .main-content {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

    .mascot-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-bar {
        flex-wrap: wrap;
        gap: 3px;
    }

    .nav-link {
        margin-bottom: 3px;
    }
}

.forum-title a {
    color: #fff;
    text-decoration: none;
}

.forum-title a:hover {
    text-decoration: underline;
}

.forum-desc {
    color: #666666;
    font-size: 10px;
}

/* Forum Row Hover Effect */
.forum-row:not(.header-row):hover {
    background-color: #F9F9F9;
}

/* Footer */
.footer {
    background: #222;
    border-top: none;
    padding: 10px 12px;
    text-align: center;
    font-size: 10px;
    color: #666666;
}

.footer-links {
    margin-bottom: 5px;
}

.footer-links a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-info {
    color: #999999;
}

strong {
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 800px) {
    .main-content {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #444;
    }

    .forum-row {
        flex-wrap: wrap;
    }

    .forum-name {
        flex: 1 1 100%;
    }

    .topics,
    .posts,
    .last-post {
        flex: 1;
        border-right: none;
        border-bottom: 1px solid #EEEEEE;
    }
}
