/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'JetBrainsMono Nerd Font', 'JetBrains Mono', monospace;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #1a1625;
}

/* Navigation styles */
.top-nav {
    background-color: #2d2640;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.secondary-nav {
    background-color: #231d35;
    position: fixed;
    top: 60px;
    width: 100%;
    z-index: 999;
    border-bottom: 1px solid #382d5a;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: #b388ff;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 24px;
    width: auto;
}

.nav-links a {
    margin-left: 2rem;
    text-decoration: none;
    color: #9575cd;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #b388ff;
}

.secondary-nav .nav-content {
    justify-content: center;
    gap: 2rem;
}

.secondary-nav a {
    text-decoration: none;
    color: #9575cd;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.secondary-nav a:hover {
    color: #b388ff;
}

/* Main content */
main {
    max-width: 1200px;
    margin: 140px auto 80px;
    padding: 0 1rem;
}

section {
    margin-bottom: 2rem;
    background-color: #2d2640;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border: 1px solid #382d5a;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

section:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

section a {
    color: #b388ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

section a:hover {
    color: #9575cd;
}

h1, h2 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #d1c4e9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* User list styles */
.user-list {
    list-style: none;
}

.user-list li {
    padding: 1rem;
    border-bottom: 1px solid #382d5a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.2s ease, background-color 0.2s ease;
    border-radius: 4px;
}

.user-list li:hover {
    transform: translateY(-2px);
    background-color: #362e4f;
}

.user-list li:last-child {
    border-bottom: none;
}

.status {
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
}

.status.active {
    background-color: #4a148c;
    color: #b388ff;
}

.status.offline {
    background-color: #4a0000;
    color: #ff9999;
}

.status.idle {
    background-color: #311b92;
    color: #9575cd;
}

/* Domain list styles */
.domain-list {
    list-style: none;
}

.domain-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #382d5a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.2s ease, background-color 0.2s ease;
    padding: 1rem;
    border-radius: 4px;
}

.domain-list li:hover {
    transform: translateY(-2px);
    background-color: #362e4f;
}

.domain-list li:last-child {
    border-bottom: none;
}

.domain-list a {
    color: #b388ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.domain-list a:hover {
    color: #9575cd;
}

/* Footer styles */
footer {
    background-color: #2d2640;
    border-top: 1px solid #382d5a;
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 1rem 0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    font-size: 0.9rem;
    color: #9575cd;
}

/* Responsive design */
@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 1rem;
        padding: 0.5rem 1rem;
    }

    .nav-links {
        display: flex;
        gap: 1rem;
    }

    .nav-links a {
        margin-left: 0;
    }

    .secondary-nav {
        display: none;
    }

    main {
        margin-top: 90px;
    }
}

/* News wall styles */
.news-wall {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.news-item {
    padding: 1.5rem;
    background-color: #231d35;
    border: 1px solid #382d5a;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.news-item:hover {
    transform: translateX(10px);
}

.news-item time {
    color: #9575cd;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.news-item h2 {
    color: #b388ff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.news-item p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
}

/* Feature list styles */
.feature-list {
    list-style: none;
    margin-top: 1rem;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #b388ff;
    display: flex;
    align-items: center;
}

.feature-list li::before {
    content: "→";
    margin-right: 0.5rem;
    color: #9575cd;
} 