/* Blog Page Specific Styles */
@import url('./index.css');

/* Ensure proper body styling for blog pages */
body {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    min-height: 100vh;
    margin: 0;
    padding: 0;
}
main {
    padding-bottom: 20px;
}
.content-wrapper img{
    width: 100%;
    object-fit: contain;
}
/* Main content wrapper */
.main-content {
    padding-top: 80px; /* Account for fixed header */
}

/* Blog Hero Section - Redesigned */
.blog-hero {
    padding: 8rem 0 6rem;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(102, 229, 255, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #0A0F1C 0%, #1E293B 50%, #0F172A 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Hero Background Elements */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridFloat 30s linear infinite;
}

@keyframes gridFloat {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.hero-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(102, 229, 255, 0.12) 0%, transparent 70%);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.orb-3 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    top: 30%;
    right: 40%;
    animation-delay: 4s;
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.05), transparent);
    animation: waveMove 15s ease-in-out infinite;
}

.wave-1 {
    animation-delay: 0s;
    opacity: 0.3;
}

.wave-2 {
    animation-delay: 5s;
    opacity: 0.2;
}

.wave-3 {
    animation-delay: 10s;
    opacity: 0.1;
}

@keyframes waveMove {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0%); }
}

/* Hero Layout */
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    min-height: 80vh;
}

.hero-content {
    animation: heroSlideIn 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes heroSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Intro */
.hero-intro {
    margin-bottom: 3rem;
}

.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.badge-icon {
    font-size: 1.25rem;
    animation: iconSpin 3s ease-in-out infinite;
}

@keyframes iconSpin {
    0%, 90%, 100% { transform: rotate(0deg); }
    95% { transform: rotate(360deg); }
}

.badge-text {
    color: #00D4FF;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 2rem;
    transform: translate(-50%, -50%);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Hero Title */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    position: relative;
}

.title-primary {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    animation: titleFadeIn 1s ease-out 0.5s both;
}

.title-gradient {
    display: block;
    background: linear-gradient(135deg, #00D4FF 0%, #66E5FF 50%, #00D4FF 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGradient 3s ease-in-out infinite, titleFadeIn 1s ease-out 0.7s both;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.title-cursor {
    display: inline-block;
    color: #00D4FF;
    animation: cursorBlink 1s infinite, titleFadeIn 1s ease-out 0.9s both;
    margin-left: 0.25rem;
}

@keyframes titleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Hero Description */
.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 500px;
    animation: descriptionFadeIn 1s ease-out 1.1s both;
}

@keyframes descriptionFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Features */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    animation: featuresFadeIn 1s ease-out 1.3s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateX(10px);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00D4FF 0%, #66E5FF 100%);
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin: 0 0 0.25rem 0;
}

.feature-content p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

@keyframes featuresFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    animation: actionsFadeIn 1s ease-out 1.5s both;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #00D4FF 0%, #66E5FF 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #00D4FF;
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-3px);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon,
.btn-secondary:hover .btn-icon {
    transform: translateX(5px);
}

@keyframes actionsFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: visualSlideIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}

@keyframes visualSlideIn {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.visual-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.visual-main {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Brain Illustration */
.brain-illustration {
    position: relative;
    width: 300px;
    height: 300px;
    background:
        radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 70%),
        linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    animation: brainPulse 4s ease-in-out infinite;
    backdrop-filter: blur(20px);
}

@keyframes brainPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 50px rgba(0, 212, 255, 0.5);
    }
}

.brain-section {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: sectionFloat 3s ease-in-out infinite;
}

.section-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.section-2 {
    top: 20%;
    right: 20%;
    animation-delay: 0.5s;
}

.section-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

.section-4 {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

@keyframes sectionFloat {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

.section-label {
    font-size: 0.75rem;
    color: #00D4FF;
    font-weight: 600;
    text-align: center;
}

/* Data Points */
.data-points {
    position: absolute;
    width: 100%;
    height: 100%;
}

.data-point {
    position: absolute;
    padding: 0.75rem;
    background: rgba(30, 41, 59, 0.9);
    border: 1px solid rgba(0, 212, 255, 0.4);
    border-radius: 0.75rem;
    backdrop-filter: blur(20px);
    text-align: center;
    animation: pointFloat 4s ease-in-out infinite;
}
.footer-section p{
    margin: 20px 0;
}
.point-1 {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.point-2 {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: 1s;
}

.point-3 {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

@keyframes pointFloat {
    0%, 100% {
        transform: translateY(0px) translateX(-50%);
    }
    50% {
        transform: translateY(-15px) translateX(-50%);
    }
}

.point-2 {
    animation-name: pointFloatRight;
}

@keyframes pointFloatRight {
    0%, 100% {
        transform: translateY(-50%) translateX(0px);
    }
    50% {
        transform: translateY(-50%) translateX(-15px);
    }
}

.point-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #00D4FF;
    margin-bottom: 0.25rem;
}

.point-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Visual Stats */
.visual-stats {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 1rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    animation: statCardFloat 3s ease-in-out infinite;
}

.stat-card:nth-child(1) {
    animation-delay: 0s;
}

.stat-card:nth-child(2) {
    animation-delay: 1.5s;
}

@keyframes statCardFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
}

.stat-card .stat-icon {
    font-size: 1.5rem;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: #00D4FF;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

/* Hero Responsive Design */
@media (max-width: 1024px) {
    .hero-layout {
        gap: 3rem;
    }

    .brain-illustration {
        width: 250px;
        height: 250px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .title-primary {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 6rem 0 4rem;
    }
    .container{
        width: 100%;
       
    }
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-visual {
        order: -1;
    }

    .visual-main {
        height: 300px;
    }

    .brain-illustration {
        width: 200px;
        height: 200px;
    }

    .brain-section {
        width: 50px;
        height: 50px;
    }

    .section-label {
        font-size: 0.625rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .title-primary {
        font-size: 1.75rem;
    }

    .title-gradient {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
        max-width: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .visual-stats {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .stat-card {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .data-point {
        padding: 0.5rem;
    }

    .point-value {
        font-size: 1rem;
    }

    .point-label {
        font-size: 0.625rem;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        padding: 4rem 0 3rem;
    }

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

    .title-primary {
        font-size: 1.5rem;
    }

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

    .brain-illustration {
        width: 180px;
        height: 180px;
    }

    .brain-section {
        width: 40px;
        height: 40px;
    }

    .hero-features {
        gap: 0.75rem;
    }

    .feature-item {
        padding: 0.75rem;
    }

    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 120px;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #00D4FF 0%, #66E5FF 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.5);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00D4FF;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    animation: statPulse 2s ease-in-out infinite alternate;
}

@keyframes statPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Blog Controls */
.blog-controls {
    padding: var(--spacing-2xl) 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.controls-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-box i {
    position: absolute;
    left: var(--spacing-md);
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

.search-box input {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-md) var(--spacing-3xl);
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: var(--radius-lg);
    color: var(--white);
    font-size: var(--font-size-base);
    transition: var(--transition-normal);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.filter-tabs {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.filter-tab {
    padding: var(--spacing-sm) var(--spacing-lg);
    background: transparent;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    white-space: nowrap;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Featured Article */
.featured-article {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.9) 100%);
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-3xl);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.featured-badge {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background: var(--gradient-primary);
    color: var(--white);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-lg);
}

.featured-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-lg);
    line-height: 1.3;
}

.featured-excerpt {
    font-size: var(--font-size-base);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
}

.featured-meta {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.6);
}

.meta-item i {
    color: var(--primary-color);
}

.featured-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: var(--transition-normal);
}

.featured-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.featured-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition-normal);
}

.featured-image:hover img {
    transform: scale(1.05);
}

/* Articles Section */
.articles-section {
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-3xl);
}

.article-card {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.5);
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-normal);
}

.article-card:hover::before {
    opacity: 1;
}

.article-category {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-sm);
    background: rgba(0, 212, 255, 0.2);
    color: var(--primary-color);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-md);
}

.article-title {
    margin-bottom: var(--spacing-md);
}

.article-title a {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    line-height: 1.4;
    transition: var(--transition-normal);
}

.article-title a:hover {
    color: var(--primary-color);
}

.article-excerpt {
    font-size: var(--font-size-base);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.meta-left,
.meta-right {
    display: flex;
    gap: var(--spacing-md);
}

.article-footer {
    text-align: center;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 500;
    transition: var(--transition-normal);
}

.read-more-btn:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-2px);
}

.load-more-wrapper {
    text-align: center;
}

/* Newsletter Section */
.newsletter-section {
    padding: var(--spacing-4xl) 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
}

.newsletter-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--spacing-2xl);
    align-items: center;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-3xl);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.newsletter-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.newsletter-text {
    font-size: var(--font-size-base);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-lg);
}

.newsletter-form .form-group {
    display: flex;
    gap: var(--spacing-md);
}

.newsletter-form .form-input {
    flex: 1;
    padding: var(--spacing-md);
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: var(--radius-lg);
    color: var(--white);
    font-size: var(--font-size-base);
}

.newsletter-form .form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.newsletter-form .form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-icon {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.7;
}

/* Article Page Styles */
.article {
    padding: 6rem 0 4rem;
    background:
        radial-gradient(circle at 50% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.02) 1px, transparent 1px);
    background-size: 100px 100px;
    pointer-events: none;
    animation: articleGridMove 30s linear infinite;
}

@keyframes articleGridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.article-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
    position: relative;
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 2rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: headerSlideIn 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes headerSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.article-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #00D4FF 0%, #66E5FF 100%);
    border-radius: 2rem 2rem 0 0;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.article-category {
    background: var(--gradient-primary);
    color: var(--white);
}

.article-date,
.article-read-time {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.6);
}

.article-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00D4FF 0%, #66E5FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
    animation: titleShine 3s ease-in-out infinite alternate;
}

@keyframes titleShine {
    0% { filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3)); }
    100% { filter: drop-shadow(0 0 25px rgba(0, 212, 255, 0.6)); }
}

.article-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}

.article-author {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
}

.author-info {
    text-align: center;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--spacing-xs);
}

.author-title {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.6);
}

/* Article Content */
.article-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(30, 41, 59, 0.9);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 2rem;
    padding: 4rem;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    animation: contentFadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes contentFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.article-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #00D4FF 0%, #66E5FF 100%);
    border-radius: 2rem 2rem 0 0;
}

.article-content::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(102, 229, 255, 0.1));
    border-radius: 2rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.article-content:hover::after {
    opacity: 1;
}

.article-content h2 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00D4FF 0%, #66E5FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 3rem 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 212, 255, 0.3);
}

.article-content h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #00D4FF 0%, #66E5FF 100%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.article-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #66E5FF;
    margin: 2.5rem 0 1rem;
    text-shadow: 0 2px 10px rgba(102, 229, 255, 0.3);
}

.article-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.article-content p:first-of-type {
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 2rem;
}

.article-content ul,
.article-content ol {
    margin: var(--spacing-lg) 0;
    padding-left: var(--spacing-xl);
}

.article-content li {
    font-size: var(--font-size-base);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.article-content li::marker {
    color: var(--primary-color);
}

.article-content strong {
    color: var(--white);
    font-weight: 600;
}

.article-content em {
    color: var(--primary-color);
    font-style: italic;
}

.article-conclusion {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin: var(--spacing-2xl) 0;
    position: relative;
}

.article-conclusion::before {
    content: '💡';
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    font-size: var(--font-size-lg);
}

.article-conclusion p {
    margin-left: var(--spacing-2xl);
    margin-bottom: 0;
    font-weight: 500;
    color: var(--white);
}

/* Article Tags */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin: var(--spacing-2xl) 0;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.tag {
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(0, 212, 255, 0.2);
    color: var(--primary-color);
    font-size: var(--font-size-sm);
    font-weight: 500;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: var(--transition-normal);
}

.tag:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Article Share */
.article-share {
    text-align: center;
    margin: var(--spacing-2xl) 0;
    padding: var(--spacing-xl);
    background: rgba(30, 41, 59, 0.8);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 212, 255, 0.3);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.article-share::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #00D4FF 0%, #66E5FF 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.article-share h3 {
    font-size: var(--font-size-lg);
    color: var(--white);
    margin-bottom: var(--spacing-lg);
    font-weight: 600;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 120px;
    justify-content: center;
}

.share-btn i {
    font-size: 1.125rem;
}

.share-btn span {
    font-size: 0.875rem;
}

.share-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.share-btn:hover::before {
    left: 100%;
}

.share-btn.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #42A5F5 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.share-btn.twitter {
    background: linear-gradient(135deg, #1DA1F2 0%, #42A5F5 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(29, 161, 242, 0.3);
}

.share-btn.linkedin {
    background: linear-gradient(135deg, #0A66C2 0%, #2196F3 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(10, 102, 194, 0.3);
}

.share-btn.email {
    background: linear-gradient(135deg, #EA4335 0%, #FF5722 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(234, 67, 53, 0.3);
}

.share-btn.copy-link {
    background: linear-gradient(135deg, #00D4FF 0%, #66E5FF 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.facebook:hover {
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.5);
}

.share-btn.twitter:hover {
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.5);
}

.share-btn.linkedin:hover {
    box-shadow: 0 8px 25px rgba(10, 102, 194, 0.5);
}

.share-btn.email:hover {
    box-shadow: 0 8px 25px rgba(234, 67, 53, 0.5);
}

.share-btn.copy-link:hover {
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
}

/* Mobile responsive share buttons */
@media (max-width: 768px) {
    .share-buttons {
        flex-direction: column;
        align-items: center;
    }

    .share-btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .article-share {
        padding: var(--spacing-lg);
        margin: var(--spacing-lg) 0;
    }

    .share-btn {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.8rem;
        min-width: 100px;
    }

    .share-btn i {
        font-size: 1rem;
    }
}

/* Related Articles */
.related-articles {
    padding: var(--spacing-3xl) 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(10px);
}

.related-articles h2 {
    text-align: center;
    font-size: var(--font-size-2xl);
    color: var(--white);
    margin-bottom: var(--spacing-2xl);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.related-card {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: var(--transition-normal);
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
}

.related-card h3 {
    margin-bottom: var(--spacing-sm);
}

.related-card h3 a {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-normal);
}

.related-card h3 a:hover {
    color: var(--primary-color);
}

.related-card p {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-hero {
        min-height: 50vh;
        padding: 4rem 0 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

    .hero-stats {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .stat-item {
        padding: 1rem 1.5rem;
        min-width: 100px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .article-header {
        padding: 2rem 0;
        margin-bottom: 2rem;
    }

    .article-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .article-subtitle {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }

    .article-content {
        padding: 2.5rem 0.8rem !important;
        margin: 0 1rem;
    }

    .article-content h2 {
        font-size: 1.75rem;
        margin: 2rem 0 1rem;
    }

    .article-content h3 {
        font-size: 1.25rem;
        margin: 1.5rem 0 0.75rem;
    }

    .article-content p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .article-content p:first-of-type {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }

    .controls-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box {
        max-width: none;
    }

    .filter-tabs {
        justify-content: center;
    }

    .featured-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .featured-image {
        order: -1;
    }

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

    .newsletter-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter-icon {
        order: -1;
        margin-bottom: var(--spacing-lg);
    }

    .newsletter-form .form-group {
        flex-direction: column;
    }

    .article-title {
        font-size: var(--font-size-2xl);
    }

    .article-content {
        padding: var(--spacing-2xl);
    }

    .article-meta {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }

    .share-buttons {
        flex-direction: column;
        align-items: center;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .stat-item {
        width: 100%;
        max-width: 200px;
    }

    .article-content {
        padding: 2rem 1rem;
    }

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

    .filter-tabs {
        gap: var(--spacing-xs);
    }

    .filter-tab {
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: var(--font-size-xs);
    }

    .featured-card,
    .newsletter-card,
    .article-content {
        padding: var(--spacing-xl);
    }

    .article-title {
        font-size: var(--font-size-xl);
    }
}

/* Breadcrumb Navigation */
.breadcrumb-section {
    padding: 1.5rem 0;
    background: rgba(15, 23, 42, 0.8);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #00D4FF;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}

.breadcrumb-current {
    color: #00D4FF;
    font-weight: 500;
}

/* Enhanced Article Header */
.article-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 1rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    flex-wrap: wrap;
    justify-content: center;
}

.author-avatar {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(0, 212, 255, 0.3);
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-avatar-fallback {
    display: none;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00D4FF 0%, #66E5FF 100%);
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.author-info {
    flex: 1;
    min-width: 200px;
}

.author-name {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: #00D4FF;
    margin-bottom: 0.25rem;
}

.author-title {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.author-bio {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.article-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 0.5rem;
    color: #00D4FF;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.action-btn:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
}

/* Author Bio Section */
.author-bio-section {
    padding: 4rem 0;
    background: rgba(15, 23, 42, 0.6);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.author-bio-card {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.author-avatar-large {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(0, 212, 255, 0.4);
    flex-shrink: 0;
}

.author-avatar-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-avatar-fallback-large {
    display: none;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00D4FF 0%, #66E5FF 100%);
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.author-bio-content {
    flex: 1;
}

.author-bio-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #00D4FF;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 212, 255, 0.3);
}

.author-bio-title {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-weight: 500;
}

.author-bio-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.author-social-links {
    display: flex;
    gap: 1rem;
}

.author-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    color: #00D4FF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.author-social-link:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.2);
}

/* Related Articles Section */
.related-articles-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
}

.related-articles-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00D4FF 0%, #66E5FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    text-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

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

.related-article-card {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.related-article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #00D4FF 0%, #66E5FF 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.related-article-card:hover::before {
    opacity: 1;
}

.related-article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.5);
}

.related-article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.related-article-content {
    padding: 1.5rem;
}

.related-article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: center;
}

.related-article-category {
    padding: 0.25rem 0.75rem;
    background: rgba(0, 212, 255, 0.2);
    color: #00D4FF;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 1rem;
}

.related-article-date {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.related-article-title {
    margin-bottom: 1rem;
}

.related-article-title a {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.related-article-title a:hover {
    color: #00D4FF;
}

.related-article-excerpt {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.related-article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.read-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.read-time i {
    color: #00D4FF;
}

/* Newsletter Section for Articles */
.newsletter-section {
    padding: 4rem 0;
    background: rgba(15, 23, 42, 0.8);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.newsletter-card {
    background: rgba(30, 41, 59, 0.9);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #00D4FF 0%, #66E5FF 100%);
    border-radius: 1.5rem 1.5rem 0 0;
}

.newsletter-content {
    margin-bottom: 2rem;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00D4FF 0%, #66E5FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 212, 255, 0.3);
}

.newsletter-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 0.75rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #00D4FF;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #00D4FF 0%, #66E5FF 100%);
    border: none;
    border-radius: 0.75rem;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.4);
}

.newsletter-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.newsletter-privacy i {
    color: #00D4FF;
}

/* Enhanced Blog Hero Section */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00D4FF;
    border-radius: 50%;
    animation: particleFloat 8s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 6s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: 1s;
    animation-duration: 8s;
}

.particle:nth-child(3) {
    top: 30%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.particle:nth-child(4) {
    top: 70%;
    right: 25%;
    animation-delay: 3s;
    animation-duration: 9s;
}

.particle:nth-child(5) {
    top: 40%;
    left: 70%;
    animation-delay: 4s;
    animation-duration: 6s;
}

.particle:nth-child(6) {
    top: 80%;
    left: 60%;
    animation-delay: 5s;
    animation-duration: 8s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) translateX(-15px);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-30px) translateX(5px);
        opacity: 1;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 2rem;
    color: #00D4FF;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(0, 212, 255, 0);
    }
}

.hero-title .title-line {
    display: block;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.hero-title .title-highlight {
    display: block;
    font-size: 4rem;
    background: linear-gradient(135deg, #00D4FF 0%, #66E5FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 4s ease-in-out infinite alternate;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin: 2.5rem 0;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.125rem;
}

.cta-primary {
    background: linear-gradient(135deg, #00D4FF 0%, #66E5FF 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

.cta-secondary {
    background: transparent;
    color: #00D4FF;
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.cta-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-3px);
}

/* Enhanced Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.hero-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-stats .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #00D4FF 0%, #66E5FF 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-stats .stat-item:hover::before {
    opacity: 1;
}

.hero-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.5);
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00D4FF 0%, #66E5FF 100%);
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
    animation: iconPulse 3s ease-in-out infinite;
}

.stat-content {
    flex: 1;
}

.hero-stats .stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: #00D4FF;
    margin-bottom: 0.25rem;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.hero-stats .stat-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Enhanced Articles Section */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 1.5rem;
    color: #FF6B6B;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: badgeGlow 2s ease-in-out infinite alternate;
}

@keyframes badgeGlow {
    0% {
        box-shadow: 0 0 5px rgba(255, 107, 107, 0.3);
    }
    100% {
        box-shadow: 0 0 15px rgba(255, 107, 107, 0.6);
    }
}

.section-title .title-main {
    color: white;
}

.section-title .title-accent {
    background: linear-gradient(135deg, #00D4FF 0%, #66E5FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.section-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    min-width: 100px;
}

.stat-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: #00D4FF;
    margin-bottom: 0.25rem;
}

.stat-desc {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Load More Section */
.load-more-section {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
}

.load-more-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #00D4FF 0%, #66E5FF 100%);
    border-radius: 1.5rem 1.5rem 0 0;
}

.load-more-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.load-more-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
}

.load-more-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.view-all-btn {
    background: transparent;
    color: #00D4FF;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.view-all-btn:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.5);
}

.load-more-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #00D4FF 0%, #66E5FF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    animation: iconFloat 4s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .hero-title .title-line {
        font-size: 2rem;
    }

    .hero-title .title-highlight {
        font-size: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .hero-stats .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 1rem;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .hero-stats .stat-number {
        font-size: 1.5rem;
    }

    .section-stats {
        gap: 1rem;
    }

    .section-stat {
        padding: 0.75rem;
        min-width: 80px;
    }

    .load-more-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem;
    }

    .load-more-visual {
        order: -1;
        margin-bottom: 1rem;
    }

    .visual-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .load-more-actions {
        justify-content: center;
    }

    .author-bio-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .author-avatar-large {
        width: 100px;
        height: 100px;
    }

    .related-articles-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .newsletter-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title .title-line {
        font-size: 1.5rem;
    }

    .hero-title .title-highlight {
        font-size: 2rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .section-stats {
        /* flex-direction: column; */
        align-items: center;
    }

    .article-actions {
        justify-content: center;
    }

    .action-btn {
        flex: 1;
        justify-content: center;
        min-width: 100px;
    }
}