/* Conshy.xyz Cyberpunk Styles */

:root {
    --primary-color: #00ffff;
    --secondary-color: #00ff41;
    --accent-color: #ff00ff;
    --text-color: #e0e0e0;
    --background-dark: #0a0a0a;
    --background-card: #1a1a1a;
    --border-color: #333333;
    --max-width: 1200px;
}

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

body {
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-dark);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: white;
    color: var(--primary-color);
    padding: 20px 0;
    border-bottom: 2px solid var(--accent-color);
    /* box-shadow: 0 0 10px rgba(0, 255, 255, 0.3); */
}

.header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    /* text-shadow: 0 0 10px rgba(0, 255, 255, 0.5); */
}

.header h1 .logo {
    height: 200px;
    width: auto;
    vertical-align: middle;
    /* filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.4)); */
}

.header .tagline {
    text-align: center;
    font-style: italic;
    opacity: 0.8;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.issue-info {
    background-color: var(--background-card);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.issue-date {
    font-weight: bold;
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
}

.issue-number {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
}

/* Navigation */
.nav {
    background-color: var(--background-card);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.nav li {
    margin: 0 20px;
}

.nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: bold;
    padding: 8px 15px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav a:hover {
    background-color: var(--primary-color);
    color: var(--background-dark);
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
}

/* Main Content */
.main-content {
    padding: 30px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

/* Article Styles */
.article {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.article:last-child {
    border-bottom: none;
}

.article h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
    line-height: 1.3;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}

.article h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 8px;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.3);
}

.article-meta {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-style: italic;
    font-family: 'Courier New', monospace;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.7;
}

.article-content p {
    margin-bottom: 15px;
}

.lead-article {
    background-color: var(--background-card);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.2);
}

.lead-article h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--accent-color);
    text-shadow: 0 0 8px rgba(255, 0, 255, 0.4);
}

/* Sidebar */
.sidebar {
    background-color: var(--background-card);
    padding: 20px;
    border-radius: 8px;
    height: fit-content;
    border: 1px solid var(--border-color);
}

.sidebar h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 5px;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}

.sidebar ul {
    list-style: none;
}

.sidebar li {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

.sidebar li:before {
    content: "▶";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.sidebar a {
    color: var(--text-color);
    text-decoration: none;
}

.sidebar a:hover {
    color: var(--primary-color);
    text-decoration: underline;
    text-shadow: 0 0 3px rgba(0, 255, 255, 0.5);
}

/* Events Section */
.events-list {
    background-color: var(--background-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.event-item {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.event-item:last-child {
    border-bottom: none;
}

.event-date {
    font-weight: bold;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
}

.event-title {
    font-weight: bold;
    margin: 5px 0;
    color: var(--secondary-color);
}

.event-location {
    color: #aaa;
    font-size: 0.9rem;
}

/* Safety Alerts */
.safety-alert {
    background-color: var(--background-card);
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.2);
}

.safety-alert h3 {
    color: var(--accent-color);
    margin-bottom: 10px;
    text-shadow: 0 0 5px rgba(255, 0, 255, 0.3);
}

/* Footer */
.footer {
    background-color: var(--background-card);
    color: var(--text-color);
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
}

.footer p {
    margin-bottom: 10px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.footer a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
    text-shadow: 0 0 3px rgba(0, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .header h1 {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .header h1 .logo {
        height: 50px;
    }
    
    .nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .nav li {
        margin: 5px 0;
    }
    
    .issue-info .container {
        flex-direction: column;
        text-align: center;
    }
    
    .article h2 {
        font-size: 1.5rem;
    }
    
    .lead-article h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header h1 {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 8px;
    }
    
    .header h1 .logo {
        height: 40px;
    }
    
    .article-content {
        font-size: 1rem;
    }
}