/* ============================================
   MOTO ON — Design System
   Premium Dark Theme with Red Accents
   ============================================ */

/* --- CSS Variables --- */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --bg-card-hover: #222222;
    --red-primary: #c41e2a;
    --red-glow: #ff2d3b;
    --red-dark: #8b1520;
    --red-border: rgba(196, 30, 42, 0.5);
    --red-bg: rgba(196, 30, 42, 0.08);
    --text-primary: #ffffff;
    --text-secondary: #aaaaaa;
    --text-muted: #666666;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.3s ease;
    --shadow-red: 0 0 20px rgba(196, 30, 42, 0.3);
    --shadow-red-hover: 0 0 30px rgba(196, 30, 42, 0.5);
    --nav-height: 70px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

::selection {
    background-color: var(--red-primary);
    color: var(--text-primary);
}

::-moz-selection {
    background-color: var(--red-primary);
    color: var(--text-primary);
}

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

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
}

/* --- Hexagonal Background Pattern --- */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66Z' fill='none' stroke='%23c41e2a' stroke-width='0.8'/%3E%3Cpath d='M28 100L0 84L0 50L28 34L56 50L56 84L28 100Z' fill='none' stroke='%23c41e2a' stroke-width='0.4'/%3E%3C/svg%3E");
    background-size: 56px 100px;
}

/* --- Utility --- */
.text-red {
    color: var(--red-primary);
}

.text-red-italic {
    color: var(--red-primary);
    font-style: italic;
}

.text-muted {
    color: var(--text-secondary);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--red-primary);
    margin: 16px auto 0;
    border-radius: 2px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(196, 30, 42, 0.1);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    border-bottom-color: rgba(196, 30, 42, 0.25);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.nav-logo:hover {
    text-shadow: 0 0 12px rgba(196, 30, 42, 0.5);
}

.nav-logo .text-red {
    color: var(--red-primary);
}

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

.nav-links li a {
    display: block;
    padding: 8px 16px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    transition: color 0.3s ease;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--red-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--text-primary);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    transform: scaleX(1);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.35s ease;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
    background: var(--red-primary);
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
    background: var(--red-primary);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-hex {
    position: absolute;
    opacity: 0.06;
    pointer-events: none;
}

.hero-hex-1 {
    top: 10%;
    left: 8%;
    width: 120px;
    height: 120px;
}

.hero-hex-2 {
    top: 25%;
    right: 12%;
    width: 80px;
    height: 80px;
}

.hero-hex-3 {
    bottom: 20%;
    left: 15%;
    width: 100px;
    height: 100px;
}

.hero-hex-4 {
    bottom: 30%;
    right: 8%;
    width: 60px;
    height: 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 24px;
}

.hero-welcome {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-title .text-red {
    color: var(--red-primary);
    text-shadow: 0 0 40px rgba(196, 30, 42, 0.4);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: var(--red-primary);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.35s ease;
    box-shadow: 0 0 20px rgba(196, 30, 42, 0.3);
}

.hero-cta:hover {
    background: var(--red-glow);
    box-shadow: 0 0 35px rgba(255, 45, 59, 0.5);
    transform: translateY(-2px);
}

.hero-cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.hero-cta:hover svg {
    transform: translateX(4px);
}

/* Scroll Arrow */
.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.3s ease;
}

.scroll-indicator:hover {
    color: var(--red-primary);
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--bg-card);
    border: 1px solid var(--red-border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.35s ease;
}

.card:hover {
    background: var(--bg-card-hover);
    border-color: var(--red-primary);
    box-shadow: var(--shadow-red);
    transform: translateY(-4px) scale(1.02);
}

.card-body {
    padding: 24px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.card-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.card-accent {
    height: 3px;
    background: linear-gradient(90deg, var(--red-primary), transparent);
}

/* ============================================
   BLOG POST CARDS
   ============================================ */
.post-card {
    background: var(--bg-card);
    border: 1px solid var(--red-border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    border-color: var(--red-primary);
    box-shadow: var(--shadow-red);
    transform: translateY(-6px);
}

.post-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.post-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-card-date {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.post-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.post-card-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    flex: 1;
}

.post-card-footer {
    height: 3px;
    background: linear-gradient(90deg, var(--red-primary), transparent);
    margin-top: auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

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

.about-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--red-border);
    transition: var(--transition-smooth);
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(196, 30, 42, 0.15);
    border-radius: 12px;
    pointer-events: none;
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--red-bg);
    border: 1px solid var(--red-border);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--red-primary);
    border-color: var(--red-primary);
    box-shadow: 0 0 20px rgba(196, 30, 42, 0.4);
    transform: translateY(-2px);
}

.social-btn svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   POSTS GRID
   ============================================ */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red-primary);
    border: 1px solid var(--red-border);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    background: var(--red-primary);
    color: var(--text-primary);
    border-color: var(--red-primary);
    box-shadow: var(--shadow-red);
}

.view-all-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.view-all-link:hover svg {
    transform: translateX(4px);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(196, 30, 42, 0.2);
    cursor: pointer;
    aspect-ratio: 4 / 3;
    transition: all 0.35s ease;
}

.gallery-item:hover {
    border-color: var(--red-primary);
    box-shadow: var(--shadow-red);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-caption {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Gallery Filter */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 20px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
    border: 1px solid rgba(196, 30, 42, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--text-primary);
    background: var(--red-primary);
    border-color: var(--red-primary);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--red-primary);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.5rem;
    background: rgba(196, 30, 42, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 2010;
}

.lightbox-nav:hover {
    background: var(--red-primary);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ============================================
   SUPPORT SECTION
   ============================================ */
.support-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.support-card {
    flex: 0 1 320px;
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--red-border);
    border-radius: 8px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.35s ease;
}

.support-card:hover {
    border-color: var(--red-primary);
    box-shadow: var(--shadow-red);
    transform: translateY(-4px);
}

.support-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red-bg);
    border: 1px solid var(--red-border);
    border-radius: 12px;
    color: var(--red-primary);
}

.support-card-icon svg {
    width: 28px;
    height: 28px;
}

.support-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.support-card-text {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.support-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    background: var(--red-primary);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.support-card-btn:hover {
    background: var(--red-glow);
    box-shadow: 0 0 25px rgba(255, 45, 59, 0.4);
    transform: translateY(-2px);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background: var(--red-primary);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.35s ease;
    border: none;
}

.btn-primary:hover {
    background: var(--red-glow);
    box-shadow: var(--shadow-red-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background: transparent;
    color: var(--red-primary);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid var(--red-border);
    border-radius: 50px;
    transition: all 0.35s ease;
}

.btn-secondary:hover {
    background: var(--red-primary);
    color: var(--text-primary);
    border-color: var(--red-primary);
    box-shadow: var(--shadow-red);
}

/* ============================================
   SINGLE POST PAGE
   ============================================ */
.post-page {
    padding-top: calc(var(--nav-height) + 60px);
    padding-bottom: 80px;
}

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

.post-header-date {
    font-size: 0.82rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.post-header-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.post-header-author {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.post-header-author span {
    color: var(--red-primary);
}

/* --- Post Cover Slider --- */
.post-cover-slider {
    position: relative;
    width: 100%;
    max-width: 760px;
    margin: 0 auto 48px auto;
    display: flex;
    align-items: center;
}

.slider-track-container {
    overflow: hidden;
    width: 100%;
    border-radius: 8px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-item {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.polaroid-style {
    background: #fff;
    padding: 12px 12px 0 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    display: inline-block;
    max-width: 100vw;
}

.polaroid-style img {
    height: 60vh;
    width: auto;
    max-width: 80vw;
    object-fit: contain;
    cursor: zoom-in;
    display: block;
    margin: 0 auto;
}

.polaroid-date {
    text-align: center;
    color: #333;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 15px 0;
    font-family: monospace;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
}

.slider-nav:hover {
    background: var(--red-primary);
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}


.post-content {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-secondary);
}

.post-content h2 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-size: 1.6rem;
    margin: 40px 0 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-content h3 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-size: 1.3rem;
    margin: 32px 0 12px;
    text-transform: uppercase;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 24px auto;
    border: 1px solid rgba(196, 30, 42, 0.15);
}

.post-content blockquote {
    border-left: 3px solid var(--red-primary);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--red-bg);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--text-primary);
}

.post-content a {
    color: var(--red-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.post-content a:hover {
    color: var(--red-glow);
}

.post-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(196, 30, 42, 0.15);
}

.post-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.post-nav a:hover {
    color: var(--red-primary);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 32px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--red-primary);
}

/* ============================================
   PAGE HEADER (Blog, Gallery, Support pages)
   ============================================ */
.page-header {
    padding-top: calc(var(--nav-height) + 60px);
    padding-bottom: 40px;
    text-align: center;
    position: relative;
}

.page-header-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.page-header-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Hex decorations for page headers */
.page-header-hex {
    position: absolute;
    opacity: 0.06;
    pointer-events: none;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 60px;
}

.pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 8px 14px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--text-secondary);
    border: 1px solid rgba(196, 30, 42, 0.2);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.pagination-btn:hover,
.pagination-btn.active {
    color: var(--text-primary);
    background: var(--red-primary);
    border-color: var(--red-primary);
}

.pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* ============================================
   SPONSORS SECTION
   ============================================ */
.sponsors-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.sponsor-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    width: 200px;
    height: 100px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.sponsor-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--red-border);
    transform: translateY(-3px);
}
.sponsor-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.8);
    transition: filter 0.3s ease;
}
.sponsor-card:hover .sponsor-logo {
    filter: grayscale(0%) opacity(1);
}
.sponsor-name-only {
    color: #fff;
    font-weight: 600;
    font-size: 1.2rem;
    text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(196, 30, 42, 0.15);
    padding: 48px 0 32px;
    background: var(--bg-secondary);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

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

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--red-border);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--text-primary);
    background: var(--red-primary);
    border-color: var(--red-primary);
    box-shadow: 0 0 15px rgba(196, 30, 42, 0.3);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.82rem;
    letter-spacing: 0.5px;
}

.admin-login-link {
    display: inline-block;
    margin-top: 5px;
    font-size: 0.75rem;
    color: #151515;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: default;
}

.admin-login-link:hover {
    color: var(--text-muted);
    cursor: pointer;
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red-primary);
    color: var(--text-primary);
    border-radius: 50%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    box-shadow: var(--shadow-red);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--red-glow);
    transform: translateY(-3px);
    box-shadow: var(--shadow-red-hover);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   LOADING & EMPTY STATES
   ============================================ */
.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(196, 30, 42, 0.15);
    border-top-color: var(--red-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.empty-state {
    text-align: center;
    padding: 60px 24px;
    color: var(--text-muted);
}

.empty-state p {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

/* ============================================
   RESPONSIVE — Tablet (768px)
   ============================================ */
@media (max-width: 768px) {
    :root {
        --nav-height: 60px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 80px 24px 24px;
        background: rgba(10, 10, 10, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid rgba(196, 30, 42, 0.15);
        transform: translateX(100%);
        transition: transform 0.35s ease;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        padding: 14px 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .nav-links li a::after {
        bottom: 12px;
        left: 0;
        right: auto;
        width: 24px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrapper {
        max-width: 320px;
        margin: 0 auto;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 12px;
    }

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

    .section {
        padding: 70px 0;
    }

    .hero-title {
        letter-spacing: 3px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .post-nav {
        flex-direction: column;
        gap: 16px;
    }
}

/* ============================================
   RESPONSIVE — Mobile (480px)
   ============================================ */
@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    .container {
        padding: 0 16px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .hero-welcome {
        font-size: 0.75rem;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        letter-spacing: 2px;
        font-size: 0.85rem;
    }

    .hero-cta {
        padding: 12px 28px;
        font-size: 0.85rem;
    }

    .social-buttons {
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

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

    .page-header-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .lightbox-content img {
        max-width: 95vw;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 38px;
        height: 38px;
    }
}
