:root {
    --primary-gray: #2c2c2c;
    --secondary-gray: #404040;
    --text-color: #ffffff;
    --accent-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--primary-gray);
    color: var(--text-color);
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.top-banner {
    background-color: var(--secondary-gray);
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    transform: translateY(0);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.post-header {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.post-subheader {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.6;
}


.blog-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.blog-post {
    background-color: var(--secondary-gray);
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transform: translateY(0);
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.blog-post:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.blog-post h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.blog-post .author {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-content {
    display: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--accent-color);
}

.blog-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 1rem 0;
}

.about-container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 2rem;
}

.about-content {
    background-color: var(--secondary-gray);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.about-section {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.about-text {
    line-height: 1.8;
}

.about-text h3 {
    margin: 1.5rem 0 1rem;
    color: #fff;
}

.about-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.about-list li {
    background: var(--primary-gray);
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.about-list li:hover {
    transform: translateY(-3px);
}


@media (max-width: 768px) {
    .about-container {
        padding: 1rem;
    }
    
    .about-content {
        padding: 1.5rem;
    }
}

.blog-content video {
    max-width: 100%;
    border-radius: 4px;
    margin: 1rem 0;
}

.loading {
    text-align: center;
    padding: 2rem;
    color: var(--accent-color);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
}
