* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #c41e3a;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
}

.nav-link:hover,
.nav-link.active {
    color: #c41e3a;
}

/* Hero Section */
.hero {
    background: white;
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero-logo {
    max-width: 100%;
    height: auto;
    max-height: 400px;
}

.hero-tagline {
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    color: #333;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* Articles Section */
.articles-section {
    padding: 4rem 0;
    background: #fff;
}

.articles-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.article-card {
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(196,30,58,0.2);
}

.article-image {
    width: 100%;
    height: 50%;
    background: linear-gradient(135deg, #fbfafa 0%, #fcfcfc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-content h3 {
    color: #c41e3a;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
    text-align: center;
}

.article-content p {
    color: #666;
    line-height: 1.6;
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
}

.article-date {
    font-size: 0.85rem;
    color: #999;
    margin-top: 0.5rem;
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: #fff;
}

.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
}

.about-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
}

.coming-soon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    padding: 2rem;
    border: 2px solid #c41e3a;
    border-radius: 10px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon-image {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.coming-soon-text {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 1.3rem;
    font-weight: bold;
    color: #c41e3a;
    margin: 0;
}

.coming-soon-subtitle {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 0.9rem;
    color: #000;
    margin: 0.5rem 0 0 0;
}

.about-features {
    display: none;
}

.feature {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.feature h3 {
    color: #c41e3a;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #666;
    font-size: 0.95rem;
}

/* Footer */
footer {
    background: #fff;
    color: #333;
    text-align: center;
    padding: 2rem 0;
}

footer p {
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
    font-size: 0.9rem;
}

/* Article Detail Pages */
.article-detail {
    padding: 4rem 0;
    background: #fff;
    min-height: calc(100vh - 200px);
}

.article-detail-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-detail-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.article-detail-content h1 {
    color: #c41e3a;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
}

.article-detail-content h1.centered-title {
    text-align: center;
}

.article-detail-content .article-date {
    color: #999;
    font-size: 0.95rem;
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
    margin-bottom: 2rem;
}

.article-body {
    color: #555;
    line-height: 1.8;
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body h2 {
    color: #c41e3a;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
}

.article-body h3 {
    color: #c41e3a;
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
}

.article-body h4 {
    color: #555;
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
}

.back-link {
    display: inline-block;
    margin-top: 3rem;
    color: #c41e3a;
    text-decoration: none;
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
    font-weight: 500;
    transition: color 0.3s;
}

.back-link:hover {
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }
}
