/* ============================================
   Menteviva — Global Styles
   ============================================ */

:root {
    --bg: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a25;
    --border: rgba(255, 255, 255, 0.06);
    --text: #e0e0e8;
    --text-muted: #7a7a8c;
    --text-dim: #4a4a5c;
    --accent: #6ee7b7;
    --accent-dark: #34d399;
    --accent-glow: rgba(110, 231, 183, 0.15);
    --accent-2: #a78bfa;
    --accent-2-dark: #8b5cf6;
    --cat-crypto: #f59e0b;
    --cat-tech: #3b82f6;
    --cat-dev: #10b981;
    --cat-games: #ec4899;
    --cat-personal: #f472b6;
    --radius: 14px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-accent: 0 0 40px rgba(110, 231, 183, 0.1);
    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul {
    list-style: none;
}

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

/* ============================================
   SCROLLING PRICE TICKER
   ============================================ */

.price-ticker {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    position: sticky;
    top: 68px;
    z-index: 99;
    overflow: hidden;
}

.ticker-viewport {
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: flex;
    gap: 0;
    width: max-content;
    animation: ticker-scroll 20s linear infinite;
    will-change: transform;
}

.ticker-content.paused {
    animation-play-state: paused;
}

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

.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 28px 6px 0;
    cursor: pointer;
    white-space: nowrap;
    border-right: 1px solid var(--border);
    margin-right: 28px;
}

.ticker-item:hover {
    opacity: 0.8;
}

.ticker-symbol {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    min-width: 50px;
}

.ticker-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    font-family: 'Inter', monospace;
}

.ticker-change {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 100px;
    font-family: 'Inter', monospace;
    min-width: 60px;
    text-align: center;
}

.ticker-change.positive {
    color: #34d399;
    background: rgba(52, 211, 153, 0.12);
}

.ticker-change.negative {
    color: #f87171;
    background: rgba(248, 113, 113, 0.12);
}

.ticker-hint {
    text-align: center;
    font-size: 0.65rem;
    color: var(--text-dim);
    padding-top: 2px;
    display: none;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    height: 68px;
    display: flex;
    align-items: center;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.logo:hover {
    color: var(--accent);
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transform: scaleX(0);
    transition: var(--transition);
}

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

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

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

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: #0a0a0f;
}

.btn-primary:hover {
    background: var(--accent-dark);
    box-shadow: 0 0 24px var(--accent-glow);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.12);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.2);
    color: #fff;
}

/* ============================================
   HERO
   ============================================ */

.hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-bg-shape {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(110, 231, 183, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: center;
}

.hero-image {
    opacity: 0.9;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(110, 231, 183, 0.08);
    border: 1px solid rgba(110, 231, 183, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 24px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.text-accent {
    color: var(--accent);
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.7;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-num {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.stat-div {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* Hero Visual */

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-img-wrap {
    position: relative;
    width: 280px;
}

.hero-img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(110, 231, 183, 0.3);
    box-shadow: var(--shadow-accent);
}

.hero-img-badge {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 8px 14px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-cards {
    position: absolute;
    top: 10px;
    right: -10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-size: 0.82rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow);
    white-space: nowrap;
}

.card-icon {
    font-size: 1rem;
}

/* ============================================
   CATEGORIES
   ============================================ */

.section-categories {
    padding: 0 0 40px;
}

.category-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pill {
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: var(--transition);
}

.pill:hover,
.pill.active {
    background: var(--accent);
    color: #0a0a0f;
    border-color: var(--accent);
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 32px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}

.see-all {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
    transition: var(--transition);
}

.see-all:hover {
    color: var(--accent-dark);
}

/* ============================================
   FEATURED SECTION
   ============================================ */

.section-featured {
    padding: 40px 0;
}

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

/* ============================================
   POST CARDS
   ============================================ */

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

.post-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.post-featured .post-img {
    height: 240px;
}

.post-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.post-video-container {
    background: #000;
}

.post-video-container video {
    max-height: 450px;
    object-fit: cover;
}

.post-img-icon {
    font-size: 3rem;
    opacity: 0.9;
}

.post-body {
    padding: 24px;
}

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

.post-cat {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: 100px;
}

.cat-crypto { background: rgba(245, 158, 11, 0.12); color: var(--cat-crypto); }
.cat-tech   { background: rgba(59, 130, 246, 0.12); color: var(--cat-tech); }
.cat-dev    { background: rgba(16, 185, 129, 0.12); color: var(--cat-dev); }
.cat-games  { background: rgba(236, 72, 153, 0.12); color: var(--cat-games); }
.cat-personal { background: rgba(244, 114, 182, 0.12); color: var(--cat-personal); }

.post-date {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.post-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.4;
}

.post-title a:hover {
    color: var(--accent);
}

.post-excerpt {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.read-more {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
    transition: var(--transition);
}

.read-more:hover {
    color: var(--accent-dark);
}

/* ============================================
   LATEST POSTS GRID
   ============================================ */

.section-latest {
    padding: 40px 0 60px;
}

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

/* ============================================
   NEWSLETTER
   ============================================ */

.section-newsletter {
    padding: 60px 0;
}

.newsletter-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 56px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.newsletter-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.newsletter-text p {
    color: var(--text-muted);
    max-width: 460px;
    margin: 0 auto 32px;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 460px;
    margin: 0 auto 16px;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    padding: 12px 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: #fff;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.newsletter-input:focus {
    border-color: var(--accent);
    background: rgba(110, 231, 183, 0.04);
}

.newsletter-input::placeholder {
    color: var(--text-dim);
}

.newsletter-note {
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    border-top: 1px solid var(--border);
    padding-top: 60px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 300px;
}

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

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent);
    color: #0a0a0f;
    border-color: var(--accent);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-col h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* ============================================
   BLOG PAGE
   ============================================ */

.page-hero {
    padding: 130px 0 48px;
    text-align: center;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.page-hero p {
    color: var(--text-muted);
    font-size: 1rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 40px 0 80px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-section {
    padding: 130px 0 80px;
}

.about-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: start;
}

.about-img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius);
    object-fit: cover;
    border: 2px solid var(--border);
}

.about-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.about-role {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 28px;
}

.about-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-skills {
    margin-top: 32px;
}

.about-skills h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dim);
    margin-bottom: 14px;
}

.skill-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.skill-tag {
    padding: 6px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.82rem;
    color: var(--text);
    font-weight: 500;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-section {
    padding: 130px 0 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.contact-info > p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.contact-method-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(110, 231, 183, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-method-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-method-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-dim);
}

.contact-method-value {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    color: #fff;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: rgba(110, 231, 183, 0.04);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

.form-group textarea {
    min-height: 130px;
}

/* ============================================
   POST / ARTICLE PAGE
   ============================================ */

.post-page {
    padding: 120px 0 80px;
    max-width: 720px;
    margin: 0 auto;
}

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

.post-page-header .post-cat {
    margin-bottom: 16px;
    display: inline-block;
}

.post-page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.025em;
}

.post-page-header .post-meta {
    justify-content: center;
}

.post-cover {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    font-size: 5rem;
}

.post-content {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.85;
}

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

.post-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 40px 0 16px;
}

.post-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.post-content li {
    color: var(--text-muted);
}

.post-content strong {
    color: var(--text);
}

.post-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-top: 40px;
    transition: var(--transition);
}

.post-back:hover {
    color: var(--accent);
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        padding: 24px;
        gap: 20px;
    }
    .nav-links.open {
        display: flex;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-title {
        font-size: 2.4rem;
    }
    .hero-desc {
        margin: 0 auto 32px;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-image {
        max-width: 300px;
        margin: 0 auto;
        order: -1;
    }
    .hero-image svg {
        width: 100%;
        max-width: 300px;
    }
    .hero-cards {
        display: none;
    }
    .hero-img-badge {
        left: 50%;
        transform: translateX(-50%);
    }
    .featured-grid {
        grid-template-columns: 1fr;
    }
    .posts-grid {
        grid-template-columns: 1fr;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .newsletter-box {
        padding: 36px 24px;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
    .about-content {
        grid-template-columns: 1fr !important;
        gap: 40px;
        text-align: center;
    }
    .about-image {
        max-width: 280px;
        margin: 0 auto;
        order: -1;
    }
    .skill-tags {
        justify-content: center;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-info {
        text-align: center;
    }
    .contact-methods {
        align-items: center;
    }
    .post-page {
        padding: 110px 24px 60px;
    }
    .post-page-header h1 {
        font-size: 1.8rem;
    }
    .post-cover {
        font-size: 3.5rem;
    }
    .category-pills {
        flex-wrap: wrap;
        gap: 8px;
    }
    .category-pills .pill {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.4rem;
    }
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .hero-image {
        max-width: 260px;
    }
    .hero-image svg {
        max-width: 260px;
    }
    .about-image svg {
        max-width: 220px;
    }
    .post-card .post-video-container video {
        max-height: 200px;
    }
    .post-video-container {
        border-radius: var(--radius);
    }
    .contact-form .btn {
        width: 100%;
    }
}
