/* CSS Reset and Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ff0000;
    --primary-dark: #cc0000;
    --primary-light: #ff3333;
    --secondary: #000000;
    --accent: #ffffff;
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --bg-darker: #050505;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #666666;
    --border: #333333;
    --border-light: #404040;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 30px rgba(255, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(255, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-sm {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.container h1{
    padding-top: 3%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: 2px solid transparent;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--accent);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-secondary:hover {
    background-color: var(--accent);
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-ghost {
    background-color: transparent;
    color: var(--text-primary);
    border-color: transparent;
}

.btn-ghost:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--border);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
    font-family:Verdana !important;
    

}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.5rem;
    transition: var(--transition);
}

.nav-logo a:hover {
    transform: scale(1.05);
}

.nav-logo img {
    height: 32px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--accent);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 50%, var(--secondary) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 20%, rgba(255, 0, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(255, 0, 0, 0.3));
}

.element-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
    color: var(--primary);
}

.element-2 {
    top: 50%;
    right: 20%;
    animation-delay: 2s;
    color: var(--accent);
}

.element-3 {
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
    color: var(--primary-light);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="rgba(255,0,0,0.05)"><circle cx="20" cy="20" r="2"/><circle cx="80" cy="80" r="1"/><circle cx="40" cy="70" r="1.5"/><circle cx="70" cy="30" r="1"/><circle cx="10" cy="50" r="1.5"/></svg>');
    pointer-events: none;
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.article-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.article-card:hover::before {
    transform: scaleX(1);
}

.article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--secondary), var(--bg-card));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.article-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent 50%, rgba(0,0,0,0.8));
}

.article-content {
    padding: 1.5rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.article-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-details {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article-author {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Enhanced YouTube Section */
.youtube-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--bg-dark) 100%);
    position: relative;
}

.youtube-container {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.youtube-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(255,0,0,0.1) 0%, rgba(255,0,0,0.05) 100%);
}

.youtube-channel-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.youtube-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="rgba(255,0,0,0.05)"><circle cx="20" cy="20" r="2"/><circle cx="80" cy="80" r="1"/><circle cx="40" cy="70" r="1.5"/><circle cx="70" cy="30" r="1"/><circle cx="10" cy="50" r="1.5"/></svg>');
    pointer-events: none;
}

.channel-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.channel-details h3 {
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.channel-details p {
    color: var(--text-secondary);
    margin: 0;
}

.youtube-videos {
    padding: 2rem;
}

.youtube-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
    background-color: rgba(0, 0, 0, 0.3);
}

/* YouTube Videos Grid */
.youtube-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.youtube-video-card {
    background-color: var(--bg-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
}

.youtube-video-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--secondary), var(--bg-card));
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.youtube-video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent 50%, rgba(0,0,0,0.8));
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
    color: white;
}

.youtube-video-card:hover .video-play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 1.5rem;
}

.video-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.video-duration {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--accent);
}

/* YouTube Page Header */
.youtube-page-header {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--secondary) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.youtube-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.1;
    pointer-events: none;
}

.header-content h1 {
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.header-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Enhanced CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ff9999 0%, #ff0000 50%, #990000 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="rgba(255,255,255,0.1)"><circle cx="20" cy="20" r="2"/><circle cx="80" cy="80" r="1"/><circle cx="40" cy="70" r="1.5"/><circle cx="70" cy="30" r="1"/><circle cx="10" cy="50" r="1.5"/></svg>');
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-text h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-text p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.cta-buttons .btn svg {
    margin-right: 0.75rem;
}

/* YouTube CTA */
.youtube-cta {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--secondary) 100%);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    margin-top: 3rem;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.youtube-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.05;
    pointer-events: none;
}

.youtube-cta h3 {
    margin-bottom: 1rem;
    color: var(--primary);
    position: relative;
    z-index: 2;
}

.youtube-cta p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

/* About Page Styles */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    margin-top: 2rem;
    color: var(--primary);
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.about-text li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    position: relative;
}

.about-text li::before {
    content: '▶';
    color: var(--primary);
    position: absolute;
    left: -1.5rem;
    font-size: 0.8rem;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-card {
    background-color: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.value-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

/* Team Section */
.team-section {
    background-color: var(--secondary);
    position: relative;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="rgba(255,0,0,0.05)"><circle cx="20" cy="20" r="2"/><circle cx="80" cy="80" r="1"/><circle cx="40" cy="70" r="1.5"/><circle cx="70" cy="30" r="1"/><circle cx="10" cy="50" r="1.5"/></svg>');
    pointer-events: none;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.team-member {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.team-member:hover::before {
    transform: scaleX(1);
}

.member-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.team-member h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Privacy Page Styles */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content h2 {
    margin-top: 3rem;
    color: var(--primary);
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.5rem;
}

.privacy-content h2:first-child {
    margin-top: 0;
}

.privacy-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.privacy-content li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    position: relative;
}

.privacy-content li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: -1.5rem;
    font-size: 1.2rem;
}

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-header h1 {
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Article Page Styles */
.article-main {
    padding: 8rem 0 4rem;
    min-height: 100vh;
}

.article-full {
    max-width: 800px;
    margin: 0 auto;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.article-date, .article-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.article-excerpt {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.article-body {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.article-body h2 {
    font-size: 1.75rem;
    margin: 3rem 0 1.5rem;
    color: var(--primary);
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.5rem;
}

.article-body h3 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: var(--text-primary);
}

.article-body h4 {
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
    color: var(--text-primary);
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body ul, .article-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.article-body strong {
    color: var(--primary);
    font-weight: 600;
}

.article-body em {
    color: var(--text-secondary);
    font-style: italic;
}

.article-body blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-secondary);
    background-color: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.article-body code {
    background-color: var(--bg-card);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: var(--primary);
    border: 1px solid var(--border);
}

.article-body pre {
    background-color: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--radius);
    overflow-x: auto;
    margin: 2rem 0;
    border: 1px solid var(--border);
}

.article-body pre code {
    background: none;
    padding: 0;
    color: var(--text-primary);
    border: none;
}

.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background-color: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.article-body th, .article-body td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.article-body th {
    background-color: var(--secondary);
    font-weight: 600;
    color: var(--primary);
}

.article-body tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.article-footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

/* Related Articles */
.related-articles {
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.related-articles h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.related-article {
    background-color: var(--bg-card);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.related-article:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.related-article h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.related-article p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.related-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Newsletter CTA */
.newsletter-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.newsletter-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="rgba(255,255,255,0.1)"><circle cx="20" cy="20" r="2"/><circle cx="80" cy="80" r="1"/><circle cx="40" cy="70" r="1.5"/><circle cx="70" cy="30" r="1"/><circle cx="10" cy="50" r="1.5"/></svg>');
}

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-content h3 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.newsletter-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Share Buttons */
.article-share {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.share-text {
    font-weight: 600;
    color: var(--text-secondary);
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
}

.share-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
}

.share-button:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Reading Progress Bar */
.reading-progress {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--border);
    z-index: 999;
}

.reading-progress-bar {
    height: 100%;
    background-color: var(--primary);
    width: 0%;
    transition: width 0.3s ease;
}

/* Table of Contents */
.table-of-contents {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin: 2rem 0;
}

.toc-header {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.toc-list {
    list-style: none;
    padding: 0;
}

.toc-item {
    margin-bottom: 0.5rem;
}

.toc-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    padding: 0.25rem 0;
}

.toc-link:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

/* Footer */
.footer {
    background-color: var(--secondary);
    border-top: 1px solid var(--border);
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    padding: 3rem 0;
    position: relative;
    z-index: 2;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.5rem;
    transition: var(--transition);
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo img {
    height: 32px;
    width: auto;
}

.footer-description {
    color: var(--text-secondary);
    max-width: 300px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.footer-link-group h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.footer-link-group a {
    display: block;
    padding: 0.25rem 0;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-link-group a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 1.5rem 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    position: relative;
    z-index: 2;
}

/* Loading States */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Fade-in Animation */
.fade-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-element.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary);
}

.text-secondary {
    color: var(--text-secondary);
}

.bg-dark {
    background-color: var(--bg-dark);
}

.bg-card {
    background-color: var(--bg-card);
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.p-0 { padding: 0; }
.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }
.p-3 { padding: 3rem; }

.hidden {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .cta-section,
    .hero-buttons,
    .scroll-to-top {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .hero {
        padding-top: 0;
    }

    a {
        color: black;
        text-decoration: underline;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-dark);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: var(--transition);
        border-top: 1px solid var(--border);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .youtube-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .youtube-channel-info {
        justify-content: center;
    }
    
    .youtube-page-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .header-stats {
        justify-content: space-around;
    }
    
    .youtube-videos-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-text h2 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-values {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .value-card {
        flex: 1 1 200px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }

    .article-main {
        padding: 6rem 0 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .article-body {
        font-size: 1rem;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
    }
    
    .article-body h3 {
        font-size: 1.25rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .article-share {
        flex-direction: column;
        gap: 1rem;
    }

    .scroll-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    section {
        padding: 3rem 0;
    }

    .hero {
        min-height: 80vh;
    }

    .hero-visual {
        height: 200px;
    }

    .youtube-videos {
        padding: 1rem;
    }
    
    .youtube-cta {
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .header-stats {
        gap: 1rem;
    }

    .article-header {
        margin-bottom: 2rem;
    }
    
    .article-title {
        font-size: 1.75rem;
    }
    
    .article-excerpt {
        font-size: 1.125rem;
    }
    
    .newsletter-cta {
        padding: 2rem 1rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
/* Newsletter CTA */
.newsletter-cta {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--secondary) 100%);
    border-radius: 12px;
    padding: 3rem 2rem;
    margin: 3rem 0;
    border: 1px solid var(--border);
    text-align: center;
}

.newsletter-content {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-text h3 {
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 1.75rem;
}

.newsletter-text p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.newsletter-form {
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    gap: 0.5rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
}

.newsletter-input::placeholder {
    color: var(--text-secondary);
}

.btn-newsletter {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: 2px solid var(--primary);
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-newsletter:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #b30000 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.btn-newsletter:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    display: none;
}

.form-message.success {
    display: block;
    background-color: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-message.error {
    display: block;
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.newsletter-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.feature svg {
    color: var(--primary);
}

/* Responsive Newsletter */
@media (max-width: 768px) {
    .newsletter-cta {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .newsletter-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .newsletter-text h3 {
        font-size: 1.5rem;
    }
    
    .newsletter-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .newsletter-cta {
        padding: 1.5rem 1rem;
    }
    
    .btn-newsletter {
        width: 100%;
        justify-content: center;
    }
}
/* Small spinner for buttons */
.spinner-small {
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-left: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.video-item {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
/* Donate Button Styles */
.nav-donate-btn {
    background: linear-gradient(135deg, #FFDD00 0%, #FFAA00 100%);
    color: #000000 !important;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid transparent;
    text-decoration: none;
}

.nav-donate-btn:hover {
    background: linear-gradient(135deg, #FFAA00 0%, #FF8800 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 221, 0, 0.4);
    color: #000000 !important;
    border-color: #FFDD00;
}

/* Alternative White Style (if you prefer) */
/* 
.nav-donate-btn {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #000000 !important;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid transparent;
}

.nav-donate-btn:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    color: #000000 !important;
    border-color: #ffffff;
}
*/

/* Mobile Responsive for Donate Button */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-dark);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: var(--transition);
        border-top: 1px solid var(--border);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-donate-btn {
        margin-top: 1rem;
        order: 1; /* Make it appear at the end in mobile */
    }
}

@media (max-width: 480px) {
    .nav-donate-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}
/* Donate Image Button Styles */
.nav-donate-image {
    display: flex;
    align-items: center;
    padding: 0.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-donate-image:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    background-color: rgba(255, 0, 0, 0.1);
}

.donate-img {
    height: 32px; /* Adjust based on your image */
    width: auto;
    transition: var(--transition);
    border-radius: 6px;
}

.nav-donate-image:hover .donate-img {
    transform: scale(1.05);
}

/* If you want a white background for the image */
.donate-img {
    height: 32px;
    width: auto;
    background-color: white;
    padding: 4px;
    border-radius: 6px;
}

/* Alternative: If you want the image to have the yellow BMC theme */
.donate-img {
    height: 32px;
    width: auto;
    border: 2px solid #FFDD00;
    border-radius: 6px;
    padding: 2px;
    background-color: #FFDD00;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-donate-image {
        margin-top: 1rem;
        order: 1;
    }
    
    .donate-img {
        height: 28px;
    }
}

@media (max-width: 480px) {
    .donate-img {
        height: 24px;
    }
}

/* Blog Card Styles */
.blog-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.1);
}

.blog-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.blog-category {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-read-time {
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-card-content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    color: var(--text-primary);
}

.blog-card-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.blog-read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.blog-read-more:hover {
    gap: 0.75rem;
    color: var(--primary-dark);
}

/* ===== BLOG STYLES - TILE LAYOUT WITH IMAGES ===== */

.blog-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 0 auto;
}

.blog-post-card {
    position: relative;
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #333;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.2);
    border-color: #dc2626;
}

.post-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom: 3px solid #dc2626;
}

.post-image[src=""],
.post-image:not([src]) {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 0.9rem;
}

.post-image[src=""]::after,
.post-image:not([src])::after {
    content: 'Image Coming Soon';
}

.post-content-wrapper {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.post-date {
    font-size: 0.85rem;
    color: #dc2626;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.read-time {
    font-size: 0.8rem;
    color: #666;
    background: #2a2a2a;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    border: 1px solid #333;
    font-weight: 500;
}

.post-title {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    color: #ffffff;
    margin: 0.5rem 0 1rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #dc2626;
}

.post-excerpt {
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #333;
    margin-top: auto;
}

.author {
    font-size: 0.85rem;
    color: #dc2626;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-actions {
    margin: 0;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.read-more:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    gap: 0.75rem;
}

.category-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 10;
    max-width: calc(100% - 2rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Loading States */
.loading {
    text-align: center;
    padding: 4rem 2rem;
    grid-column: 1 / -1;
}

.spinner {
    border: 3px solid #333;
    border-top: 3px solid #dc2626;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.no-posts, .error-message {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
    grid-column: 1 / -1;
}

.no-posts h3, .error-message h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

/* Blog Section Background */
.blog-section {
    background: #0a0a0a;
    padding: 4rem 0;
    position: relative;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
}

/* Page Header Dark Theme */
.page-header {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    padding: 4rem 0;
    text-align: center;
    border-bottom: 1px solid #333;
}

.page-header h1 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-header p {
    color: #a0a0a0;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .blog-content {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

@media (max-width: 768px) {
    .blog-content {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .post-image {
        height: 180px;
    }
    
    .post-content-wrapper {
        padding: 1.25rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .blog-content {
        grid-template-columns: 1fr;
    }
    
    .post-image {
        height: 160px;
    }
    
    .post-content-wrapper {
        padding: 1rem;
    }
    
    .post-title {
        font-size: 1.2rem;
    }
    
    .post-excerpt {
        font-size: 0.9rem;
    }
    
    .read-more {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}
/* ===== FEATURED SECTION STYLES ===== */
.featured-section {
    background: #0a0a0a;
    padding: 4rem 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.section-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.section-footer {
    text-align: center;
}

.btn-outline {
    display: inline-block;
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border: 2px solid #dc2626;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline:hover {
    background: #dc2626;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

/* Loading state for featured articles */
#featured-articles .loading {
    text-align: center;
    padding: 3rem;
    grid-column: 1 / -1;
}

#featured-articles .spinner {
    border: 3px solid #333;
    border-top: 3px solid #dc2626;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

#featured-articles .no-posts,
#featured-articles .error-message {
    text-align: center;
    padding: 3rem;
    grid-column: 1 / -1;
    color: #666;
}

#featured-articles .no-posts h3,
#featured-articles .error-message h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}
/* Ensure article images display properly */
.article-image {
    position: relative;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Fix for featured section grid */
.featured-section .articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.video-thumbnail {
    position: relative;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    border-radius: 12px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: red;
    color: white;
    font-size: 30px;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.youtube-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

@media (max-width: 1024px) {
  .youtube-videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .youtube-videos-grid {
    grid-template-columns: 1fr;
  }
}

.video-item {
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,0,0,0.15);
}

.video-thumbnail {
  position: relative;
  cursor: pointer;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: black;
}

.video-thumbnail img,
.video-thumbnail iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.play-button {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  color: white;
  background: rgba(0,0,0,0.35);
  transition: background 0.3s ease;
}

.play-button:hover {
  background: rgba(0,0,0,0.55);
}

.video-item h3 {
  font-size: 14px;
  padding: 12px;
  line-height: 1.4;
}
.youtube-footer {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.youtube-footer .btn {
  min-width: 200px;
  text-align: center;
}
/* ✅ FINAL FIX FOR YOUTUBE VIDEO GRID UI */

.youtube-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

@media (max-width: 1024px) {
  .youtube-videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .youtube-videos-grid {
    grid-template-columns: 1fr;
  }
}

.video-item {
  background: #0f0f0f;
  border-radius: 16px;
  overflow: hidden;             /* ✅ FIXES WHITE CORNER BUG */
  box-shadow: 0 0 0 1px rgba(255,0,0,0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px rgba(255,0,0,0.35);
}

/* ✅ HARD LOCK 16:9 SIZE */
.video-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;             /* ✅ REMOVES TOP WHITE ARC */
}

.video-thumbnail img,
.video-thumbnail iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;            /* ✅ PREVENTS IMAGE STRETCH */
  border: 0;
}

.play-button {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
  color: white;
  background: rgba(0,0,0,0.35);
  transition: background 0.25s ease;
}

.play-button:hover {
  background: rgba(0,0,0,0.55);
}

/* ✅ CLEAN TITLE BAR UNDER VIDEO */
.video-item h3 {
  font-size: 14px;
  padding: 12px 14px;
  line-height: 1.45;
  background: #111;
  min-height: 54px;
  display: flex;
  align-items: center;
}

/* ✅ CENTER "VIEW ALL VIDEOS" */
.youtube-footer {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
/* ================================
   ✅ PREMIUM YOUTUBE SECTION UPGRADE
================================= */

.youtube-section {
  padding: 80px 0;
  background: radial-gradient(circle at top, #1a0f10 0%, #050505 70%);
}

/* ✅ GRID POLISH */
.youtube-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .youtube-videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .youtube-videos-grid {
    grid-template-columns: 1fr;
  }
}

/* ✅ VIDEO CARD PREMIUM LOOK */
.video-item {
  background: linear-gradient(180deg, #111, #050505);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 
    0 10px 25px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,0,0,0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 18px 40px rgba(0,0,0,0.85),
    0 0 0 1px rgba(255,0,0,0.45);
}

/* ✅ HARD-LOCK PERFECT 16:9 */
.video-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

/* ✅ CLEAN IMAGE / IFRAME */
.video-thumbnail img,
.video-thumbnail iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  display: block;
}

/* ✅ CINEMATIC OVERLAY */
.video-thumbnail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05),
    rgba(0,0,0,0.35)
  );
  pointer-events: none;
}

/* ✅ MODERN PLAY BUTTON */
.play-button {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  font-weight: 700;
  color: white;
  background: radial-gradient(circle, rgba(255,0,0,0.35), rgba(0,0,0,0.55));
  transition: all 0.3s ease;
}

.video-item:hover .play-button {
  background: radial-gradient(circle, rgba(255,0,0,0.6), rgba(0,0,0,0.75));
  transform: scale(1.05);
}

/* ✅ CLEAN TITLE BAR */
.video-item h3 {
  font-size: 14px;
  padding: 14px 16px;
  line-height: 1.5;
  background: linear-gradient(180deg, #0e0e0e, #050505);
  min-height: 58px;
  display: flex;
  align-items: center;
  font-weight: 500;
  color: #eaeaea;
}

/* ================================
   ✅ FORCE PERFECT CENTER BUTTON
================================= */

.youtube-footer {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin-top: 50px !important;
  width: 100%;
}

.youtube-footer a,
.youtube-footer button {
  margin: 0 auto !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.4px;
  border: 1px solid rgba(255,0,0,0.6);
  background: linear-gradient(145deg, #0b0b0b, #151515);
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(255,0,0,0.25),
    0 10px 30px rgba(0,0,0,0.7);
  transition: all 0.3s ease;
}

.youtube-footer a:hover {
  transform: translateY(-2px);
  background: linear-gradient(145deg, #151515, #1f1f1f);
  box-shadow:
    0 0 0 1px rgba(255,0,0,0.8),
    0 18px 40px rgba(0,0,0,0.85);
}
/* ✅ FINAL REAL FIX — TARGETS YOUR EXACT CLASS */
.youtube-footer {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin-top: 40px !important;
}

.youtube-footer a {
  margin: 0 auto !important;
  display: inline-flex !important;
}
/* =========================================
✅ ULTRA-COMPACT CARD LAYOUT WITH RED ACCENTS
✅ SMALLER CARD SIZE • TIGHTER SPACING • RED THEME
========================================= */

/* ✅ SMALLER CARD CONTAINER */
.article-card {
height: auto !important;
min-height: unset !important;
margin-bottom: 0 !important;
padding-bottom: 0 !important;
border: 1px solid #e0e0e0 !important;
box-shadow: 0 1px 3px rgba(0,0,0,0.1) !important;
transition: all 0.3s ease !important;
}

/* ✅ RED BORDER ON HOVER */
.article-card:hover {
border-color: #dc2626 !important;
box-shadow: 0 2px 8px rgba(220, 38, 38, 0.15) !important;
transform: translateY(-2px) !important;
}

/* ✅ COMPACT IMAGE HEIGHT WITH HOVER EFFECT */
.article-card img {
height: 140px !important;
object-fit: cover !important;
width: 100% !important;
transition: transform 0.3s ease !important;
}

.article-card:hover img {
transform: scale(1.02) !important;
}

/* ✅ COMPACT CARD CONTENT - REDUCED PADDING */
.article-card .card-body {
padding: 10px 12px !important;
height: auto !important;
min-height: unset !important;
}

/* ✅ COMPACT TITLE - RED ON HOVER */
.article-card h2,
.article-card .article-title {
font-size: 23px !important;
line-height: 1.2 !important;
margin-bottom: 5px !important;
margin-top: 0 !important;
color: #feffff !important;
}

.article-card:hover h2,
.article-card:hover .article-title {
color: #dc2626 !important;
}

/* ✅ AUTHOR NAME - PERMANENT RED COLOR */
.article-card .article-meta .author,
.article-card .article-author {
color: #dc2626 !important;
font-weight: 500 !important;
}

/* ✅ COMPACT META */
.article-card .article-meta {
font-size: 10px !important;
margin-bottom: 3px !important;
color: #666 !important;
}

/* ✅ COMPACT DESCRIPTION - SHORTER */
.article-card p,
.article-card .article-excerpt {
font-size: 15px !important;
line-height: 1.35 !important;
margin-bottom: 6px !important;
color: #555 !important;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}

/* ✅ COMPACT BUTTON */
.article-card .read-more {
font-size: 11px !important;
padding: 4px 10px !important;
margin-bottom: 2px !important;
background-color: #f8f9fa !important;
color: #374151 !important;
border: 1px solid #d1d5db !important;
transition: all 0.3s ease !important;
}

.article-card:hover .read-more {
background-color: #dc2626 !important;
color: white !important;
border-color: #dc2626 !important;
}

/* ✅ TIGHTER GRID GAPS */
.articles-grid {
gap: 12px !important;
}
/* ✅ NUCLEAR FIX: REMOVE ALL EXTRA SPACE ABOVE & BELOW IMAGE */

/* Header wrapper */
.article-header {
  margin: 0 !important;
  padding: 0 !important;
}

/* Title */
.article-header h1 {
  margin-top: 0 !important;
  margin-bottom: 6px !important;
}

/* Meta (date + author) */
.article-meta {
  margin-top: 0 !important;
  margin-bottom: 6px !important;
  padding: 0 !important;
}

/* Image wrapper */
.article-hero {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
  padding: 0 !important;
}

/* The image itself */
.article-hero img {
  margin: 0 !important;
  padding: 0 !important;
  display: block;
}

/* Caption */
.image-caption {
  margin-top: 2px !important;
  margin-bottom: 14px !important;
}

/* ✅ RED BUTTON FOR BACK TO ARTICLES */
.back-to-articles {
  display: inline-block;
  margin-top: 40px;
  padding: 10px 22px;
  background: linear-gradient(145deg, #ff1a1a, #b30000);
  color: #fff !important;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255,0,0,0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.back-to-articles:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255,0,0,0.45);
}
/* =========================================
   ✅ SHARED PAGE HERO HEADER (ABOUT-STYLE)
========================================= */

.page-hero {
  padding: 90px 20px;
  text-align: center;
  background: radial-gradient(
      circle at center,
      rgba(120, 10, 10, 0.35),
      rgba(0, 0, 0, 0.98)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero h1 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 16px;
  opacity: 0.8;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}
.md-figure {
  max-width: 820px;
  margin: 40px auto;
  text-align: center;
}

.md-figure img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.25);
}

.md-figure figcaption {
  margin-top: 10px;
  font-size: 13px;
  font-style: italic;
  color: rgba(255, 60, 60, 0.9);
}
/* Increase CTA feature text size */
.newsletter-features .feature span:not(.dot) {
    font-size: 18px;   /* Change this number to your liking */
    font-weight: 500;  /* Slightly stronger for clarity */
    color: #e0e0e0;    /* Slightly brighter text (optional) */
}
/* ---------------------------------------------------
   FIX CTA BREAKAGE CAUSED BY MAILERLITE GLOBAL CSS
--------------------------------------------------- */

/* Restore full CTA layout */
.newsletter-cta {
    display: flex !important;
    justify-content: center !important;
    padding: 40px 0 !important;
}

/* Restore inner layout */
.newsletter-content {
    max-width: 800px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

/* Restore form alignment */
.newsletter-form,
.ml-form-container,
.ml-embedded {
    display: flex !important;
    justify-content: center !important;
    margin: 20px auto !important;
}

/* Prevent MailerLite from breaking spacing */
.newsletter-text h3,
.newsletter-text p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Restore feature row layout */
.newsletter-features {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 50px !important;
    margin-top: 20px !important;
}

/* Make feature items align properly */
.newsletter-features .feature {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

/* Ensure text stays readable */
.newsletter-features .feature span:not(.dot) {
    font-size: 17px !important;
    color: #ddd !important;
}

/* Red dot style */
.newsletter-features .dot {
    width: 10px !important;
    height: 10px !important;
    background: #ff2b2b !important;
    border-radius: 50% !important;
}
/* =========================================
   ABOUT ME SECTION — REMOVE CARD COMPLETELY
   ========================================= */

.about-me-section {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 100px auto !important;
    max-width: 1200px !important;
}

/* Keep the layout (text left, avatar right) */
.about-me-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* Left text section */
.about-me-text h2 {
    text-align: left !important;
    margin-bottom: 20px;
}

.about-me-text p {
    text-align: left !important;
    color: #ccc;
    font-size: 17px;
    line-height: 1.75;
}

/* Avatar section */
.about-me-avatar img {
    width: 340px;
    height: auto;
    border-radius: 12px; /* Keep avatar smooth */
    background: transparent !important;
    box-shadow: none !important; /* Remove card shadow */
}

/* Mobile fix */
@media (max-width: 900px) {
    .about-me-wrapper {
        flex-direction: column-reverse;
        text-align: center;
    }

    .about-me-text h2,
    .about-me-text p {
        text-align: center !important;
    }

    .about-me-avatar img {
        width: 260px;
    }
}
.about-me-section h2 {
    color: #fd0000 !important;   /* thinkWHY red */
}
/* ABOUT ME red glow hover effect */
.about-me-text h2 {
    color: #ff2b2b !important;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.about-me-text h2::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(255,0,0,0.25), rgba(255,0,0,0));
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(25px);
    z-index: -1;
}

.about-me-text h2:hover::after {
    opacity: 1;
}
/* Avatar Glow Hover Effect */
.about-me-avatar img {
    transition: all 0.35s ease;
    position: relative;
    z-index: 2;
}

.about-me-avatar {
    position: relative;
    display: inline-block;
}

/* Glow element */
.about-me-avatar::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(255,0,0,0.35), rgba(255,0,0,0));
    transform: translate(-50%, -50%);
    opacity: 0;
    filter: blur(35px);
    transition: opacity 0.35s ease;
    z-index: 1;
}

.about-me-avatar:hover::after {
    opacity: 1;
}

.about-me-avatar:hover img {
    transform: scale(1.03); /* slight zoom for premium feel */
}
.dash-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.dash-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ================================
   VS CODE–STYLE MARKDOWN TYPOGRAPHY
   ================================ */

/* Wrapper – IMPORTANT */
.article-content,
.logic-body,
.blog-post-article {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #d1d5db;
}

/* Headings */
.article-content h1,
.logic-body h1,
.blog-post-article h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 3rem 0 1.5rem;
  color: #f9fafb;
}

.article-content h2,
.logic-body h2,
.blog-post-article h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 3rem 0 1rem;
  color: #e5e7eb;
}

.article-content h3,
.logic-body h3,
.blog-post-article h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 2.2rem 0 0.75rem;
  color: #e5e7eb;
}

/* Paragraphs */
.article-content p,
.logic-body p,
.blog-post-article p {
  margin: 0 0 1.25rem;
  line-height: 1.85;
  color: #d1d5db;
}

/* Lists (this fixes your issue) */
.article-content ul,
.logic-body ul,
.blog-post-article ul {
  margin: 0.75rem 0 1.75rem;
  padding-left: 1.6rem;
}

.article-content li,
.logic-body li,
.blog-post-article li {
  margin-bottom: 0.55rem;
  line-height: 1.75;
}

/* Add spacing when list follows heading */
.article-content h2 + ul,
.article-content h3 + ul,
.logic-body h2 + ul,
.logic-body h3 + ul,
.blog-post-article h2 + ul,
.blog-post-article h3 + ul {
  margin-top: 0.9rem;
}

/* Bullet styling (VS Code–like) */
.article-content li::marker,
.logic-body li::marker,
.blog-post-article li::marker {
  color: #9ca3af;
}

/* Strong & emphasis */
.article-content strong,
.logic-body strong,
.blog-post-article strong {
  color: #f9fafb;
  font-weight: 600;
}

.article-content em,
.logic-body em,
.blog-post-article em {
  color: #e5e7eb;
}

/* Blockquotes */
.article-content blockquote,
.logic-body blockquote,
.blog-post-article blockquote {
  border-left: 4px solid #3b82f6;
  padding-left: 1rem;
  margin: 2rem 0;
  color: #9ca3af;
}

/* Code blocks (VS Code feel) */
.article-content pre,
.logic-body pre,
.blog-post-article pre {
  background: #020617;
  border-radius: 8px;
  padding: 1.2rem;
  margin: 2rem 0;
  overflow-x: auto;
  font-size: 0.95rem;
}

.article-content code,
.logic-body code,
.blog-post-article code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* Inline code */
.article-content p code,
.logic-body p code,
.blog-post-article p code {
  background: rgba(255,255,255,0.06);
  padding: 0.15rem 0.35rem;
  border-radius: 4px;
}

/* Images */
.article-content img,
.logic-body img,
.blog-post-article img {
  max-width: 100%;
  border-radius: 10px;
  margin: 2rem 0;
}

/* Figures (your custom syntax) */
.md-figure {
  margin: 2.5rem 0;
  text-align: center;
}

.md-figure img {
  max-width: 100%;
  border-radius: 12px;
}

.md-figure figcaption {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: #9ca3af;
}

/* Horizontal rule */
.article-content hr,
.logic-body hr,
.blog-post-article hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 3rem 0;
}
/* ===============================
   BLOG SEARCH
   =============================== */

.blog-search {
  display: flex;
  justify-content: center;
  margin: 2rem 0 1.5rem;
}

.blog-search input {
  width: 100%;
  max-width: 420px;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: #ffffff;
  font-size: 0.95rem;
}

.blog-search input::placeholder {
  color: #9ca3af;
}

.blog-search input:focus {
  outline: none;
  border-color: #fd0000;
}

/* ===============================
   PAGINATION
   =============================== */

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin: 3rem 0 1rem;
}

.pagination button {
  background: rgba(255,255,255,0.05);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.45rem 0.9rem;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s ease;
}

.pagination button:hover {
  background: rgba(255,255,255,0.15);
}

.pagination button.active {
  background: #ff0000;
  border-color: #ff0000;
  color: #fff;
}

.pagination button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

