/* FUTURISTIC DARK THEME - Cyberpunk Edition */
:root {
    --bg-primary: #0a0b0e;
    --bg-secondary: #14161c;
    --bg-card: #1e2128;
    --neon-cyan: #00f3ff;
    --neon-purple: #b829ff;
    --neon-pink: #ff3b9c;
    --neon-blue: #2a7fff;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0b0;
    --glow-intensity: 0 0 10px;
}

/* Reset & Basic */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Encode Sans', Arial, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 243, 255, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(184, 41, 255, 0.03) 0%, transparent 20%);
    min-height: 100vh;
}

/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');

/* Header - Futuristic Glass Effect */
header {
    background: rgba(20, 22, 28, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 243, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 243, 255, 0.2);
    color: white;
    padding: 10px 0;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

body {
    padding-top: 150px;
}

header .logo a {
    text-decoration: none;
    color: white;
    font-weight: 800;
    font-size: 32px;
    letter-spacing: 4px;
    text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
    position: relative;
}

header .logo a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--neon-purple), transparent);
    animation: scanline 3s linear infinite;
}

@keyframes scanline {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

header .logo span {
    font-size: 14px;
    display: block;
    color: var(--neon-purple);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
    text-shadow: 0 0 5px var(--neon-purple);
}
/* Simple Category Header */
.category-header {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 20px;
    background: rgba(30, 33, 40, 0.5);
    border-bottom: 2px solid var(--neon-cyan);
}

.category-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 0 10px var(--neon-cyan);
    margin-bottom: 10px;
}

.category-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Keep your existing article cards - they work fine */
/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 5px;
}

nav ul li a {
    color: var(--text-primary);
    padding: 10px 25px;
    text-decoration: none;
    display: block;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    transition: all 0.3s ease;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.1) 0%, transparent 100%);
    border: 1px solid rgba(0, 243, 255, 0.3);
    margin: 0 2px;
    overflow: hidden;
}

nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.2), transparent);
    transition: left 0.5s;
}

nav ul li a:hover::before {
    left: 100%;
}

nav ul li a:hover {
    background: var(--neon-cyan);
    color: black;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px var(--neon-cyan), 0 0 60px var(--neon-purple);
    transform: skewX(-5deg) scale(1.1);
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
    z-index: 10;
}

/* Dropdown styles */
.dropdown-content {
    display: none;
    position: absolute;
    background: rgba(30, 33, 40, 0.95);
    backdrop-filter: blur(10px);
    min-width: 200px;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(184, 41, 255, 0.3);
    border: 1px solid rgba(184, 41, 255, 0.3);
    padding: 5px 0;
}

.dropdown-content li a {
    clip-path: none; /* Remove the diagonal cut for dropdown */
    background: transparent;
    border: none;
    padding: 10px 20px;
    text-transform: none;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 0.9rem;
    margin: 0;
    border-radius: 0;
    color: var(--text-primary);
}

.dropdown-content li a:hover {
    background: rgba(0, 243, 255, 0.2);
    color: white;
    transform: none;
    box-shadow: none;
    border: none;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Mobile responsiveness */
@media (max-width: 992px) {
    nav ul li a {
        padding: 8px 15px;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        display: none;
        background: rgba(20, 22, 28, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        position: absolute;
        left: 0;
        top: 100%;
        padding: 15px 0;
        border-top: 1px solid var(--neon-cyan);
        gap: 0;
    }
    
    nav ul li a {
        clip-path: none; /* Remove diagonal on mobile */
        border-radius: 0;
        background: transparent;
        border: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding: 15px 20px;
        font-size: 1rem;
        text-align: center;
        margin: 0;
    }
    
    nav ul li a::before {
        display: none; /* Remove scan effect on mobile */
    }
    
    nav ul li a:hover {
        background: rgba(0, 243, 255, 0.2);
        color: white;
        transform: none;
        box-shadow: none;
        border: none;
    }
    
    .dropdown-content {
        position: relative;
        box-shadow: none;
        border: none;
        background: rgba(0, 0, 0, 0.3);
    }
    
    .dropdown-content li a {
        padding-left: 40px;
    }
    
    #navMenu.active ul {
        display: flex;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dropdown */
.dropdown-content {
    display: none;
    position: absolute;
    background: rgba(30, 33, 40, 0.95);
    backdrop-filter: blur(10px);
    min-width: 200px;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(184, 41, 255, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(184, 41, 255, 0.3);
    animation: fadeIn 0.3s ease;
}

.dropdown-content li a {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dropdown-content li:last-child a {
    border-bottom: none;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Main Content */
main {
    padding: 30px 20px;
}

/* Categories Section */
/* Categories Section - Cyberpunk Edition */
.categories-section {
    max-width: 1200px;
    margin: 20px auto 40px;
    padding: 0 20px;
}

.category-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    justify-content: center;
}

.category-block {
    color: white;
    padding: 15px 20px;
    text-decoration: none;
    display: block;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 1rem;
    position: relative;
    transition: all 0.3s ease;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.1) 0%, transparent 100%);
    border: 1px solid rgba(0, 243, 255, 0.3);
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

.category-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.2), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.category-block:hover::before {
    left: 100%;
}

.category-block:hover {
    background: var(--neon-cyan);
    color: black;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px var(--neon-cyan), 0 0 60px var(--neon-purple);
    transform: skewX(-3deg) scale(1.05);
    z-index: 10;
}

/* Different colors for each category (optional) */
.category-block:nth-child(1):hover { /* Travel */
    background: #00f3ff;
    box-shadow: 0 0 30px #00f3ff, 0 0 60px #b829ff;
}

.category-block:nth-child(2):hover { /* Health */
    background: #b829ff;
    box-shadow: 0 0 30px #b829ff, 0 0 60px #ff3b9c;
}

.category-block:nth-child(3):hover { /* Insurance */
    background: #ff3b9c;
    box-shadow: 0 0 30px #ff3b9c, 0 0 60px #00f3ff;
}

.category-block:nth-child(4):hover { /* Loans */
    background: #00f3ff;
    box-shadow: 0 0 30px #00f3ff, 0 0 60px #b829ff;
}

.category-block:nth-child(5):hover { /* Scholarships */
    background: #b829ff;
    box-shadow: 0 0 30px #b829ff, 0 0 60px #ff3b9c;
}

.category-block:nth-child(6):hover { /* Legal */
    background: #ff3b9c;
    box-shadow: 0 0 30px #ff3b9c, 0 0 60px #00f3ff;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .category-blocks {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .category-block {
        padding: 12px 15px;
        font-size: 0.9rem;
        clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%); /* Slightly less extreme on mobile */
    }
    
    .category-block:hover {
        transform: skewX(-2deg) scale(1.03);
    }
}

@media (max-width: 480px) {
    .category-blocks {
        grid-template-columns: 1fr;
    }
    
    .category-block {
        clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
        padding: 15px;
        font-size: 1rem;
    }
}

/* Animation for page load */
.category-block {
    animation: slideUp 0.5s ease forwards;
    opacity: 0;
}

.category-block:nth-child(1) { animation-delay: 0.1s; }
.category-block:nth-child(2) { animation-delay: 0.2s; }
.category-block:nth-child(3) { animation-delay: 0.3s; }
.category-block:nth-child(4) { animation-delay: 0.4s; }
.category-block:nth-child(5) { animation-delay: 0.5s; }
.category-block:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Content Grid */
.section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.section h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--neon-cyan);
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
}

.grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

/* Article Cards - For homepage listings */
.article-card {
    background: rgba(30, 33, 40, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
    transform: scaleX(0);
    transition: transform 0.5s;
}

.article-card:hover::before {
    transform: scaleX(1);
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 243, 255, 0.2), 0 0 30px rgba(184, 41, 255, 0.2);
    border-color: rgba(0, 243, 255, 0.3);
}

.article-card h3 {
    padding: 25px 25px 15px;
    margin: 0;
    font-size: 1.3rem;
    color: white;
    line-height: 1.4;
}

.article-card h3 a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    background: linear-gradient(90deg, white, white);
    background-size: 0% 2px;
    background-repeat: no-repeat;
    background-position: bottom left;
}

.article-card h3 a:hover {
    color: var(--neon-cyan);
    background-size: 100% 2px;
    background-image: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
}

.article-card p {
    padding: 0 25px 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    flex-grow: 1;
}

.article-card a:not(h3 a) {
    display: inline-block;
    margin: 0 25px 25px;
    padding: 10px 25px;
    background: transparent;
    color: var(--neon-cyan);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    align-self: flex-start;
    border: 1px solid var(--neon-cyan);
    position: relative;
    overflow: hidden;
}

.article-card a:not(h3 a)::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 243, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.article-card a:not(h3 a):hover::before {
    width: 300px;
    height: 300px;
}

.article-card a:not(h3 a):hover {
    background: var(--neon-cyan);
    color: var(--bg-primary);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px var(--neon-cyan);
}

/* SINGLE POST PAGE - IMPROVED LAYOUT */
.single-post .article-card,
.article-card:has(h1) {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

/* Article Header */
.article-card h1 {
    padding: 40px 40px 15px;
    margin: 0;
    font-size: 2.8rem;
    color: white;
    line-height: 1.3;
    text-shadow: 0 0 10px var(--neon-cyan);
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.article-card h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    border-radius: 3px;
}

/* Post Meta - IMPROVED */
.post-meta {
    padding: 0 40px 25px;
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.post-meta strong {
    color: var(--neon-pink);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 5px 15px;
    background: rgba(255, 59, 156, 0.1);
    border: 1px solid rgba(255, 59, 156, 0.3);
    border-radius: 30px;
    letter-spacing: 1px;
}

.post-meta::before {
    content: '📅';
    margin-right: 5px;
    font-size: 1rem;
    opacity: 0.8;
}

/* Post Content Container - PERFECT READING WIDTH */
.article-card .post-content {
    padding: 30px 40px 40px;
    max-width: 750px; /* Perfect for 10-12 words per line */
    margin: 0 auto;
    width: 100%;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Paragraphs - Limited width */
.article-card .post-content p {
    margin-bottom: 1.8em;
    color: var(--text-primary);
    max-width: 70ch; /* Controls words per line */
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    letter-spacing: 0.3px;
}

/* First paragraph drop cap */
.article-card .post-content p:first-of-type::first-letter {
    font-size: 4rem;
    float: left;
    padding: 10px 15px 0 0;
    line-height: 0.8;
    color: var(--neon-cyan);
    font-weight: 800;
    text-shadow: 0 0 15px var(--neon-cyan);
}

/* Headings in article */
.article-card h2 {
    padding: 0;
    margin: 2em auto 0.8em;
    font-size: 2.2rem;
    color: white;
    text-shadow: 0 0 8px var(--neon-cyan);
    max-width: 750px;
    width: 100%;
    position: relative;
    padding-bottom: 10px;
}

.article-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--neon-pink);
}

.article-card h3 {
    padding: 0;
    margin: 1.8em auto 0.8em;
    font-size: 1.6rem;
    color: var(--neon-purple);
    max-width: 750px;
    width: 100%;
}

/* Lists */
.article-card ul, 
.article-card ol {
    padding: 0;
    margin: 1.5em auto;
    max-width: 720px;
    width: 100%;
    padding-left: 30px;
}

.article-card li {
    margin-bottom: 0.8em;
    color: var(--text-secondary);
    line-height: 1.7;
}

.article-card li p {
    padding: 0;
    margin: 0;
}

/* Images in articles */
.article-card img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 40px auto;
    display: block;
    border: 1px solid rgba(0, 243, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 243, 255, 0.2);
    transition: all 0.3s;
}

.article-card img:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 50px rgba(0, 243, 255, 0.3);
    border-color: var(--neon-cyan);
}

/* Blockquotes */
.article-card blockquote {
    max-width: 700px;
    margin: 40px auto;
    padding: 30px 40px;
    background: rgba(0, 243, 255, 0.03);
    border-left: 4px solid var(--neon-cyan);
    border-radius: 0 15px 15px 0;
    font-style: italic;
    font-size: 1.2rem;
    color: white;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.article-card blockquote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 4rem;
    color: var(--neon-cyan);
    opacity: 0.3;
    font-family: serif;
}

/* Post Navigation */
.article-card .post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    padding: 30px 40px 20px;
    border-top: 1px solid rgba(0, 243, 255, 0.2);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.article-card .post-navigation a {
    text-decoration: none;
    color: var(--neon-cyan);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 40px;
    transition: all 0.3s;
    border: 1px solid rgba(0, 243, 255, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
    font-size: 0.95rem;
    background: rgba(0, 243, 255, 0.03);
}

.article-card .post-navigation a:hover {
    background: var(--neon-cyan);
    color: black;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px var(--neon-cyan);
    transform: translateY(-2px);
}

.article-card .post-navigation .prev-article {
    padding-left: 25px;
}

.article-card .post-navigation .next-article {
    padding-right: 25px;
}

.article-card .post-navigation .prev-article::before {
    content: '←';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s, left 0.3s;
}

.article-card .post-navigation .next-article::after {
    content: '→';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s, right 0.3s;
}

.article-card .post-navigation .prev-article:hover::before {
    opacity: 1;
    left: 3px;
}

.article-card .post-navigation .next-article:hover::after {
    opacity: 1;
    right: 3px;
}

/* Responsive */
@media (max-width: 768px) {
    .article-card h1 {
        padding: 30px 20px 15px;
        font-size: 2rem;
    }
    
    .post-meta {
        padding: 0 20px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .article-card .post-content {
        padding: 10px 20px 30px;
    }
    
    .article-card .post-content p {
        font-size: 1rem;
    }
    
    .article-card .post-content p:first-of-type::first-letter {
        font-size: 3rem;
    }
    
    .article-card h2 {
        font-size: 1.8rem;
        padding: 0 20px;
    }
    
    .article-card h3 {
        font-size: 1.4rem;
        padding: 0 20px;
    }
    
    .article-card ul, 
    .article-card ol {
        padding-left: 40px;
        padding-right: 20px;
    }
    
    .article-card .post-navigation {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .article-card .post-navigation a {
        text-align: center;
        width: 100%;
    }
    
    .article-card blockquote {
        padding: 20px;
        margin: 30px 20px;
    }
}

/* Reading progress bar */
.article-card:has(h1) {
    position: relative;
}

.article-card:has(h1)::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
    transform-origin: 0 50%;
    transform: scaleX(0);
    z-index: 1001;
    pointer-events: none;
    animation: progress-indicator auto linear;
    animation-timeline: scroll(root);
}

@keyframes progress-indicator {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}
/* Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding: 20px 25px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.post-navigation a {
    text-decoration: none;
    color: var(--neon-cyan);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s;
    border: 1px solid rgba(0, 243, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.post-navigation a:hover {
    background: var(--neon-cyan);
    color: var(--bg-primary);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px var(--neon-cyan);
}

/* Footer */
footer {
    background: rgba(10, 11, 14, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 243, 255, 0.2);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5), 0 0 30px rgba(184, 41, 255, 0.2);
    color: white;
    text-align: center;
    padding: 30px 10px;
    margin-top: 60px;
    position: relative;
}

footer p {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.95rem;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

footer a {
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

footer a:hover {
    color: var(--neon-purple);
    text-shadow: 0 0 10px var(--neon-purple);
}

/* Buttons */
.btn {
    background: transparent;
    color: var(--neon-cyan);
    padding: 12px 35px;
    text-decoration: none;
    border-radius: 40px;
    display: inline-block;
    transition: all 0.3s;
    border: 1px solid var(--neon-cyan);
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
}

.btn:hover {
    background: var(--neon-cyan);
    color: var(--bg-primary);
    box-shadow: 0 0 30px var(--neon-cyan);
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
    font-size: 30px;
    background: none;
    border: none;
    color: var(--neon-cyan);
    display: none;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    text-shadow: 0 0 10px var(--neon-cyan);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

.wow {
    animation: fadeIn 0.6s ease;
}

/* Responsive */
@media (max-width: 1024px) {
    .category-blocks {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 130px;
    }
    
    .hamburger {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        display: none;
        background: rgba(20, 22, 28, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        position: absolute;
        left: 0;
        top: 100%;
        padding: 20px 0;
        border-top: 1px solid var(--neon-cyan);
    }
    
    nav ul li {
        margin: 5px 0;
    }
    
    nav ul li a {
        display: inline-block;
        width: auto;
    }
    
    #navMenu.active ul {
        display: flex;
    }
    
    .category-blocks {
        grid-template-columns: 1fr;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
    
    .article-card h1 {
        font-size: 1.8rem;
    }
    
    .article-card h2 {
        font-size: 1.5rem;
    }
}
/* Related Posts Section */
.related-posts-section {
    margin-top: 40px;
    padding: 20px 20px 15px;
    border-top: 1px solid rgba(0, 243, 255, 0.2);
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0 0 12px 12px;
}

.related-posts-title {
    color: var(--neon-cyan);
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-shadow: 0 0 5px var(--neon-cyan);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.related-posts-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.related-post-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(20, 22, 28, 0.6);
    border: 1px solid rgba(0, 243, 255, 0.15);
    border-radius: 6px;
    padding: 10px 15px;
    text-decoration: none;
    color: white;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
    width: 100%;
}

.related-post-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 2px 10px rgba(0, 243, 255, 0.1);
    background: rgba(30, 33, 40, 0.8);
    transform: translateX(3px);
}

.related-post-card h4 {
    color: var(--neon-cyan);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.3;
    font-weight: 600;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 10px;
}

.related-post-card .read-more {
    color: var(--neon-purple);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
    white-space: nowrap;
}

.related-post-card:hover .read-more {
    color: var(--neon-cyan);
    opacity: 1;
}

/* Remove description from cards */
.related-post-card p {
    display: none;
}

.no-related-posts {
    color: var(--text-secondary);
    font-style: italic;
    padding: 15px;
    text-align: center;
    border: 1px dashed rgba(0, 243, 255, 0.2);
    border-radius: 8px;
    margin-top: 10px;
    font-size: 0.9rem;
}
