/* style.css */

/* Orbitron — fallback display font while Horizon font file is not yet installed */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Raleway:wght@400;600&display=swap');

body {
    background-color: #000;
    color: #fff;
    margin: 0;
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Shared page container for consistent horizontal alignment */
.content-shell {
    width: 100%;
    max-width: 88rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
}



/* ─── Logos ───────────────────────────────────────────────────────────────── */

/* Header logo hover swap via CSS */
.site-logo {
    height: 3.2rem !important;
    width: auto !important;
    max-width: 256px !important;
    object-fit: contain !important;
    display: inline-block !important;
    transition: filter 0.3s ease;
    filter: none;
}
.site-logo:hover {
    filter: drop-shadow(0 0 14px rgba(16, 185, 129, 0.9));
}
.footer-logo {
    height: 3.2rem !important;
    width: auto !important;
    max-width: 251px !important;
    object-fit: contain !important;
    display: block !important;
    margin-top: -9px !important;
    transition: filter 0.3s ease;
    filter: none;
}
.footer-logo:hover {
    filter: drop-shadow(0 0 14px rgba(16, 185, 129, 0.9));
}

/* ===== FONT-BASED TEXT LOGO =====
   Self-host Horizon: place Horizon.woff2 + Horizon.ttf in media/fonts/
   Until then, Orbitron (Google Fonts) is used as a near-match fallback.
   The hollow/bordered look comes from CSS -webkit-text-stroke.
   ===================================== */
@font-face {
    font-family: 'Horizon';
    src: url('media/fonts/Horizon.woff2') format('woff2'),
         url('media/fonts/Horizon.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.logo-text {
    font-family: 'Horizon', 'Orbitron', sans-serif;
    font-size: 1.45rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 0.5px #7c6ff5;
    text-decoration: none !important;
    display: inline-block;
    line-height: 1.1;
    transition: -webkit-text-stroke-color 0.3s ease, text-shadow 0.3s ease;
    white-space: nowrap;
}
a:hover .logo-text,
.logo-text:hover {
    -webkit-text-stroke-color: #10b981;
    text-shadow: 0 0 14px rgba(16, 185, 129, 0.45);
}
.footer-logo-text {
    font-size: 1.25rem;
    letter-spacing: 0.1em;
}
footer h3,
footer h4 {
    font-family: 'Horizon', 'Orbitron', sans-serif;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}



/* Keep hamburger pinned — logo clips, never pushes button off-screen */
header nav {
    overflow: hidden;
}
header nav > a {
    min-width: 0;
    flex: 0 1 auto;
    overflow: hidden;
}
header nav > div {
    flex: 0 0 auto;
    margin-left: 1rem;
}

/* Scale logo down on narrow screens so hamburger is never pushed off-screen */
@media (max-width: 1100px) {
    .logo-text {
        font-size: 1.1rem !important;
        letter-spacing: 0.08em;
    }
}
@media (max-width: 860px) {
    .logo-text {
        font-size: 0.85rem !important;
        letter-spacing: 0.05em;
    }
}

/* ─── Hamburger ───────────────────────────────────────────────────────────── */
.nav-hamburger {
    color: #4632da !important;
    filter: drop-shadow(0 0 8px rgba(70, 50, 218, 0.7));
    transition: color 0.3s ease, filter 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-hamburger svg {
    overflow: visible;
}
.nav-hamburger:hover {
    color: #10b981 !important;
    filter: drop-shadow(0 0 14px rgba(16, 185, 129, 0.9));
}

/* ─── Social icons ────────────────────────────────────────────────────────── */
.social-icon {
    color: #4632da !important;
    filter: drop-shadow(0 0 5px rgba(70, 50, 218, 0.7));
    transition: color 0.3s ease, filter 0.3s ease;
}
.social-icon:hover {
    color: #10b981 !important;
    filter: drop-shadow(0 0 14px rgba(16, 185, 129, 0.9));
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease, filter 0.3s ease;
}

footer a:hover {
    text-decoration: none;
    color: #10b981 !important;
    text-shadow: 0 0 14px rgba(16, 185, 129, 0.9);
    filter: drop-shadow(0 0 14px rgba(16, 185, 129, 0.9));
}

/* ─── Buttons ─────────────────────────────────────────────────────────────── */
.btn-form {
    display: inline-block !important;
    background-color: #4632da !important;
    color: white !important;
    font-weight: bold !important;
    padding: 12px 32px !important;
    border-radius: 12px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 0 15px rgba(70, 50, 218, 0.6) !important;
}
.btn-form:hover {
    background-color: #10b981 !important;
    box-shadow: 0 0 14px rgba(16, 185, 129, 0.9) !important;
    transform: scale(1.05) !important;
}
.btn-primary {
    display: inline-block;
    background-color: #4632da;
    color: white;
    font-weight: bold;
    padding: 12px 32px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(70, 50, 218, 0.6);
    text-decoration: none;
    outline: none;
}
.btn-primary:hover {
    background-color: #10b981;
    box-shadow: 0 0 14px rgba(16, 185, 129, 0.9);
    transform: scale(1.05);
}
.btn-primary:active {
    transform: scale(0.98);
}

/* ─── Glass card ──────────────────────────────────────────────────────────── */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    transition: border-color 0.3s ease;
}
.glass-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
}

/* ─── Mugshot windows ─────────────────────────────────────────────────────── */
.mugshot-container {
    display: flex;
    height: 160px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mugshot {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: monospace;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.mugshot:last-child { border-right: none; }

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-ticker {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.animate-ticker-fluid {
    display: flex;
    width: max-content;
    animation: scroll 65s linear infinite;
}

.animate-ticker-fluid > div {
    color: rgba(70, 50, 218, 0.75);
    transition: color 0.3s ease, filter 0.3s ease;
}

.animate-ticker-fluid > div svg,
.animate-ticker-fluid > div span {
    color: inherit;
    fill: currentColor;
}

.animate-ticker-fluid > div img {
    height: 2.5rem;
    width: auto;
    opacity: 0.75;
    transition: opacity 0.3s ease;
}

.animate-ticker-fluid > div:hover {
    color: #10b981;
    filter: drop-shadow(0 0 14px rgba(16, 185, 129, 0.9));
}

.animate-ticker-fluid > div:hover img {
    opacity: 1;
    filter: none;
}

.hero-slider-frame {
    aspect-ratio: 16/7;
    border-radius: 1rem;
    border: 1px solid #4632da;
    box-shadow: 0 0 14px rgba(70,50,218,0.28), inset 0 0 14px rgba(70,50,218,0.05);
}

.slide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s ease;
}

.slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-content-wrap {
    width: 100%;
}

.hero-content-wrap-sm {
    max-width: min(460px, 44%);
}

.hero-content-wrap-lg {
    max-width: min(580px, 58%);
}

.hero-eyebrow {
    font-size: clamp(0.62rem, 0.55rem + 0.25vw, 0.8rem);
    line-height: 1.2;
}

.hero-title {
    font-size: clamp(1rem, 0.72rem + 1.05vw, 1.9rem);
    line-height: 1.2;
}

.hero-body {
    font-size: clamp(0.7rem, 0.62rem + 0.35vw, 0.95rem);
    line-height: 1.45;
}

.hero-arrow {
    border: 1px solid #4632da;
    box-shadow: 0 0 10px rgba(70,50,218,0.5);
}

.hero-arrow:hover {
    color: #10b981;
    border-color: #10b981;
    box-shadow: 0 0 14px rgba(16, 185, 129, 0.9);
}

.hero-dot {
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: #4632da;
    border: none;
    cursor: pointer;
    padding: 0;
    opacity: 0.4;
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 6px rgba(70,50,218,0.7);
}
.hero-dot.is-active {
    opacity: 1;
    transform: scale(1.4);
    box-shadow: 0 0 10px rgba(70,50,218,1);
}

#contactModal > div {
    background: linear-gradient(135deg, rgba(70, 50, 218, 0.2), #000) !important;
    border: 1px solid rgba(70, 50, 218, 0.4) !important;
}

#contactModal input,
#contactModal select,
#contactModal textarea,
footer form input,
footer form select,
footer form textarea {
    background-color: #000 !important;
    border: 1px solid rgba(70, 50, 218, 0.4) !important;
}

details summary .relative.w-6.h-6.flex.items-center.justify-center > span {
    background-color: #4632da !important;
    box-shadow: 0 0 10px rgba(70, 50, 218, 0.9) !important;
}

details summary .relative.w-6.h-6.flex.items-center.justify-center > span:last-child {
    opacity: 1 !important;
    transform: rotate(0deg) !important;
}

details summary:hover .relative.w-6.h-6.flex.items-center.justify-center > span:first-child,
details[open] summary .relative.w-6.h-6.flex.items-center.justify-center > span:first-child {
    background-color: #10b981 !important;
    box-shadow: 0 0 14px rgba(16, 185, 129, 0.9) !important;
}

details summary:hover .relative.w-6.h-6.flex.items-center.justify-center > span:last-child,
details[open] summary .relative.w-6.h-6.flex.items-center.justify-center > span:last-child {
    opacity: 0 !important;
    transform: rotate(90deg) !important;
}
/* --- Social Bulletin Card (Modern + Retro Board) -------------------------- */
.social-bulletin-card {
    display: flex;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(70, 50, 218, 0.3);
    border-radius: 4px; /* Slightly squarer for 'board' feel */
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    height: 80px; /* Fixed height for consistency */
}

.social-bulletin-card:hover {
    background: rgba(70, 50, 218, 0.1);
    border-color: #10b981;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
    transform: translateY(-2px);
}

.social-icon-box {
    width: 80px; /* Matches height for square aspect */
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(70, 50, 218, 0.3);
    background: rgba(0, 0, 0, 0.3);
    color: #4632da;
    transition: all 0.3s ease;
}

.social-bulletin-card:hover .social-icon-box {
    color: #10b981;
    text-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
    border-right-color: #10b981;
}

.social-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 1.5rem;
}

.social-network-name {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
    font-family: monospace; /* Retro feel */
}

.social-handle {
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    transition: color 0.3s ease;
}

.social-bulletin-card:hover .social-handle {
    color: #10b981;
}

:root {
    --ed-indigo: #4632da;
    --ed-emerald: #10b981;
    --ed-cyan: #22d3ee;
    --ed-blue: #3b82f6;
}

body {
    background:
        radial-gradient(1200px 600px at 15% -10%, rgba(70, 50, 218, 0.28), transparent 60%),
        radial-gradient(900px 500px at 85% 0%, rgba(16, 185, 129, 0.14), transparent 56%),
        #050509;
}










details[open] .group-open\:opacity-0 { opacity: 0; }
details[open] .group-open\:opacity-100 { opacity: 1; }
details[open] .group-open\:rotate-90 { transform: rotate(90deg); }
details[open] .group-open\:bg-\[\#10b981\] { background-color: #10b981; }
details[open] .group-open\:shadow-\[0_0_14px_\#10b981\] { box-shadow: 0 0 14px #10b981; }

.animate-in { animation-fill-mode: both; }
.fade-in { animation: ed-fade-in 0.3s ease; }
.slide-in-from-bottom-10 { animation: ed-slide-up 0.3s ease; }

@keyframes ed-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes ed-slide-up {
    from { opacity: 0; transform: translateY(2.5rem); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-ripple {
    animation: ed-ripple 2.4s ease-out infinite;
}


@keyframes ed-ripple {
    0% { transform: scale(1); opacity: 0.45; }
    70% { transform: scale(1.45); opacity: 0; }
    100% { transform: scale(1.45); opacity: 0; }
}

@keyframes ed-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.55; }
}

@keyframes ed-ping {
    75%, 100% { transform: scale(1.7); opacity: 0; }
}


.ticker-mask {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.win-red { background: linear-gradient(135deg, rgba(127, 29, 29, 0.3), rgba(0, 0, 0, 0.2)); }
.win-green { background: linear-gradient(135deg, rgba(20, 83, 45, 0.3), rgba(0, 0, 0, 0.2)); }
.win-blue { background: linear-gradient(135deg, rgba(30, 58, 138, 0.3), rgba(0, 0, 0, 0.2)); }
.win-violet { background: linear-gradient(135deg, rgba(76, 29, 149, 0.3), rgba(0, 0, 0, 0.2)); }

/* ─── Feed component system ──────────────────────────────────────────────── */

/* Two-column layout: column on mobile, side-by-side at lg */
.feed-layout { display: flex; flex-direction: column; gap: 2.5rem; align-items: flex-start; }
.feed-main   { width: 100%; min-width: 0; }
.feed-aside  { width: 100%; }
@media (min-width: 1024px) {
    .feed-layout { flex-direction: row; }
    .feed-main   { flex: 1 1 0%; }
    .feed-aside  { flex: none; width: 18rem; position: sticky; top: 6rem; }
}

/* Inner body of a horizontal feed card */
.feed-card-body { flex: 1 1 0%; min-width: 0; }

/* glass-card as <a> — strip link decoration */
a.glass-card { text-decoration: none; color: inherit; }

/* Type / category badge — base */
.type-badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 2px 6px;
    border-radius: 4px;
}
/* Blog categories */
.badge-blue,
.badge-blog     { color: #60a5fa; background: rgba(96,  165, 250, 0.12); }
.badge-purple   { color: #c084fc; background: rgba(192, 132, 252, 0.12); }
.badge-green    { color: #4ade80; background: rgba(74,  222, 128, 0.12); }
/* Social platforms */
.badge-x        { color: #fff;    background: rgba(255, 255, 255, 0.12); }
.badge-youtube  { color: #f87171; background: rgba(248, 113, 113, 0.12); }
.badge-discord  { color: #818cf8; background: rgba(129, 140, 248, 0.12); }
.badge-bluesky  { color: #38bdf8; background: rgba(56,  189, 248, 0.12); }
.badge-telegram { color: #22d3ee; background: rgba(34,  211, 238, 0.12); }

/* Type icon circle — pair with badge-* for background */
.type-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    flex: none;
}
.type-icon.badge-blog,
.type-icon.badge-blue     { background: rgba(96,  165, 250, 0.12); }
.type-icon.badge-purple   { background: rgba(192, 132, 252, 0.12); }
.type-icon.badge-green    { background: rgba(74,  222, 128, 0.12); }
.type-icon.badge-x        { background: rgba(255, 255, 255, 0.12); }
.type-icon.badge-youtube  { background: rgba(248, 113, 113, 0.12); }
.type-icon.badge-discord  { background: rgba(129, 140, 248, 0.12); }
.type-icon.badge-bluesky  { background: rgba(56,  189, 248, 0.12); }
.type-icon.badge-telegram { background: rgba(34,  211, 238, 0.12); }

/* Feed card link arrow */
.feed-arrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 0.75rem;
    color: #fff;
    transition: transform 0.25s ease;
}
.group:hover .feed-arrow { transform: translateX(4px); }

/* Top-rated rank number */
.rank-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    margin-top: 2px;
    width: 1.5rem;
    flex: none;
}

/* Feed sidebar heading + footer link */
.feed-aside-header {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #4632da;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.feed-aside-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}
.feed-aside-footer a {
    font-size: 0.75rem;
    font-weight: 700;
    color: #4632da;
    transition: color 0.25s ease;
}
.feed-aside-footer a:hover { color: #60a5fa; }

/* Excerpt truncation */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


@media (max-width: 1024px) {
    .w-\[85\%\] { width: 92%; }
    .w-\[60\%\] { width: 86%; }
    .px-\[68px\] { padding-left: 1.25rem; padding-right: 1.25rem; }
}

@media (max-width: 820px) {
    .hero-slider-frame {
        aspect-ratio: 4 / 5;
        max-width: 34rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-slider-frame .hero-content-wrap,
    .hero-slider-frame .hero-content-wrap-sm,
    .hero-slider-frame .hero-content-wrap-lg {
        top: auto !important;
        right: 1rem !important;
        bottom: 1rem !important;
        left: 1rem !important;
        width: auto;
        max-width: none;
    }

    .hero-slider-frame .hero-content-wrap > div {
        padding: 1rem 1rem 1.1rem;
        text-align: left !important;
        background: linear-gradient(180deg, rgba(5, 5, 5, 0.5), rgba(5, 5, 5, 0.9));
        border: 1px solid rgba(70, 50, 218, 0.35);
        border-radius: 1rem;
        backdrop-filter: blur(12px);
        box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
    }

    .hero-slider-frame .hero-content-wrap > div .flex {
        justify-content: flex-start !important;
    }

    .hero-slider-frame .hero-title {
        font-size: clamp(1.35rem, 4.8vw, 2rem);
    }

    .hero-slider-frame .hero-body {
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .hero-slider-frame .hero-arrow {
        width: 2.5rem;
        height: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content-wrap-sm,
    .hero-content-wrap-lg { max-width: min(500px, 84%); }
    .w-64 { width: 12rem; }
}

/* ─── Service page components ─────────────────────────────────────────────── */

.service-hero {
    position: relative;
    padding: 9rem 1rem 5rem;
    overflow: hidden;
    border-bottom: 1px solid rgba(70, 50, 218, 0.2);
}
.service-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(900px 500px at 50% -10%, rgba(70, 50, 218, 0.3), transparent 60%);
    pointer-events: none;
}

.service-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #4632da;
    border: 1px solid rgba(70, 50, 218, 0.4);
    padding: 0.3rem 0.9rem;
    border-radius: 9999px;
}

.capability-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.75rem;
    transition: border-color 0.3s ease, background 0.3s ease;
    height: 100%;
}
.capability-card:hover {
    border-color: rgba(70, 50, 218, 0.5);
    background: rgba(70, 50, 218, 0.05);
}
.capability-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: rgba(70, 50, 218, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.3s ease;
}
.process-step:hover { border-color: rgba(70, 50, 218, 0.4); }

.process-num {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(70, 50, 218, 0.3);
    flex: none;
    width: 2.5rem;
    font-family: 'Orbitron', 'Horizon', sans-serif;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(7rem, 1fr));
    gap: 0.75rem;
}
.tech-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.5rem;
    padding: 0.6rem 0.75rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
    cursor: default;
}
.tech-badge:hover {
    border-color: rgba(70, 50, 218, 0.5);
    color: #fff;
    background: rgba(70, 50, 218, 0.08);
}

.cta-banner {
    background: linear-gradient(135deg, rgba(70, 50, 218, 0.15), rgba(0, 0, 0, 0.5));
    border: 1px solid rgba(70, 50, 218, 0.35);
    border-radius: 1.5rem;
    padding: 4rem 2rem;
    text-align: center;
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: #4632da;
    font-weight: 700;
    padding: 11px 28px;
    border-radius: 10px;
    border: 2px solid #4632da;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    outline: none;
    font-size: 0.875rem;
}
.btn-outline:hover {
    background: rgba(70, 50, 218, 0.15);
    color: #fff;
    border-color: #7c6ff5;
    box-shadow: 0 0 15px rgba(70, 50, 218, 0.4);
}

/* Template card preview area */
.template-preview {
    position: relative;
    height: 16rem;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.template-preview-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0.6);
}
.glass-card:hover .template-preview-overlay { opacity: 1; }

/* ═══════════════════════════════════════════════════════════════
   POST / ARTICLE BODY
   ═══════════════════════════════════════════════════════════════ */
.post-lead {
    font-size: 1.125rem;
    line-height: 1.85;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.post-body p {
    font-size: 1rem;
    line-height: 1.8;
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.post-body h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #f1f5f9;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(70, 50, 218, 0.3);
}

.post-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.post-body ul li {
    position: relative;
    padding-left: 1.25rem;
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.75;
}

.post-body ul li::before {
    content: "\25B8";
    position: absolute;
    left: 0;
    color: #4632da;
}

.post-body blockquote {
    margin: 2.5rem 0;
    padding: 1.5rem 1.75rem;
    border-left: 3px solid #4632da;
    background: rgba(70, 50, 218, 0.08);
    border-radius: 0 0.5rem 0.5rem 0;
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.75;
}

.post-body blockquote strong { color: #f1f5f9; }
.post-body blockquote a { color: #22d3ee; text-decoration: none; }
.post-body blockquote a:hover { color: #10b981; }
.post-body a { color: #22d3ee; text-decoration: none; }
.post-body a:hover { color: #10b981; }
.post-body strong { color: #e2e8f0; }
.post-body em { color: #a78bfa; font-style: italic; }

