/**
 * Voltra Design CSS — starvegas-macau.merc-connect.com
 * Design #334 — Black + Purple + Orange
 */

/* ==========================================================================
   BASE / BODY
   ========================================================================== */

html, body {
    background: #000000;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: #ff8400;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #ffa040;
}

/* ==========================================================================
   HEADER — Dark centered pill nav (Voltra style)
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    z-index: var(--z-fixed);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 var(--space-lg);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--container-max);
    height: 50px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    padding: 0 var(--space-lg);
}

.header-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    flex-shrink: 0;
}

.header-logo img {
    height: 32px;
    width: auto;
}

.header-logo-text {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Navigation — pill nav with separators */
.nav-main {
    display: flex;
    align-items: center;
    gap: 0;
}

.vt-sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    padding: 0 4px;
    user-select: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.nav-link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
    opacity: 0.6;
}

.nav-item:hover .nav-link svg {
    transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 200px;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-sm);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: var(--z-dropdown);
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    border-radius: var(--radius-md);
    transition: all 0.15s ease;
}

.nav-dropdown-link:hover,
.nav-dropdown-link.active {
    background: rgba(255, 132, 0, 0.1);
    color: #ff8400;
}

.nav-dropdown-link small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

/* Header CTA */
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: #ff8400;
    color: #000000;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.header-cta:hover {
    background: #ffa040;
    color: #000000;
    box-shadow: 0 0 20px rgba(255, 132, 0, 0.5);
    transform: translateY(-1px);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.2s ease;
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 290;
}

.mobile-overlay.active {
    display: block;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 295;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 8px;
}

.mobile-nav-close svg {
    width: 20px;
    height: 20px;
}

.mobile-nav-links {
    padding: 24px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 8px;
    color: #ffffff;
    font-family: 'Jost', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    width: 100%;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #ff8400;
}

.mobile-nav-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
}

.mobile-nav-item.open > .mobile-nav-link svg {
    transform: rotate(180deg);
}

.mobile-nav-dropdown {
    display: none;
    padding: 4px 0 8px 16px;
}

.mobile-nav-item.open .mobile-nav-dropdown {
    display: block;
}

.mobile-nav-dropdown a {
    display: block;
    padding: 10px 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    text-decoration: none;
}

.mobile-nav-dropdown a:hover {
    color: #ff8400;
}

.mobile-nav-all {
    color: rgba(255, 132, 0, 0.7) !important;
    font-weight: 500;
}

/* Header spacer */
.header-spacer {
    height: 60px;
}

/* ==========================================================================
   HERO SECTION — Full viewport, photo + purple overlay
   ========================================================================== */

.vt-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vt-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/ref/hero-main.jpeg');
    background-size: cover;
    background-position: center 20%;
    z-index: 0;
}

.vt-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
        rgba(100, 0, 200, 0.75) 0%,
        rgba(60, 0, 120, 0.55) 30%,
        rgba(20, 0, 60, 0.7) 60%,
        rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

.vt-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 var(--container-padding);
    max-width: 900px;
}

.vt-hero-badge {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.vt-hero-title {
    font-family: 'Jost', sans-serif;
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 900;
    font-style: italic;
    color: #ffffff;
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin: 0 0 20px;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

.vt-hero-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}

.vt-hero-tagline-item {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.vt-hero-tagline-sep {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.4);
}

.vt-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #ff8400;
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.vt-hero-cta:hover {
    background: #ffa040;
    color: #000;
    box-shadow: 0 0 30px rgba(255, 132, 0, 0.6);
    transform: translateY(-2px);
}

.vt-hero-bottom {
    position: absolute;
    bottom: var(--space-xl);
    left: var(--space-xl);
    right: var(--space-xl);
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.vt-hero-desc {
    max-width: 320px;
}

.vt-hero-desc p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

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

.vt-hero-stat {
    text-align: center;
}

.vt-hero-stat-num {
    font-family: 'Jost', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    display: block;
}

.vt-hero-stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.vt-hero-corner {
    position: absolute;
    top: 16px;
    right: 24px;
    z-index: 2;
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

/* Scroll indicator */
.vt-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

.vt-scroll-hint span {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.vt-scroll-hint svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   PAGE HERO (Internal pages) — Full viewport with page title
   ========================================================================== */

.vt-page-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vt-page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.vt-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
        rgba(80, 0, 160, 0.8) 0%,
        rgba(40, 0, 80, 0.65) 40%,
        rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.vt-page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 var(--container-padding);
}

.vt-page-hero-year {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.vt-page-hero-title {
    font-family: 'Jost', sans-serif;
    font-size: clamp(3rem, 9vw, 7rem);
    font-weight: 900;
    font-style: italic;
    color: #ffffff;
    line-height: 0.9;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin: 0 0 16px;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

.vt-page-hero-brand {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.vt-page-hero-bottom {
    position: absolute;
    bottom: var(--space-xl);
    left: var(--space-xl);
    z-index: 2;
}

.vt-page-hero-desc {
    max-width: 380px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Breadcrumb */
.vt-breadcrumb {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

.vt-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.vt-breadcrumb a:hover {
    color: #ff8400;
}

.vt-breadcrumb-sep {
    color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   SECTION STYLES
   ========================================================================== */

.vt-section {
    padding: var(--space-3xl) 0;
    background: #000000;
}

.vt-section-alt {
    background: #060606;
}

.vt-section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.vt-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ff8400;
    margin-bottom: 12px;
}

.vt-section-title {
    font-family: 'Jost', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    font-style: italic;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin: 0 0 16px;
}

.vt-section-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ==========================================================================
   CATEGORY CARDS (Game Guide)
   ========================================================================== */

.vt-cats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.vt-cat-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: var(--space-xl) var(--space-lg);
    background: #0a0a0a;
    transition: all 0.3s ease;
    text-decoration: none;
    min-height: 180px;
    overflow: hidden;
}

.vt-cat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(123, 47, 190, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vt-cat-card:hover {
    background: #111111;
}

.vt-cat-card:hover::before {
    opacity: 1;
}

.vt-cat-num {
    font-family: 'Jost', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 132, 0, 0.35);
    line-height: 1;
    position: absolute;
    top: 14px;
    right: 18px;
    transition: all 0.3s ease;
}

.vt-cat-card:hover .vt-cat-num {
    -webkit-text-stroke-color: rgba(255, 132, 0, 0.6);
}

.vt-cat-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(255, 132, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: background 0.3s ease;
}

.vt-cat-icon svg {
    width: 22px;
    height: 22px;
    color: #ff8400;
}

.vt-cat-card:hover .vt-cat-icon {
    background: rgba(255, 132, 0, 0.2);
}

.vt-cat-name {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.vt-cat-count {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.vt-cat-arrow {
    margin-top: auto;
    padding-top: 12px;
    font-size: 1.2rem;
    color: rgba(255, 132, 0, 0.4);
    transition: all 0.3s ease;
}

.vt-cat-card:hover .vt-cat-arrow {
    color: #ff8400;
    transform: translateX(4px);
}

/* ==========================================================================
   STATS BAND
   ========================================================================== */

.vt-stats {
    padding: var(--space-2xl) 0;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.vt-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.vt-stat-item {
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.vt-stat-item:last-child {
    border-right: none;
}

.vt-stat-num {
    font-family: 'Jost', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #ff8400;
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.vt-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ==========================================================================
   ARTICLES GRID
   ========================================================================== */

.vt-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.vt-article-card {
    position: relative;
    display: block;
    text-decoration: none;
    background: #ffffff;
    overflow: hidden;
    transition: background 0.3s ease;
}

.vt-article-card:hover {
    background: #f5f5f5;
}

.vt-article-img {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.vt-article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.vt-article-card:hover .vt-article-img img {
    transform: scale(1.04);
}

.vt-article-body {
    padding: var(--space-md) var(--space-lg);
}

.vt-article-cat {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7B2FBE;
    margin-bottom: 8px;
}

.vt-article-title {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #111111;
    line-height: 1.3;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.vt-article-card:hover .vt-article-title {
    color: #7B2FBE;
}

.vt-article-arrow {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 4px;
}

.vt-article-card:hover .vt-article-arrow {
    color: #ff8400;
}

/* ==========================================================================
   MARQUEE / CAROUSEL KEYWORDS
   ========================================================================== */

.vt-marquee-section {
    padding: var(--space-xl) 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vt-marquee-row {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    white-space: nowrap;
    animation: vt-marquee 60s linear infinite;
}

.vt-marquee-row.reverse {
    animation-direction: reverse;
}

@keyframes vt-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.vt-kw-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.vt-kw-pill:hover {
    background: rgba(255, 132, 0, 0.08);
    border-color: rgba(255, 132, 0, 0.3);
    color: #ff8400;
}

/* ==========================================================================
   TAGS SECTION
   ========================================================================== */

.vt-tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.vt-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: rgba(123, 47, 190, 0.1);
    border: 1px solid rgba(123, 47, 190, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
}

.vt-tag-pill:hover {
    background: rgba(123, 47, 190, 0.2);
    border-color: rgba(123, 47, 190, 0.5);
    color: #ffffff;
    box-shadow: 0 0 16px rgba(123, 47, 190, 0.2);
}

.vt-tag-count {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

/* ==========================================================================
   CTA BAND
   ========================================================================== */

.vt-cta-band {
    padding: var(--space-4xl) 0;
    background: #060606;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vt-cta-band::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(123, 47, 190, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.vt-cta-title {
    font-family: 'Jost', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    line-height: 0.9;
    color: #ffffff;
    margin: 0 0 24px;
    position: relative;
    z-index: 1;
}

.vt-cta-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 32px;
    position: relative;
    z-index: 1;
}

.vt-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: #ff8400;
    color: #000000;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    letter-spacing: 0.02em;
}

.vt-cta-btn:hover {
    background: #ffa040;
    color: #000;
    box-shadow: 0 0 40px rgba(255, 132, 0, 0.5);
    transform: translateY(-2px);
}

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

.vt-footer {
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.vt-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.vt-footer-brand .header-logo {
    margin-bottom: 16px;
    display: flex;
}

.vt-footer-brand p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.vt-footer-title {
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 14px;
}

.vt-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vt-footer-links a {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.vt-footer-links a:hover {
    color: #ff8400;
}

.vt-footer-col {
    display: flex;
    flex-direction: column;
}

.vt-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vt-footer-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.vt-footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

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

.vt-article-page {
    background: #000000;
}

.vt-article-page-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-2xl) var(--container-padding);
}

.vt-article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.vt-article-meta-cat {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ff8400;
    text-decoration: none;
}

.vt-article-meta-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.vt-article-h1 {
    font-family: 'Jost', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    font-style: italic;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.05;
    margin: 0 0 var(--space-lg);
}

.vt-article-lead-img {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-xl);
    aspect-ratio: 16/9;
}

.vt-article-lead-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vt-article-content {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 1rem;
}

.vt-article-content h2,
.vt-article-content h3,
.vt-article-content h4 {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    color: #ffffff;
    margin: 1.5em 0 0.7em;
    text-transform: uppercase;
}

.vt-article-content h2 { font-size: 1.6rem; }
.vt-article-content h3 { font-size: 1.3rem; }
.vt-article-content h4 { font-size: 1.1rem; }

.vt-article-content p {
    margin: 0 0 1.2em;
    color: rgba(255, 255, 255, 0.85);
}

.vt-article-content a {
    color: #ff8400;
    text-decoration: underline;
}

.vt-article-content ul,
.vt-article-content ol {
    margin: 0 0 1.2em;
    padding-left: 1.5em;
    color: rgba(255, 255, 255, 0.85);
}

.vt-article-content li {
    margin-bottom: 0.4em;
}

.vt-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ==========================================================================
   ARTICLE WHITE THEME
   ========================================================================== */

.vt-article-white {
    background: #ffffff;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    margin-top: -20px;
    position: relative;
    z-index: 2;
    padding-top: var(--space-xl);
}

.vt-article-white .vt-article-h1 {
    color: #111111;
}

.vt-article-white .vt-article-meta-cat {
    color: #7B2FBE;
}

.vt-article-white .vt-article-meta-date {
    color: #666666;
}

.vt-article-white .vt-article-content {
    color: #222222;
}

.vt-article-white .vt-article-content h2,
.vt-article-white .vt-article-content h3,
.vt-article-white .vt-article-content h4 {
    color: #111111;
}

.vt-article-white .vt-article-content p {
    color: #333333;
}

.vt-article-white .vt-article-content ul,
.vt-article-white .vt-article-content ol {
    color: #333333;
}

.vt-article-white .vt-article-content a {
    color: #7B2FBE;
}

.vt-article-white .vt-article-content a:hover {
    color: #ff8400;
}

.vt-article-white .vt-article-tags {
    border-top-color: #e0e0e0;
}

.vt-article-white .vt-tag-pill {
    background: rgba(123, 47, 190, 0.08);
    border-color: rgba(123, 47, 190, 0.2);
    color: #7B2FBE;
}

.vt-article-white .vt-tag-pill:hover {
    background: rgba(123, 47, 190, 0.15);
    border-color: rgba(123, 47, 190, 0.4);
    color: #5a1f9a;
}

.vt-article-white .vt-tag-count {
    color: #999;
    background: rgba(0, 0, 0, 0.06);
}

/* ==========================================================================
   CATEGORY / SUBCATEGORY PAGES
   ========================================================================== */

.vt-page-content {
    background: #000000;
    padding: var(--space-2xl) 0;
}

.vt-sub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-2xl);
}

.vt-sub-card {
    display: flex;
    flex-direction: column;
    padding: var(--space-lg);
    background: #090909;
    text-decoration: none;
    transition: background 0.3s ease;
}

.vt-sub-card:hover {
    background: #111111;
}

.vt-sub-card-name {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 6px;
    transition: color 0.2s;
}

.vt-sub-card:hover .vt-sub-card-name {
    color: #ff8400;
}

.vt-sub-card-count {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

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

.vt-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-2xl);
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-2xl) var(--container-padding);
}

.vt-contact-info h2 {
    font-family: 'Jost', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 16px;
}

.vt-contact-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.9rem;
}

.vt-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: linear-gradient(135deg, rgba(123, 47, 190, 0.15) 0%, rgba(123, 47, 190, 0.05) 100%);
    border: 1px solid rgba(123, 47, 190, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
}

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

.vt-form-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.vt-form-input,
.vt-form-textarea {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(123, 47, 190, 0.3);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    color: #ffffff;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.vt-form-input:focus,
.vt-form-textarea:focus {
    border-color: rgba(123, 47, 190, 0.7);
    box-shadow: 0 0 16px rgba(123, 47, 190, 0.2);
}

.vt-form-input::placeholder,
.vt-form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.vt-form-textarea {
    min-height: 140px;
    resize: vertical;
}

.vt-form-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #7B2FBE, #9d4de0);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.2s ease;
    align-self: flex-start;
}

.vt-form-submit:hover {
    background: linear-gradient(135deg, #9d4de0, #b06af0);
    box-shadow: 0 0 24px rgba(123, 47, 190, 0.5);
    transform: translateY(-1px);
}

/* ==========================================================================
   404 PAGE
   ========================================================================== */

.vt-404 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    text-align: center;
    padding: var(--space-2xl) var(--container-padding);
}

.vt-404-num {
    font-family: 'Jost', sans-serif;
    font-size: clamp(6rem, 20vw, 14rem);
    font-weight: 900;
    font-style: italic;
    color: rgba(255, 255, 255, 0.04);
    line-height: 0.9;
    margin: 0;
}

.vt-404-title {
    font-family: 'Jost', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    margin: -20px 0 16px;
}

.vt-404-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0 0 32px;
}

/* ==========================================================================
   MODAL
   ========================================================================== */

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: var(--z-modal-backdrop);
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    display: block;
}

.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 680px;
    max-height: 80vh;
    overflow-y: auto;
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    z-index: var(--z-modal);
}

.modal.active {
    display: block;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.modal-title {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #ffffff;
}

.modal-close svg {
    width: 20px;
    height: 20px;
}

.modal-body {
    padding: 24px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.7;
}

.modal-body h2, .modal-body h3 {
    color: #ffffff;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

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

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

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

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

    .vt-stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

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

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

    .vt-sub-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-main { display: none; }
    .mobile-menu-toggle { display: flex; }
    .header-cta { display: none; }

    .vt-cats-grid {
        grid-template-columns: 1fr;
    }

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

    .vt-hero-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        left: 16px;
        right: 16px;
    }

    .vt-hero-stats {
        gap: 16px;
    }

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

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

@media (max-width: 480px) {
    .vt-section {
        padding: var(--space-2xl) 0;
    }

    .vt-hero-title {
        font-size: clamp(2.5rem, 12vw, 5rem);
    }

    .vt-page-hero-title {
        font-size: clamp(2.5rem, 12vw, 5rem);
    }

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

    .vt-article-page-inner {
        padding: var(--space-lg) var(--space-md);
    }
}
