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

:root {
    --orange: #DC662D;
    --orange-light: #ff7a3d;
    --primary-green: #2d5016;
    --light-green: #4a7c2c;
    --accent-green: #6fb93e;
    --dark-green: #1a2e15;
    --dark-bg: #0a0e0a;
    --light-bg: #1a1f1a;
    --text-light: #e8f5e9;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0e0a 0%, #1a1f1a 50%, #0d1a0d 100%);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.main-header {
    background: rgba(26, 31, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(111, 185, 62, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(220, 102, 45, 0.4);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.brand-name:hover {
    text-shadow: 0 0 30px rgba(220, 102, 45, 0.6);
    transform: scale(1.05);
}

.header-button {
    padding: 0.7rem 1.8rem;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(220, 102, 45, 0.3);
}

.header-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 102, 45, 0.5);
    background: linear-gradient(135deg, var(--orange-light), var(--orange));
}

/* Page Title */
.articles-page {
    padding: 4rem 0;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--light-green), var(--accent-green), var(--primary-green));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientSweep 4s ease-in-out infinite;
}

@keyframes gradientSweep {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.page-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(232, 245, 233, 0.7);
    margin-bottom: 4rem;
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.article-card {
    background: rgba(26, 31, 26, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(111, 185, 62, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.article-card:nth-child(1) { animation-delay: 0.1s; }
.article-card:nth-child(2) { animation-delay: 0.15s; }
.article-card:nth-child(3) { animation-delay: 0.2s; }
.article-card:nth-child(4) { animation-delay: 0.25s; }
.article-card:nth-child(5) { animation-delay: 0.3s; }
.article-card:nth-child(6) { animation-delay: 0.35s; }
.article-card:nth-child(7) { animation-delay: 0.4s; }
.article-card:nth-child(8) { animation-delay: 0.45s; }
.article-card:nth-child(9) { animation-delay: 0.5s; }
.article-card:nth-child(10) { animation-delay: 0.55s; }
.article-card:nth-child(11) { animation-delay: 0.6s; }
.article-card:nth-child(12) { animation-delay: 0.65s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: rgba(111, 185, 62, 0.4);
    box-shadow: 0 10px 30px rgba(111, 185, 62, 0.3);
}

.article-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image {
    transform: scale(1.05);
}

.article-content {
    padding: 1.5rem;
}

.article-category {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
}

.article-title {
    font-size: 1.4rem;
    color: var(--accent-green);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.article-excerpt {
    color: rgba(232, 245, 233, 0.8);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.article-link {
    display: inline-block;
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.article-link:hover {
    color: var(--orange-light);
    transform: translateX(5px);
}

/* Back Link */
.back-link-wrapper {
    text-align: center;
    margin: 3rem 0;
}

.back-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: rgba(26, 31, 26, 0.8);
    color: var(--accent-green);
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid rgba(111, 185, 62, 0.3);
    transition: all 0.3s ease;
}

.back-link:hover {
    border-color: var(--accent-green);
    background: rgba(111, 185, 62, 0.1);
    transform: translateX(-5px);
}

/* Footer */
footer {
    background: rgba(10, 14, 10, 0.8);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(111, 185, 62, 0.2);
}

footer p {
    margin-bottom: 0.8rem;
    opacity: 0.7;
}

.disclaimer {
    font-size: 0.9rem;
    color: #ff6b35;
    padding: 1rem;
    border: 1px solid #ff6b35;
    border-radius: 10px;
    background: rgba(255, 107, 53, 0.05);
    display: inline-block;
}

/* Responsive */
@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .brand-name {
        font-size: 1.5rem;
    }

    .header-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }
}
