/* Blog Specific Styles */
.blog-header {
    margin-top: 100px;
    padding: 80px 0 60px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(26, 26, 26, 0.9));
    text-align: center;
}

.blog-header .section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.8rem;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    margin-bottom: 20px;
}

.blog-header .section-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Blog Navigation */
.blog-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.blog-nav-btn {
    padding: 12px 24px;
    background: linear-gradient(145deg, #1a1a1a, #333333);
    border: 2px solid #555555;
    border-radius: 25px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.blog-nav-btn:hover,
.blog-nav-btn.active {
    background: linear-gradient(145deg, #ffd700, #ffed4e);
    color: #000000;
    border-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Blog Search */
.blog-search {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
    border: 2px solid #333333;
    border-radius: 30px 0 0 30px;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.search-btn {
    padding: 15px 20px;
    background: linear-gradient(145deg, #ffd700, #ffed4e);
    border: 2px solid #ffd700;
    border-radius: 0 30px 30px 0;
    color: #000000;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: linear-gradient(145deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
}

/* Featured Post */
.featured-post {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(0, 0, 0, 0.8));
}

.featured-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.featured-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000000;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.featured-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.featured-excerpt {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 25px;
}

.featured-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.featured-meta span {
    color: #888888;
    font-size: 0.9rem;
}

.featured-meta .author {
    color: #ffd700;
    font-weight: 600;
}

.featured-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(145deg, #1a1a1a, #333333);
    border: 2px solid #ffd700;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
    font-weight: 600;
    text-align: center;
}

/* Blog Posts Section */
.blog-posts {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.posts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.posts-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: #ffd700;
}

.sort-select {
    padding: 10px 15px;
    background: linear-gradient(145deg, #1a1a1a, #333333);
    border: 2px solid #555555;
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
}

.sort-select:focus {
    border-color: #ffd700;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.post-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 2px solid #333333;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.post-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.post-category {
    display: inline-block;
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.post-title {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 700;
}

.post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #ffd700;
}

.post-excerpt {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #333333;
}

.post-date {
    color: #888888;
    font-size: 0.9rem;
}

.post-read-time {
    color: #ffd700;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Load More Section */
.load-more-section {
    text-align: center;
    margin-top: 50px;
}

/* Newsletter Signup */
.newsletter-signup {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(0, 0, 0, 0.8));
    text-align: center;
}

.newsletter-content h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.2rem;
    color: #ffd700;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
    border: 2px solid #333333;
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

/* Archive Section */
.archive-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.5);
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.archive-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 2px solid #333333;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.archive-card:hover {
    border-color: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.archive-card h3 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.archive-list {
    list-style: none;
}

.archive-list li {
    margin-bottom: 10px;
}

.archive-list a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.archive-list a:hover {
    color: #ffd700;
    padding-left: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-header .section-title {
        font-size: 2.2rem;
    }
    
    .blog-nav {
        gap: 10px;
    }
    
    .blog-nav-btn {
        padding: 10px 18px;
        font-size: 0.8rem;
    }
    
    .featured-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .featured-title {
        font-size: 1.8rem;
    }
    
    .posts-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .archive-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .blog-header .section-title {
        font-size: 1.8rem;
    }
    
    .featured-title {
        font-size: 1.5rem;
    }
    
    .blog-search {
        flex-direction: column;
    }
    
    .search-input,
    .search-btn {
        border-radius: 10px;
    }
    
    .search-btn {
        margin-top: 10px;
    }
}

