/* Common styles for the entire website */
:root {
    --primary-color: #007aff;
    --secondary-color: #0056b3;
    --background-color: #1a1a1a;
    --card-bg: #2a2a2a;
    --text-color: #ffffff;
    --text-secondary: #b3b3b3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Sidebar styles */
.sidebar {
    width: 200px;
    position: fixed;
    top: 100px;
    left: 1rem;
    height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    z-index: 100;
}

.nav-menu {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 1rem;
}

.nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    margin-bottom: 0.5rem;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    display: block;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: var(--text-color);
    background-color: rgba(255, 255, 255, 0.1);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--card-bg);
    border-radius: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
}

.social-link.facebook { background-color: #1877f2; }
.social-link.twitter { background-color: #1da1f2; }
.social-link.whatsapp { background-color: #25d366; }
.social-link.telegram { background-color: #0088cc; }
.social-link.reddit { background-color: #ff4500; }

/* Responsive sidebar */
@media (max-width: 1200px) {
    .sidebar {
        display: none;
    }
}

/* Common page content wrapper */
.page-wrapper {
    margin-left: 220px;
    padding: 80px 1rem 2rem;
    max-width: 1400px;
}

@media (max-width: 1200px) {
    .page-wrapper {
        margin-left: 0;
    }
} 
