:root {
    --text-color: #333;
    --link-color: #007bff;
    --bg-color: #f0f0f0;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.logo {
    font-family: 'Inter', sans-serif;
    font-size: 2.2em;
    font-weight: 700;
    color: #2e8b57;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #3CB371;
    font-weight: 500;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #2e8b57;
}

/* Updates Section */
.updates-section {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
}

.updates-section h1 {
    font-size: 2.5em;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.update-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    flex-wrap: wrap;
}

.update-image {
    width: 200px;
    height: 150px;
    overflow: hidden;
    border-radius: 8px;
    flex-shrink: 0;
}

.update-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.update-content {
    flex: 1;
}

.update-date {
    font-size: 1em;
    color: #777;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.update-title {
    font-size: 1.8em;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px;
    font-family: 'Space Grotesk', sans-serif;
}

.update-description {
    font-size: 1.1em;
    color: #444;
    line-height: 1.7;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .update-item {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .update-image {
        width: 100%;
        height: 200px;
    }

    .updates-section h1 {
        font-size: 2em;
    }

    .update-title {
        font-size: 1.5em;
    }

    nav ul {
        gap: 15px;
    }

    nav ul li a {
        font-size: 1em;
    }

    .logo {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }

    header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    nav ul {
        justify-content: center;
        flex-wrap: wrap;
    }

    .updates-section h1 {
        font-size: 1.8em;
    }

    .update-title {
        font-size: 1.3em;
    }

    .update-description {
        font-size: 1em;
    }
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 0 20px;
    font-family: 'Inter', sans-serif;
    font-size: 1em;
    color: #555;
    border-top: 1px solid #eee;
}

.footer p {
    margin: 0;
    line-height: 1.8;
}

.footer .lucifer-link {
    color: #2e8b57;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.footer .lucifer-link:hover {
    color: #3CB371;
    text-decoration: underline;
}

@media (max-width: 480px) {
    .footer {
        font-size: 0.9em;
        padding: 30px 0 15px;
    }
}
