:root {
    --light: #ffffff;
    --dark: #ebc715;
    --bg: #0a0a0a;
    --text: #cccccc;
    --text-light: #999999;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--light);
    line-height: 1.6;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 20px rgba(235, 199, 21, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 100%;
}

.logo {
    height: 100%;
    max-height: 60px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--light);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--dark);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Blog Hero */
.blog-hero {
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
}

.blog-hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--dark);
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.blog-hero p {
    color: var(--text);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Grid */
.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(235, 199, 21, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: block;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(235, 199, 21, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(235, 199, 21, 0.1);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(235, 199, 21, 0.1), rgba(235, 199, 21, 0.02));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.blog-card-body {
    padding: 1.5rem;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

.blog-card-tag {
    background: rgba(235, 199, 21, 0.15);
    color: var(--dark);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 500;
}

.blog-card h2 {
    font-size: 1.25rem;
    color: var(--light);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card:hover h2 {
    color: var(--dark);
}

.blog-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.blog-card .read-more {
    display: inline-block;
    margin-top: 1rem;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Article Page */
.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 2rem 4rem;
}

.article-header {
    margin-bottom: 3rem;
}

.article-header .breadcrumb {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.article-header .breadcrumb a {
    color: var(--dark);
    text-decoration: none;
}

.article-header .breadcrumb a:hover {
    text-decoration: underline;
}

.article-header h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--light);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.article-body {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.8;
}

.article-body h2 {
    font-size: 1.6rem;
    color: var(--light);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(235, 199, 21, 0.2);
}

.article-body h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin: 2rem 0 0.75rem;
}

.article-body p {
    margin-bottom: 1.25rem;
}

.article-body ul, .article-body ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

.article-body strong {
    color: var(--light);
}

.article-body blockquote {
    border-left: 3px solid var(--dark);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: rgba(235, 199, 21, 0.05);
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.article-body .highlight-box {
    background: rgba(235, 199, 21, 0.08);
    border: 1px solid rgba(235, 199, 21, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.article-body .highlight-box h3 {
    margin-top: 0;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, rgba(235, 199, 21, 0.1), rgba(235, 199, 21, 0.03));
    border: 1px solid rgba(235, 199, 21, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin: 3rem 0;
}

.cta-box h3 {
    color: var(--dark);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.cta-box p {
    color: var(--text);
    margin-bottom: 1.25rem;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(45deg, #ebc715, #f0d000);
    color: var(--bg);
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(235, 199, 21, 0.5);
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.95);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(235, 199, 21, 0.2);
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: var(--text);
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.footer-section a:hover { color: var(--dark); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(235, 199, 21, 0.2);
    }

    .nav-menu.active { display: flex; }
    .mobile-menu { display: flex; }

    .blog-grid { grid-template-columns: 1fr; }

    .mobile-menu.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .mobile-menu.active span:nth-child(2) { opacity: 0; }
    .mobile-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
}
