* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: #0a0a0a;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: #000;
    border-bottom: 2px solid #ffd700;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon {
    font-size: 2rem;
}

header h1 {
    color: #ffd700;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1rem;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s;
}

nav a:hover {
    color: #ffd700;
}

nav a:hover::after {
    width: 100%;
}

main {
    padding: 3rem 20px;
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid #ffd700;
    border-radius: 10px;
    margin-bottom: 4rem;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.15);
}

.hero h2 {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 5rem;
}

.content-section h2 {
    font-size: 2.2rem;
    color: #ffd700;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.category {
    background: #ffd700;
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rating {
    color: #ffd700;
    font-size: 1rem;
    font-weight: 600;
}

.blog-card h3 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.date {
    color: #808080;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.blog-card p {
    color: #b0b0b0;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.read-more {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    display: inline-block;
}

.read-more:hover {
    color: #ffed4e;
}

.about {
    background: #1a1a1a;
    border: 1px solid #ffd700;
    padding: 3rem 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.15);
}

.about h2 {
    margin-bottom: 1.5rem;
}

.about p {
    font-size: 1.15rem;
    color: #b0b0b0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

footer {
    background: #000;
    border-top: 2px solid #ffd700;
    color: #b0b0b0;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

footer p {
    font-weight: 500;
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1.5rem;
    }

    nav ul {
        gap: 1.5rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .content-section h2 {
        font-size: 1.8rem;
    }
}
