/* ============================================
   CSS Variables & Reset
   ============================================ */
:root {
    --primary: #00ff66;
    --primary-dark: #00cc52;
    --primary-light: #66ffaa;
    --secondary: #00ff66;
    --accent: #00ff66;
    --dark: #000000;
    --dark-light: #0a0a0a;
    --gray-900: #111111;
    --gray-800: #1a1a1a;
    --gray-700: #2a2a2a;
    --gray-600: #3a3a3a;
    --gray-500: #6b6b6b;
    --gray-400: #9a9a9a;
    --gray-300: #cccccc;
    --gray-200: #e5e5e5;
    --gray-100: #0d0d0d;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary) 0%, #00cc52 100%);
    --gradient-text: linear-gradient(135deg, #00ff66 0%, #66ffaa 50%, #00ff66 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #000000;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn-primary {
    background: #00ff66;
    color: #000000;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 255, 102, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 255, 102, 0.6);
    background: #33ff85;
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #333333;
}

.btn-outline:hover {
    border-color: #00ff66;
    color: #00ff66;
    background: rgba(0, 255, 102, 0.1);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #1a1a1a;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
}

.logo span {
    color: #00ff66;
    -webkit-text-fill-color: #00ff66;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    color: #999999;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ff66;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(0, 255, 102, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(0, 255, 102, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 1;
    margin-left: 5%;
}

.hero-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 255, 102, 0.15);
    color: #00ff66;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 24px;
    min-height: calc(clamp(40px, 5vw, 60px) * 1.1 * 3);
}

.gradient-text {
    color: #00ff66;
    -webkit-text-fill-color: #00ff66;
}

.hero p {
    font-size: 18px;
    color: #999999;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

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

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #00ff66;
}

.stat-label {
    font-size: 14px;
    color: #666666;
    font-weight: 500;
}

.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: #111111;
    border: 1px solid #00ff66;
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    box-shadow: 0 0 30px rgba(0, 255, 102, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #ffffff;
    animation: float 6s ease-in-out infinite;
}

.floating-card .card-icon {
    font-size: 24px;
}

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

.card-2 {
    top: 45%;
    right: 0;
    animation-delay: 2s;
}

.card-3 {
    bottom: 10%;
    left: 10%;
    animation-delay: 4s;
}

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

/* ============================================
   Section Styles
   ============================================ */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
}

.view-all {
    font-weight: 600;
    color: #00ff66;
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-all:hover {
    gap: 12px;
}

/* ============================================
   Featured Section
   ============================================ */
.featured-section {
    padding: 80px 24px;
    background: #0a0a0a;
}

.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: #111111;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #1a1a1a;
}

.featured-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    background: #00ff66;
    color: #000000;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-content {
    padding: 48px;
    padding-left: 0;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.post-meta .author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #cccccc;
}

.post-meta .author img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.post-meta .date,
.post-meta .read-time {
    font-size: 14px;
    color: #666666;
}

.featured-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.featured-content p {
    color: #999999;
    margin-bottom: 24px;
    line-height: 1.7;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #00ff66;
}

.read-more:hover {
    gap: 12px;
}

/* ============================================
   Posts Grid
   ============================================ */
.posts-section {
    padding: 80px 24px;
    background: #000000;
}

.filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #999999;
    background: #111111;
    border: 1px solid #333333;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.filter-tab:hover {
    border-color: #00ff66;
    color: #00ff66;
}

.filter-tab.active {
    background: #00ff66;
    color: #000000;
    border-color: transparent;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
}

.post-card {
    background: #111111;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #1a1a1a;
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-8px);
    border-color: #00ff66;
    box-shadow: 0 0 30px rgba(0, 255, 102, 0.15);
}

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

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.post-content {
    padding: 24px;
}

.post-content .post-meta {
    margin-bottom: 12px;
}

.post-content .post-meta .date,
.post-content .post-meta .read-time {
    font-size: 13px;
}

.post-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-content p {
    font-size: 14px;
    color: #888888;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.author-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #cccccc;
}

.author-link img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.author-link:hover {
    color: #00ff66;
}

.load-more {
    text-align: center;
    margin-top: 48px;
}

/* ============================================
   Newsletter Section
   ============================================ */
.newsletter-section {
    padding: 100px 24px;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(0, 255, 102, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.newsletter-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(0, 255, 102, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.newsletter-content p {
    font-size: 18px;
    color: var(--gray-400);
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 16px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    font-size: 16px;
    border: 1px solid #333333;
    border-radius: var(--radius);
    background: #111111;
    color: #ffffff;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: #666666;
}

.newsletter-form input:focus {
    box-shadow: 0 0 0 2px #00ff66;
    border-color: #00ff66;
}

.newsletter-note {
    font-size: 14px;
    color: var(--gray-500);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: #000000;
    border-top: 1px solid #1a1a1a;
    padding: 80px 24px 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-brand p {
    color: var(--gray-400);
    margin-bottom: 24px;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #111111;
    border: 1px solid #333333;
    border-radius: 50%;
    color: #999999;
    transition: var(--transition);
}

.social-links a:hover {
    background: #00ff66;
    border-color: #00ff66;
    color: #000000;
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid #1a1a1a;
    text-align: center;
}

.footer-bottom p {
    color: #666666;
    font-size: 14px;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .hero-visual {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        margin-left: 0;
    }

    .featured-post {
        grid-template-columns: 1fr;
    }

    .featured-content {
        padding: 32px;
    }

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

@media (max-width: 768px) {
    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 120px 24px 60px;
    }

    .hero h1 {
        font-size: 36px;
        min-height: calc(36px * 1.1 * 3);
    }

    .hero-stats {
        gap: 32px;
    }

    .stat-number {
        font-size: 24px;
    }

    .section-header h2 {
        font-size: 24px;
    }

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

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

    .newsletter-content h2 {
        font-size: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .filter-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
    }

    .filter-tab {
        flex-shrink: 0;
    }
}

/* ============================================
   Articles Page Styles
   ============================================ */

/* Page Header */
.page-header {
    padding: 140px 24px 60px;
    background: #0a0a0a;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(0, 255, 102, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.page-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 255, 102, 0.15);
    color: #00ff66;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 20px;
}

.page-header h1 {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    min-height: calc(clamp(36px, 5vw, 52px) * 1.2);
}

.page-header p {
    font-size: 18px;
    color: #999999;
    max-width: 600px;
    margin: 0 auto 32px;
    position: relative;
    z-index: 1;
}

/* Search Container */
.search-container {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.search-input {
    flex: 1;
    padding: 16px 24px;
    font-size: 16px;
    border: 1px solid #333333;
    border-radius: var(--radius) 0 0 var(--radius);
    background: #111111;
    color: #ffffff;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.search-input::placeholder {
    color: #666666;
}

.search-input:focus {
    border-color: #00ff66;
    box-shadow: 0 0 0 2px rgba(0, 255, 102, 0.2);
}

.search-btn {
    padding: 16px 24px;
    background: #00ff66;
    color: #000000;
    border: none;
    border-radius: 0 var(--radius) var(--radius) 0;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background: #33ff85;
}

/* Articles Section */
.articles-section {
    padding: 60px 24px 80px;
    background: #000000;
}

.articles-layout {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
}

/* Sidebar Toggle Button */
.sidebar-toggle {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
    width: 48px;
    height: 48px;
    background: #111111;
    border: 1px solid #00ff66;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff66;
    transition: background 0.3s ease, color 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.3);
}

.sidebar-toggle:hover {
    background: #00ff66;
    color: #000000;
}

.sidebar-toggle svg {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.sidebar-toggle.active svg {
    transform: rotate(180deg);
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Sidebar */
.articles-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    height: 100vh;
    background: #0a0a0a;
    border-right: 1px solid #1a1a1a;
    z-index: 1003;
    padding: 100px 24px 40px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.articles-sidebar.active {
    transform: translateX(0);
}

.sidebar-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: #111111;
    border: 1px solid #333333;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    transition: var(--transition);
}

.sidebar-close:hover {
    border-color: #00ff66;
    color: #00ff66;
}

.sidebar-widget {
    background: #111111;
    border: 1px solid #1a1a1a;
    border-radius: var(--radius-lg);
    padding: 24px;
}

.sidebar-widget h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #1a1a1a;
}

/* Category List */
.category-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-radius: 8px;
    color: #999999;
    transition: var(--transition);
}

.category-list a:hover,
.category-list a.active {
    background: rgba(0, 255, 102, 0.1);
    color: #00ff66;
}

.category-list .count {
    background: #1a1a1a;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.category-list a.active .count,
.category-list a:hover .count {
    background: #00ff66;
    color: #000000;
}

/* Tags Cloud */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 8px 14px;
    background: #1a1a1a;
    color: #999999;
    font-size: 13px;
    border-radius: 20px;
    transition: var(--transition);
}

.tag:hover {
    background: #00ff66;
    color: #000000;
}

/* Sidebar Newsletter */
.newsletter-widget p {
    font-size: 14px;
    color: #888888;
    margin-bottom: 16px;
}

.sidebar-newsletter {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-newsletter input {
    padding: 12px 16px;
    font-size: 14px;
    border: 1px solid #333333;
    border-radius: 8px;
    background: #0a0a0a;
    color: #ffffff;
    font-family: inherit;
    outline: none;
}

.sidebar-newsletter input:focus {
    border-color: #00ff66;
}

.sidebar-newsletter .btn {
    width: 100%;
}

/* Articles Content */
.articles-content {
    min-width: 0;
}

.articles-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.results-count {
    color: #888888;
    font-size: 14px;
}

.results-count span {
    color: #00ff66;
    font-weight: 600;
}

.sort-dropdown select {
    padding: 10px 16px;
    font-size: 14px;
    border: 1px solid #333333;
    border-radius: 8px;
    background: #111111;
    color: #ffffff;
    font-family: inherit;
    cursor: pointer;
    outline: none;
}

.sort-dropdown select:focus {
    border-color: #00ff66;
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.article-card {
    background: #111111;
    border: 1px solid #1a1a1a;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.article-card:hover {
    border-color: #00ff66;
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 255, 102, 0.1);
}

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

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.article-content {
    padding: 24px;
}

.article-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.article-meta .date,
.article-meta .read-time {
    font-size: 13px;
    color: #666666;
}

.article-content h3 {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.article-content h3 a {
    color: #ffffff;
    transition: var(--transition);
}

.article-content h3 a:hover {
    color: #00ff66;
}

.article-content > p {
    font-size: 14px;
    color: #888888;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #1a1a1a;
}

.article-footer .author-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #cccccc;
}

.article-footer .author-link img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.article-footer .author-link:hover {
    color: #00ff66;
}

.read-link {
    font-size: 13px;
    font-weight: 600;
    color: #00ff66;
}

.read-link:hover {
    text-decoration: underline;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    background: #111111;
    border: 1px solid #333333;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.pagination-btn:hover:not(:disabled) {
    border-color: #00ff66;
    color: #00ff66;
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: #999999;
    background: #111111;
    border: 1px solid #333333;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.page-num:hover {
    border-color: #00ff66;
    color: #00ff66;
}

.page-num.active {
    background: #00ff66;
    color: #000000;
    border-color: #00ff66;
}

.page-dots {
    color: #666666;
    padding: 0 8px;
}

/* Articles Page Responsive */
@media (max-width: 1024px) {
    .sidebar-toggle {
        left: 16px;
        width: 44px;
        height: 44px;
    }

    .articles-sidebar {
        width: 300px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 24px 40px;
    }

    .page-header h1 {
        font-size: 32px;
        min-height: calc(32px * 1.2);
    }

    .search-container {
        flex-direction: column;
    }

    .search-input {
        border-radius: var(--radius);
    }

    .search-btn {
        border-radius: var(--radius);
        margin-top: 12px;
    }

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

    .pagination {
        gap: 12px;
    }

    .pagination-btn span {
        display: none;
    }
}

@media (max-width: 480px) {
    .articles-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .pagination-numbers {
        gap: 4px;
    }

    .page-num {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

/* ============================================
   Categories Page Styles
   ============================================ */

.categories-section {
    padding: 60px 24px 100px;
    background: #000000;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
}

.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #111111;
    border: 1px solid #1a1a1a;
    transition: var(--transition);
    display: block;
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: #00ff66;
    box-shadow: 0 0 40px rgba(0, 255, 102, 0.15);
}

.category-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
}

.category-info {
    padding: 28px;
}

.category-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 255, 102, 0.1);
    border: 1px solid rgba(0, 255, 102, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff66;
    margin-bottom: 20px;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background: #00ff66;
    color: #000000;
    border-color: #00ff66;
}

.category-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.category-info p {
    font-size: 14px;
    color: #888888;
    line-height: 1.6;
    margin-bottom: 16px;
}

.article-count {
    display: inline-block;
    padding: 6px 14px;
    background: #1a1a1a;
    color: #00ff66;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    transition: var(--transition);
}

.category-card:hover .article-count {
    background: rgba(0, 255, 102, 0.15);
}

/* Categories Page Responsive */
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .category-image {
        height: 150px;
    }

    .category-info {
        padding: 24px;
    }

    .category-info h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .categories-section {
        padding: 40px 16px 60px;
    }

    .category-icon {
        width: 48px;
        height: 48px;
    }

    .category-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* ============================================
   About Page Styles
   ============================================ */

.about-section {
    padding: 60px 24px 100px;
    background: #000000;
}

/* About Hero */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-hero-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
}

.about-hero-content .lead {
    font-size: 20px;
    color: #00ff66;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-hero-content p {
    color: #999999;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-hero-image {
    position: relative;
}

.about-hero-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 2;
}

.image-accent {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid #00ff66;
    border-radius: var(--radius-lg);
    z-index: 1;
}

/* About Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding: 60px;
    background: #0a0a0a;
    border-radius: var(--radius-lg);
    border: 1px solid #1a1a1a;
    margin-bottom: 100px;
}

.about-stat {
    text-align: center;
}

.about-stat-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: #00ff66;
    margin-bottom: 8px;
}

.about-stat-label {
    font-size: 14px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Values Section */
.values-section {
    margin-bottom: 100px;
}

.section-header.centered {
    text-align: center;
    margin-bottom: 48px;
}

.section-header.centered h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.section-header.centered p {
    color: #888888;
    font-size: 18px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.value-card {
    background: #111111;
    border: 1px solid #1a1a1a;
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    border-color: #00ff66;
    transform: translateY(-5px);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 255, 102, 0.1);
    border: 1px solid rgba(0, 255, 102, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff66;
    margin: 0 auto 24px;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: #00ff66;
    color: #000000;
    border-color: #00ff66;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: #888888;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    margin-bottom: 100px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.team-card {
    background: #111111;
    border: 1px solid #1a1a1a;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.team-card:hover {
    border-color: #00ff66;
    transform: translateY(-5px);
}

.team-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.team-info {
    padding: 24px;
}

.team-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.team-role {
    display: block;
    font-size: 13px;
    color: #00ff66;
    margin-bottom: 12px;
}

.team-info p {
    font-size: 14px;
    color: #888888;
    line-height: 1.6;
    margin-bottom: 16px;
}

.team-social {
    display: flex;
    gap: 12px;
}

.team-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    border-radius: 50%;
    color: #888888;
    transition: var(--transition);
}

.team-social a:hover {
    background: #00ff66;
    color: #000000;
}

/* About CTA */
.about-cta {
    text-align: center;
    padding: 80px;
    background: #0a0a0a;
    border-radius: var(--radius-lg);
    border: 1px solid #1a1a1a;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(0, 255, 102, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.about-cta h2 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.about-cta p {
    font-size: 18px;
    color: #888888;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.about-cta .btn {
    position: relative;
    z-index: 1;
}

/* About Page Responsive */
@media (max-width: 1024px) {
    .about-hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-hero-image {
        order: -1;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-content h2 {
        font-size: 28px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        padding: 32px;
    }

    .about-stat-number {
        font-size: 36px;
    }

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

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

    .team-image {
        height: 240px;
    }

    .about-cta {
        padding: 48px 24px;
    }

    .about-cta h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 16px 60px;
    }

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

    .image-accent {
        display: none;
    }
}

/* ============================================
   Contact Page Styles
   ============================================ */

.contact-section {
    padding: 60px 24px 100px;
    background: #000000;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
    background: #111111;
    border: 1px solid #1a1a1a;
    border-radius: var(--radius-lg);
    padding: 48px;
}

.contact-form-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.contact-form-wrapper > p {
    color: #888888;
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #cccccc;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    font-size: 15px;
    border: 1px solid #333333;
    border-radius: var(--radius);
    background: #0a0a0a;
    color: #ffffff;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666666;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #00ff66;
    box-shadow: 0 0 0 3px rgba(0, 255, 102, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 48px;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form .btn {
    align-self: flex-start;
    margin-top: 8px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: #111111;
    border: 1px solid #1a1a1a;
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    gap: 20px;
    transition: var(--transition);
}

.info-card:hover {
    border-color: #00ff66;
}

.info-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 255, 102, 0.1);
    border: 1px solid rgba(0, 255, 102, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff66;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.info-content p {
    font-size: 14px;
    color: #888888;
    margin-bottom: 8px;
}

.info-content a,
.info-content span {
    font-size: 15px;
    color: #00ff66;
    font-weight: 500;
}

.info-content a:hover {
    text-decoration: underline;
}

.social-card {
    background: #111111;
    border: 1px solid #1a1a1a;
    border-radius: var(--radius-lg);
    padding: 28px;
}

.social-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.social-card p {
    font-size: 14px;
    color: #888888;
    margin-bottom: 20px;
}

.social-card .social-links {
    display: flex;
    gap: 12px;
}

.social-card .social-links a {
    width: 44px;
    height: 44px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 24px;
    background: #0a0a0a;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #111111;
    border: 1px solid #1a1a1a;
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: #333333;
}

.faq-item h3 {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 14px;
    color: #888888;
    line-height: 1.7;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .social-card {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .social-card {
        grid-column: span 1;
    }

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

    .contact-form .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 16px 60px;
    }

    .contact-form-wrapper h2 {
        font-size: 24px;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
    }

    .info-icon {
        margin: 0 auto;
    }
}

/* ============================================
   Animations & Keyframes
   ============================================ */

/* Fade In Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scale Animations */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    70% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Glow Pulse Animation */
@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 255, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(0, 255, 102, 0.7);
    }
}

/* Text Shimmer Animation */
@keyframes textShimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Slide In Animations */
@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Bounce Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Border Glow Animation */
@keyframes borderGlow {
    0%, 100% {
        border-color: rgba(0, 255, 102, 0.3);
    }
    50% {
        border-color: rgba(0, 255, 102, 1);
    }
}

/* Rotate Animation */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Gradient Shift Animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in-down {
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
}

.animate-fade-in-left {
    opacity: 0;
    animation: fadeInLeft 0.8s ease forwards;
}

.animate-fade-in-right {
    opacity: 0;
    animation: fadeInRight 0.8s ease forwards;
}

.animate-scale-in {
    opacity: 0;
    animation: scaleIn 0.6s ease forwards;
}

.animate-pop-in {
    opacity: 0;
    animation: popIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

/* Animation Delay Classes */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-800 { animation-delay: 0.8s; }

/* Hero Animations */
.hero-tag {
    animation: fadeInDown 0.6s ease forwards;
}

.hero h1 {
}

.hero p {
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-actions {
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero-stats {
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

/* Stat Number Counter Animation */
.stat-number {
    animation: fadeIn 0.5s ease forwards, pulse 2s ease-in-out 1s;
}

/* Button Glow Animation on Hover */
.btn-primary:hover {
    animation: glowPulse 1.5s ease-in-out infinite;
}

/* Gradient Text Shimmer */
.gradient-text {
    background: linear-gradient(90deg, #00ff66, #66ffaa, #00ff66, #00cc52);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 4s linear infinite;
}

/* Card Hover Enhancements */
.post-card,
.article-card,
.category-card,
.value-card,
.team-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                border-color 0.3s ease,
                box-shadow 0.3s ease;
}

/* Floating Card Enhanced Animation */
.floating-card {
    animation: float 6s ease-in-out infinite, borderGlow 3s ease-in-out infinite;
}

/* Page Header Animations */
.page-tag {
    animation: popIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.page-header h1 {
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.page-header p {
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.search-container {
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

/* Social Links Hover Animation */
.social-links a:hover {
    animation: bounce 0.6s ease;
}

/* Team Social Links Hover */
.team-social a:hover {
    animation: popIn 0.3s ease;
}

/* Category Icon Hover Animation */
.category-card:hover .category-icon,
.value-card:hover .value-icon {
    animation: pulse 0.4s ease;
}

/* Image Accent Animation */
.image-accent {
    animation: borderGlow 3s ease-in-out infinite;
}

/* About Stats Animation */
.about-stat-number {
    background: linear-gradient(90deg, #00ff66, #66ffaa, #00ff66);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 3s linear infinite;
}

/* Newsletter Section Animation */
.newsletter-content h2 {
    animation: fadeInUp 0.8s ease forwards;
}

/* Sidebar Toggle - no animations for stability */

/* Filter Tab Active Animation */
.filter-tab.active {
    animation: popIn 0.3s ease;
}

/* Pagination Hover Effects */
.page-num:hover,
.pagination-btn:hover:not(:disabled) {
    animation: pulse 0.3s ease;
}

/* Scroll Reveal Animations */
/* Prevent reveal from conflicting with elements that have their own CSS entrance animations */
.hero .reveal, .hero .reveal-left, .hero .reveal-right, .hero .reveal-scale,
.page-header .reveal, .page-header .reveal-left, .page-header .reveal-right,
.auth-section .reveal, .auth-section .reveal-left, .auth-section .reveal-right {
    opacity: 1;
    transform: none;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Staggered Animation for Grid Items */
.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-item.active {
    opacity: 1;
    transform: translateY(0);
}

/* Link Underline Animation */
.nav-links a::after,
.read-more::after,
.view-all::after {
    transition: width 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

/* Input Focus Animation */
.newsletter-form input:focus,
.search-input:focus,
.sidebar-newsletter input:focus {
    animation: borderGlow 1s ease-in-out infinite;
}

/* Logo Animation */
.logo span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo:hover span {
    animation: bounce 0.6s ease;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   Auth Page Styles
   ============================================ */
.auth-section {
    padding: 120px 24px 100px;
    background: #000000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.auth-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 102, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.auth-wrapper {
    width: 100%;
    max-width: 440px;
    background: #111111;
    border: 1px solid #1a1a1a;
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-xl);
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-header h1 {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    min-height: calc(28px * 1.2);
}

.auth-header p {
    color: #888888;
    font-size: 15px;
}

.auth-tabs {
    display: flex;
    background: #0a0a0a;
    padding: 4px;
    border-radius: var(--radius);
    margin-bottom: 32px;
    border: 1px solid #1a1a1a;
}

.auth-tab {
    flex: 1;
    padding: 10px;
    background: transparent;
    border: none;
    color: #888888;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.auth-tab.active {
    background: #1a1a1a;
    color: #ffffff;
    box-shadow: var(--shadow-sm);
}

.auth-form {
    display: none;
    flex-direction: column;
    gap: 20px;
    animation: fadeIn 0.4s ease;
}

.auth-form.active {
    display: flex;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #888888;
    cursor: pointer;
}

.forgot-password {
    color: #00ff66;
    font-weight: 500;
}

.auth-separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 24px 0;
    color: #666666;
    font-size: 13px;
}

.auth-separator::before,
.auth-separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #1a1a1a;
}

.auth-separator::before { margin-right: 16px; }
.auth-separator::after { margin-left: 16px; }

.social-auth {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.social-auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: #0a0a0a;
    border: 1px solid #333333;
    border-radius: var(--radius);
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.social-auth-btn:hover {
    background: #1a1a1a;
    border-color: #666666;
    transform: translateY(-2px);
}

/* ============================================
   Pricing Page Styles
   ============================================ */
.pricing-section {
    padding: 60px 24px 120px;
    background: #000000;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.pricing-card {
    background: #111111;
    border: 1px solid #1a1a1a;
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: #333333;
}

.pricing-card.featured {
    border-color: #00ff66;
    background: rgba(0, 255, 102, 0.02);
    box-shadow: 0 0 40px rgba(0, 255, 102, 0.05);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 0 50px rgba(0, 255, 102, 0.1);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #00ff66;
    color: #000000;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #1a1a1a;
}

.pricing-card h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 16px;
}

.price {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price span {
    font-size: 16px;
    color: #666666;
    font-weight: 500;
}

.card-header p {
    color: #888888;
    font-size: 14px;
}

.features-list {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cccccc;
    font-size: 14px;
}

.features-list li svg {
    color: #00ff66;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .pricing-card.featured {
        transform: scale(1);
    }
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-inline: auto;
    }
}

/* ============================================
   Typewriter Effect
   ============================================ */
.typing-cursor::after {
    content: '|';
    display: inline-block;
    margin-left: 4px;
    color: #00ff66;
    animation: blink 1s step-end infinite;
}

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