@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

:root {
    --accent: #00ecff;
    --corrupted: #ff003c;
    --bg-black: #080808;
    --card-bg: #121212;
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
    --radius: 12px;
}

body {
    background-color: var(--bg-black);
    color: var(--text-main);
    font-family: 'Inconsolata', monospace;
    margin: 0;
    padding-top: 70px;
    overflow-x: hidden;
    user-select: none;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 10px; }

/* --- HERO --- */
.hero-section {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    background: radial-gradient(circle at center, rgba(0, 236, 255, 0.1) 0%, transparent 70%),
    linear-gradient(to bottom, rgba(8,8,8,0) 50%, rgba(8,8,8,1) 100%),
    url('https://i.ibb.co/1tRXLMnd/Paradise-Keyart2-No-Logo.png') center/cover;
}

.hero-content { z-index: 10; max-width: 900px; }

.hero-title {
    font-size: clamp(3.5rem, 12vw, 7rem);
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -2px;
    filter: drop-shadow(0 0 30px rgba(0,0,0,0.5));
}

.hero-desc {
    margin: 20px auto 40px;
    font-size: 1.2rem;
    color: var(--text-main);
    max-width: 600px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--accent);
    color: #000;
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
}

.btn-primary.alt {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 236, 255, 0.3);
}

/* --- GRID & CONTAINERS --- */
.container { max-width: 1200px; margin: 0 auto; padding: 60px 5%; }

.section-header {
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    margin: 0;
    text-transform: uppercase;
    display: inline-block;
    border-bottom: 4px solid var(--accent);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.news-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: white;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
}

.news-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
}

.card-img { height: 220px; background-size: cover; background-position: center; }
.card-body { padding: 25px; }

.card-tag {
    background: rgba(0, 236, 255, 0.1);
    color: var(--accent);
    padding: 4px 12px;
    font-size: 0.75rem;
    border-radius: 6px;
    font-weight: 900;
    text-transform: uppercase;
}

.card-title { font-size: 1.6rem; margin: 15px 0 10px; font-weight: 900; text-transform: uppercase; }
.card-excerpt { color: var(--text-dim); font-size: 1rem; line-height: 1.6; }

/* --- BATTLE PASS --- */
.pass-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #080808 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 80px;
    border: 1px solid rgba(255,255,255,0.05);
}

.pass-text { padding: 60px; flex: 1; }
.pass-visual {
    flex: 1;
    height: 450px;
    background: url('https://i.ibb.co/VWLyW4tP/Mari-Thumb-No-Text.png') center/cover;
}

@media (max-width: 768px) {
    .pass-card { flex-direction: column; }
    .pass-visual { width: 100%; height: 300px; }
}

footer {
    padding: 60px 5%;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #444;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* --- EXTRA BLOG STYLING MODS --- */
.blog-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.back-link {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    font-weight: 900;
    margin-bottom: 25px;
    font-size: 0.9rem;
    transition: 0.2s;
}

.back-link:hover {
    opacity: 0.8;
    transform: translateX(-4px);
}

.blog-metadata {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin: 10px 0 25px;
    letter-spacing: 1px;
}

.blog-hero-image {
    height: 380px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 40px;
}

.blog-content .block-heading {
    color: var(--text-main);
    font-size: 1.8rem;
    font-weight: 900;
    margin: 40px 0 20px;
    text-transform: uppercase;
    border-left: 3px solid var(--accent);
    padding-left: 15px;
}

.blog-content .block-image-container {
    margin: 35px 0;
    text-align: center;
}

.blog-content .block-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-content .block-caption {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-top: 10px;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* --- EXTENDED DYNAMIC CMS STYLES --- */

/* Table of Contents */
.blog-toc {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 40px;
}
.blog-toc-title {
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.blog-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.blog-toc-item {
    margin-bottom: 10px;
    font-size: 1rem;
}
.blog-toc-item a {
    color: var(--text-main);
    text-decoration: none;
    transition: 0.2s;
}
.blog-toc-item a:hover {
    color: var(--accent);
    padding-left: 5px;
}
.blog-toc-item.sub-heading {
    padding-left: 20px;
    font-size: 0.95rem;
}
.blog-toc-item.sub-heading a {
    color: var(--text-dim);
}

/* Headings Switch styles */

/* --- MULTI-STYLE CONTENT DIVIDERS --- */

/* 1. Cinematic: The original wide fading gradient style */
.block-divider.style-cinematic {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15) 20%, rgba(255, 255, 255, 0.15) 80%, transparent);
    margin: 50px 0;
}

/* 2. Standard: A solid clean rule that matches your dark card layout borders */
.block-divider.style-standard {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 40px 0;
}

/* 3. Dashed Accent: A tracked structural dash rule using your cyan color */
.block-divider.style-dashed {
    border: none;
    border-top: 1px dashed var(--accent);
    opacity: 0.4;
    height: 0;
    margin: 40px 0;
}

/* 4. Minimalist Dots: Three centered, perfectly aligned monospaced layout tracking points */
.block-divider.style-dots {
    border: none;
    text-align: center;
    height: auto;
    margin: 40px 0;
    line-height: 1;
}
.block-divider.style-dots::after {
    content: "•  •  •";
    color: var(--text-dim);
    font-family: 'Inconsolata', monospace;
    font-size: 1.2rem;
    letter-spacing: 8px;
    opacity: 0.5;
}

/* Embed Layout Frames */
.blog-content .block-embed-container {
    margin: 35px 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive Videos (YouTube / Streamable) */
.blog-content .block-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin: 35px 0;
}
.blog-content .block-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Gallery Type (Adaptive Grid up to 3 Images Max) */
.blog-content .block-gallery {
    display: grid;
    gap: 15px;
    margin: 35px 0;
}
.blog-content .block-gallery[data-count="1"] { grid-template-columns: 1fr; }
.blog-content .block-gallery[data-count="2"] { grid-template-columns: 1fr 1fr; }
.blog-content .block-gallery[data-count="3"] { grid-template-columns: 1fr 1fr 1fr; }

.blog-content .gallery-item {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}
.blog-content .gallery-item:hover {
    border-color: var(--accent);
}

@media (max-width: 600px) {
    .blog-content .block-gallery[data-count="3"],
    .blog-content .block-gallery[data-count="2"] {
        grid-template-columns: 1fr;
    }
    .blog-content .gallery-item { height: 200px; }
}

/* --- STEP-BY-STEP SLIDE COMPONENT --- */
.block-step-gallery {
    margin: 35px 0;
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.step-viewport {
    position: relative;
    width: 100%;
    height: 450px;
    background: #000;
}

.step-slide {
    display: none;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.step-slide.active {
    display: block;
    animation: fadeInSlide 0.4s ease-out;
}

@keyframes fadeInSlide {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Navigation System Controls */
.step-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(8, 8, 8, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    padding: 15px 20px;
    font-weight: 900;
    cursor: pointer;
    border-radius: var(--radius);
    transition: 0.2s;
    user-select: none;
    font-family: 'Inconsolata', monospace;
}

.step-nav-btn:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(0, 236, 255, 0.3);
}

.step-nav-btn.prev { left: 20px; }
.step-nav-btn.next { right: 20px; }

/* Status Bar & Context Metrics Footer */
.step-footer {
    padding: 20px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.step-counter {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 900;
    letter-spacing: 1px;
}

.step-caption {
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .step-viewport { height: 300px; }
    .step-nav-btn { padding: 10px 15px; font-size: 0.8rem; }
}

/* --- DYNAMIC CMS BUTTON BLOCKS --- */
.block-button-container {
    display: flex;
    margin: 30px 0;
    width: 100%;
}

/* Base structural button overrides extending your theme button roots */
.block-btn {
    display: inline-block;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: var(--radius);
    font-family: 'Inconsolata', monospace;
    font-size: 1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-sizing: border-box;
}

.block-btn:hover {
    transform: scale(1.03) translateY(-3px);
}

/* Alignment Classes */
.align-left { justify-content: flex-start; }
.align-center { justify-content: center; }
.align-right { justify-content: flex-end; }

/* Typography Alignment Classes */
.text-align-left { text-align: left; }
.text-align-center { text-align: center; }
.text-align-right { text-align: right; }

/* 🔴 COLOR VARIATIONS x FILL MODES */

/* Blue Color variant (Uses your theme cyan accent) */
.btn-color-blue.mode-fill {
    background: var(--accent);
    color: #000;
    border: 2px solid var(--accent);
}
.btn-color-blue.mode-fill:hover { box-shadow: 0 10px 25px rgba(0, 236, 255, 0.25); }

.btn-color-blue.mode-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}
.btn-color-blue.mode-outline:hover { background: rgba(0, 236, 255, 0.05); }

/* Red Color variant (Uses your theme corrupted crimson) */
.btn-color-red.mode-fill {
    background: var(--corrupted);
    color: #fff;
    border: 2px solid var(--corrupted);
}
.btn-color-red.mode-fill:hover { box-shadow: 0 10px 25px rgba(255, 0, 60, 0.25); }

.btn-color-red.mode-outline {
    background: transparent;
    color: var(--corrupted);
    border: 2px solid var(--corrupted);
}
.btn-color-red.mode-outline:hover { background: rgba(255, 0, 60, 0.05); }

/* White Color variant */
.btn-color-white.mode-fill {
    background: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
}
.btn-color-white.mode-fill:hover { box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15); }

.btn-color-white.mode-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}
.btn-color-white.mode-outline:hover { background: rgba(255, 255, 255, 0.05); }

/* Black Color variant */
.btn-color-black.mode-fill {
    background: #161616;
    color: #ffffff;
    border: 2px solid #262626;
}
.btn-color-black.mode-fill:hover { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); }

.btn-color-black.mode-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #262626;
}
.btn-color-black.mode-outline:hover { background: #121212; }

/* --- DYNAMIC CMS LIST BLOCKS --- */
.blog-content .block-list {
    margin: 25px 0;
    padding-left: 30px;
    font-family: 'Inconsolata', monospace;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-main);
}

.blog-content .block-list.style-numbers {
    list-style-type: decimal;
}

.blog-content .block-list.style-numbers li {
    margin-bottom: 12px;
    padding-left: 5px;
}

/* Accentuate bold styling inside list items */
.blog-content .block-list li b {
    color: var(--accent);
}

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

:root {
    --accent: #00ecff;
    --corrupted: #ff003c;
    --bg-black: #080808;
    --card-bg: #121212;
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
    --radius: 12px;
}

body {
    background-color: var(--bg-black);
    color: var(--text-main);
    font-family: 'Inconsolata', monospace;
    margin: 0;
    padding-top: 70px;
    overflow-x: hidden;
    user-select: none;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 10px; }

/* --- HERO --- */
.hero-section {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    background: radial-gradient(circle at center, rgba(0, 236, 255, 0.1) 0%, transparent 70%),
    linear-gradient(to bottom, rgba(8,8,8,0) 50%, rgba(8,8,8,1) 100%),
    url('https://i.ibb.co/1tRXLMnd/Paradise-Keyart2-No-Logo.png') center/cover;
}

.hero-content { z-index: 10; max-width: 900px; }

.hero-title {
    font-size: clamp(3.5rem, 12vw, 7rem);
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -2px;
    filter: drop-shadow(0 0 30px rgba(0,0,0,0.5));
}

.hero-desc {
    margin: 20px auto 40px;
    font-size: 1.2rem;
    color: var(--text-main);
    max-width: 600px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--accent);
    color: #000;
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
}

.btn-primary.alt {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 236, 255, 0.3);
}

/* --- GRID & CONTAINERS --- */
.container { max-width: 1200px; margin: 0 auto; padding: 60px 5%; }

.section-header {
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    margin: 0;
    text-transform: uppercase;
    display: inline-block;
    border-bottom: 4px solid var(--accent);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.news-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: white;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
}

.news-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
}

.card-img { height: 220px; background-size: cover; background-position: center; }
.card-body { padding: 25px; }

.card-tag {
    background: rgba(0, 236, 255, 0.1);
    color: var(--accent);
    padding: 4px 12px;
    font-size: 0.75rem;
    border-radius: 6px;
    font-weight: 900;
    text-transform: uppercase;
}

.card-title { font-size: 1.6rem; margin: 15px 0 10px; font-weight: 900; text-transform: uppercase; }
.card-excerpt { color: var(--text-dim); font-size: 1rem; line-height: 1.6; }

/* --- BATTLE PASS --- */
.pass-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #080808 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 80px;
    border: 1px solid rgba(255,255,255,0.05);
}

.pass-text { padding: 60px; flex: 1; }
.pass-visual {
    flex: 1;
    height: 450px;
    background: url('https://i.ibb.co/VWLyW4tP/Mari-Thumb-No-Text.png') center/cover;
}

@media (max-width: 768px) {
    .pass-card { flex-direction: column; }
    .pass-visual { width: 100%; height: 300px; }
}

footer {
    padding: 60px 5%;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #444;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* --- EXTRA BLOG STYLING MODS --- */
.blog-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.back-link {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    font-weight: 900;
    margin-bottom: 25px;
    font-size: 0.9rem;
    transition: 0.2s;
}

.back-link:hover {
    opacity: 0.8;
    transform: translateX(-4px);
}

.blog-metadata {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin: 10px 0 25px;
    letter-spacing: 1px;
}

.blog-hero-image {
    height: 380px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 40px;
}

/* Dynamic Content Block Type Classes */
.blog-content .block-text {
    color: var(--text-main);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.blog-content .block-text b {
    color: var(--accent);
}

.blog-content .block-image-container {
    margin: 35px 0;
    text-align: center;
}

.blog-content .block-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-content .block-caption {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-top: 10px;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* --- EXTENDED DYNAMIC CMS STYLES --- */

/* Table of Contents */
.blog-toc {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 40px;
}
.blog-toc-title {
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.blog-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.blog-toc-item {
    margin-bottom: 10px;
    font-size: 1rem;
}
.blog-toc-item a {
    color: var(--text-main);
    text-decoration: none;
    transition: 0.2s;
}
.blog-toc-item a:hover {
    color: var(--accent);
    padding-left: 5px;
}
.blog-toc-item.sub-heading {
    padding-left: 20px;
    font-size: 0.95rem;
}
.blog-toc-item.sub-heading a {
    color: var(--text-dim);
}

/* Headings Switch styles */
.blog-content .block-heading-regular {
    color: var(--text-main);
    font-size: 2rem;
    font-weight: 900;
    margin: 45px 0 20px;
    text-transform: uppercase;
    border-bottom: 2px solid rgba(0, 236, 255, 0.1);
    padding-bottom: 8px;
}
.blog-content .block-heading-mini {
    color: var(--accent);
    font-size: 1.4rem;
    font-weight: 900;
    margin: 35px 0 15px;
    text-transform: uppercase;
}

/* --- MULTI-STYLE CONTENT DIVIDERS --- */

/* 1. Cinematic: The original wide fading gradient style */
.block-divider.style-cinematic {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15) 20%, rgba(255, 255, 255, 0.15) 80%, transparent);
    margin: 50px 0;
}

/* 2. Standard: A solid clean rule that matches your dark card layout borders */
.block-divider.style-standard {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 40px 0;
}

/* 3. Dashed Accent: A tracked structural dash rule using your cyan color */
.block-divider.style-dashed {
    border: none;
    border-top: 1px dashed var(--accent);
    opacity: 0.4;
    height: 0;
    margin: 40px 0;
}

/* 4. Minimalist Dots: Three centered, perfectly aligned monospaced layout tracking points */
.block-divider.style-dots {
    border: none;
    text-align: center;
    height: auto;
    margin: 40px 0;
    line-height: 1;
}
.block-divider.style-dots::after {
    content: "•  •  •";
    color: var(--text-dim);
    font-family: 'Inconsolata', monospace;
    font-size: 1.2rem;
    letter-spacing: 8px;
    opacity: 0.5;
}

/* Embed Layout Frames */
.blog-content .block-embed-container {
    margin: 35px 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive Videos (YouTube / Streamable) */
.blog-content .block-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin: 35px 0;
}
.blog-content .block-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Gallery Type (Adaptive Grid up to 3 Images Max) */
.blog-content .block-gallery {
    display: grid;
    gap: 15px;
    margin: 35px 0;
}
.blog-content .block-gallery[data-count="1"] { grid-template-columns: 1fr; }
.blog-content .block-gallery[data-count="2"] { grid-template-columns: 1fr 1fr; }
.blog-content .block-gallery[data-count="3"] { grid-template-columns: 1fr 1fr 1fr; }

.blog-content .gallery-item {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}
.blog-content .gallery-item:hover {
    border-color: var(--accent);
}

@media (max-width: 600px) {
    .blog-content .block-gallery[data-count="3"],
    .blog-content .block-gallery[data-count="2"] {
        grid-template-columns: 1fr;
    }
    .blog-content .gallery-item { height: 200px; }
}

/* --- STEP-BY-STEP SLIDE COMPONENT --- */
.block-step-gallery {
    margin: 35px 0;
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.step-viewport {
    position: relative;
    width: 100%;
    height: 450px;
    background: #000;
}

.step-slide {
    display: none;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.step-slide.active {
    display: block;
    animation: fadeInSlide 0.4s ease-out;
}

@keyframes fadeInSlide {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Navigation System Controls */
.step-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(8, 8, 8, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    padding: 15px 20px;
    font-weight: 900;
    cursor: pointer;
    border-radius: var(--radius);
    transition: 0.2s;
    user-select: none;
    font-family: 'Inconsolata', monospace;
}

.step-nav-btn:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(0, 236, 255, 0.3);
}

.step-nav-btn.prev { left: 20px; }
.step-nav-btn.next { right: 20px; }

/* Status Bar & Context Metrics Footer */
.step-footer {
    padding: 20px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.step-counter {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 900;
    letter-spacing: 1px;
}

.step-caption {
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .step-viewport { height: 300px; }
    .step-nav-btn { padding: 10px 15px; font-size: 0.8rem; }
}

/* --- DYNAMIC CMS BUTTON BLOCKS --- */
.block-button-container {
    display: flex;
    margin: 30px 0;
    width: 100%;
}

/* Base structural button overrides extending your theme button roots */
.block-btn {
    display: inline-block;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: var(--radius);
    font-family: 'Inconsolata', monospace;
    font-size: 1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-sizing: border-box;
}

.block-btn:hover {
    transform: scale(1.03) translateY(-3px);
}

/* Alignment Classes */
.align-left { justify-content: flex-start; }
.align-center { justify-content: center; }
.align-right { justify-content: flex-end; }

/* Typography Alignment Classes */
.text-align-left { text-align: left; }
.text-align-center { text-align: center; }
.text-align-right { text-align: right; }

/* 🔴 COLOR VARIATIONS x FILL MODES */

/* Blue Color variant (Uses your theme cyan accent) */
.btn-color-blue.mode-fill {
    background: var(--accent);
    color: #000;
    border: 2px solid var(--accent);
}
.btn-color-blue.mode-fill:hover { box-shadow: 0 10px 25px rgba(0, 236, 255, 0.25); }

.btn-color-blue.mode-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}
.btn-color-blue.mode-outline:hover { background: rgba(0, 236, 255, 0.05); }

/* Red Color variant (Uses your theme corrupted crimson) */
.btn-color-red.mode-fill {
    background: var(--corrupted);
    color: #fff;
    border: 2px solid var(--corrupted);
}
.btn-color-red.mode-fill:hover { box-shadow: 0 10px 25px rgba(255, 0, 60, 0.25); }

.btn-color-red.mode-outline {
    background: transparent;
    color: var(--corrupted);
    border: 2px solid var(--corrupted);
}
.btn-color-red.mode-outline:hover { background: rgba(255, 0, 60, 0.05); }

/* White Color variant */
.btn-color-white.mode-fill {
    background: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
}
.btn-color-white.mode-fill:hover { box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15); }

.btn-color-white.mode-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}
.btn-color-white.mode-outline:hover { background: rgba(255, 255, 255, 0.05); }

.btn-color-white.mode-outline {
    display: inline-block;     /* Gives it box dimensions so padding works */
    text-decoration: none;     /* Removes the default underline */
    padding: 12px 28px;        /* Adds space inside the border */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    transition: background 0.2s ease;
}

.btn-color-white.mode-outline:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Black Color variant */
.btn-color-black.mode-fill {
    background: #161616;
    color: #ffffff;
    border: 2px solid #262626;
}
.btn-color-black.mode-fill:hover { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); }

.btn-color-black.mode-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #262626;
}
.btn-color-black.mode-outline:hover { background: #121212; }

/* --- DYNAMIC CMS LIST BLOCKS --- */
.blog-content .block-list {
    margin: 25px 0;
    padding-left: 30px;
    font-family: 'Inconsolata', monospace;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-main);
}

.blog-content .block-list.style-bullets {
    list-style-type: none; /* Custom cyber indicator instead of basic dots */
}

.blog-content .block-list.style-bullets li {
    position: relative;
    margin-bottom: 12px;
}

.blog-content .block-list.style-bullets li::before {
    content: "• ";
    position: absolute;
    left: -25px;
    color: var(--accent);
    font-weight: 900;
}

.blog-content .block-list.style-numbers {
    list-style-type: decimal;
}

.blog-content .block-list.style-numbers li {
    margin-bottom: 12px;
    padding-left: 5px;
}

/* Accentuate bold styling inside list items */
.blog-content .block-list li b {
    color: var(--accent);
}

/* ==========================================================================
   ENMITY WORKSPACE STYLE SHEET (BREATHING REWORK // NO BURN-OUT)
   ========================================================================== */

.editor-workspace {
    display: grid;
    grid-template-columns: 440px 1fr; /* Slightly wider side lane for padding safety */
    height: 100dvh;
    width: 100vw;
    overflow: hidden;
    background: #050505;
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 70px; /* Locked clean right to header edge */
    box-sizing: border-box;
}

/* Two Core Pillars */
.editor-sidebar,
.editor-preview-region {
    height: 100%;
    box-sizing: border-box;
    /* Clean, unobtrusive dark scrollbars */
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.08) transparent;
}

/* Control Core Pillar (STRICTLY LEFT) */
.editor-sidebar {
    grid-column: 1;
    background: #0a0a0a; /* Dark, solid, premium console backing */
    padding: 30px 24px; /* More generous internal breathing space */
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    border-right: 1px solid rgba(255, 255, 255, 0.03);
}

/* Live Blog Preview Region (STRICTLY RIGHT) */
.editor-preview-region {
    grid-column: 2;
    background: #070707;
    overflow-y: auto;
    padding: 40px; /* Separates the preview pane from editor lines dramatically */
}

.editor-scroll-region {
    flex: 1;
}

/* Headings inside Editor Column */
.editor-section-title {
    font-family: 'Inconsolata', monospace;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--accent, #00ecff);
    text-transform: uppercase;
    margin: 35px 0 16px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    opacity: 0.85;
}
.editor-section-title:first-of-type {
    margin-top: 0;
}

/* Control Input Core Components */
.editor-field-group {
    margin-bottom: 16px;
}

.editor-field-group label {
    display: block;
    font-family: 'Inconsolata', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    color: #555; /* Softened down to reduce high-contrast glare */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.editor-input,
.editor-textarea {
    width: 100%;
    background: #0e0e0e; /* Subtle container layering contrast */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px; /* Gentle modern rounding without breaking tech look */
    color: #fff;
    padding: 12px;
    font-family: 'Inconsolata', monospace;
    font-size: 0.85rem;
    box-sizing: border-box;
    margin-bottom: 4px;
    outline: none;
    transition: all 0.2s ease-in-out;
}

/* Ambient glow focus paths for easier writing navigation */
.editor-input:focus,
.editor-textarea:focus {
    border-color: rgba(0, 236, 255, 0.3);
    background: #111;
}

.editor-textarea {
    resize: vertical;
    min-height: 75px;
    line-height: 1.5;
}

/* Dynamic Interactive Buttons Control Sets */
.editor-toolbar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.editor-toolbar button {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.04);
    color: #999;
    padding: 12px 10px;
    font-family: 'Inconsolata', monospace;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.editor-toolbar button:hover {
    border-color: var(--accent, #00ecff);
    color: #fff;
    background: rgba(0, 236, 255, 0.03);
    box-shadow: 0 4px 12px rgba(0, 236, 255, 0.05);
}

/* Core Functional Row Components (The individual content blocks) */
.editor-block-item {
    background: #0f0f13; /* Elegant off-black purple/blue code background card */
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 8px; /* Clean tracking boundaries */
    padding: 16px;
    margin-bottom: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: border-color 0.2s ease;
}

.editor-block-item:focus-within {
    border-color: rgba(255, 255, 255, 0.08);
}

.editor-block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.editor-block-type-badge {
    font-family: 'Inconsolata', monospace;
    font-size: 0.65rem;
    font-weight: 900;
    color: var(--accent, #00ecff);
    text-transform: uppercase;
    letter-spacing: 0.5px;

    /* ADDED FOR PERFECT VERTICAL ALIGNMENT */
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
}

.editor-block-actions button {
    background: transparent;
    border: none;
    color: #444;
    font-family: 'Inconsolata', monospace;
    font-size: 0.65rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: color 0.15s ease;

    /* ADDED FOR PERFECT VERTICAL ALIGNMENT */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    line-height: 1;
}

/* Rendered Preview Lists Setup Formatting */
.blog-content .block-list {
    margin: 20px 0;
    padding-left: 24px;
}

.blog-content .block-list.style-numbers {
    list-style-type: decimal;
}

.blog-content .block-list li {
    margin-bottom: 12px;
    line-height: 1.65;
    color: #ccc;
}

.blog-content .block-list li b {
    color: var(--accent, #00ecff);
}

/* =============================================================
   ENMITY ASSET DIRECTORY HUB (MODERNIZED UI)
   ============================================================= */
.asset-hub-header {
    margin: 50px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 25px;
}

.asset-hub-title {
    text-align: left;
    margin: 15px 0 10px;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    letter-spacing: -1px;
}

.asset-hub-subtitle {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 1.1rem;
}

/* Tab Filter Station */
.filter-container {
    display: flex;
    gap: 12px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    padding: 10px 20px;
    font-family: 'Inconsolata', monospace;
    font-size: 0.95rem;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.25);
}

.filter-btn.active {
    background: var(--accent, #00ecff);
    color: #050505;
    border-color: var(--accent, #00ecff);
    box-shadow: 0 4px 20px rgba(0, 236, 255, 0.25);
}

/* Card Presentation Grid */
.asset-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.asset-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.asset-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(var(--accent, #00ecff), 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 236, 255, 0.1);
}

.asset-preview {
    width: 100%;
    height: 180px;
    background-color: #0f0f0f;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.4s ease;
}

.asset-card:hover .asset-preview {
    background-size: 102%; /* Subtle growth factor visual on hover */
}

.asset-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.asset-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 6px 0;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.3px;
}

.asset-meta {
    font-size: 0.85rem;
    color: var(--accent, #00ecff);
    margin-bottom: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.85;
}

/* Action Control Row */
.asset-action {
    margin-top: auto;
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 12px;
    text-align: center;
    font-family: 'Inconsolata', monospace;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    box-sizing: border-box;
    transition: all 0.25s ease;
}

.asset-card:hover .asset-action {
    border-color: var(--accent, #00ecff);
    color: var(--accent, #00ecff);
}

.asset-action:hover {
    background: var(--accent, #00ecff) !important;
    color: #050505 !important;
    box-shadow: 0 0 15px rgba(0, 236, 255, 0.4);
}

.nav-logo img {
    height: 50px; /* Increased from 32px to make it noticeably larger */
    width: auto;
    max-width: 180px; /* Prevents an ultra-wide image from blowing up the left nav section */
    object-fit: contain; /* Ensures crisp aspect-ratio scaling */
    display: block;
    transition: filter 0.3s ease;
}

/* Dashboard Environment Structural Overrides */
.bp-dashboard-body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #050505;
    font-family: 'Inconsolata', monospace;
}

/* Container Engine for dynamic sizing control limits */
.bp-dashboard-view {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 90px 5%;
    transition: background-image 0.5s ease-in-out;
}

/* Gradient Mask overlay layer */
.bp-dashboard-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(5,5,5,0.2) 0%, rgba(5,5,5,0.9) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Main Display Wrapper Setup */
.bp-interface-container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* ↗️ BRANDING SECTION */
.bp-panel-left {
    position: absolute;
    top: 20px;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.bp-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 900;
    margin: 0 0 5px 0;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.bp-badge {
    background: rgba(0, 236, 255, 0.1);
    border: 1px solid #00ecff;
    color: #00ecff;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    border-radius: 4px;
    display: inline-block;
}

.text-corrupted {
    color: var(--corrupted, #ff4d4d);
}

/* 🎯 CENTERED SHOWCASE WINDOW VIEWPORT */
.bp-showcase-window {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(8, 8, 8, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 35px;
    backdrop-filter: blur(10px);
    max-width: 600px;
    width: 100%;
    box-sizing: border-box;
}

/* 16:9 Cinematic Video/Image Frame Constraint */
.bp-asset-frame {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 25px;
}

.bp-asset-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bp-meta-frame {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bp-tier-tag {
    color: #666;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.bp-character-name {
    font-size: 2.2rem;
    font-weight: 900;
    margin: 0 0 12px 0;
    letter-spacing: 1px;
}

.bp-character-desc {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ➡️ RIGHT SIDE SLIDE-OUT PURCHASE DRAWERS */
.bp-panel-right {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    z-index: 100;
    display: flex;
    align-items: center;
}

.bp-purchase-box {
    background: rgba(10, 10, 10, 0.95);
    border-left: 1px solid rgba(0, 236, 255, 0.2);
    padding: 40px 35px;
    width: 380px;
    height: 100%;
    box-sizing: border-box;
    backdrop-filter: blur(20px);
    box-shadow: -15px 0 35px rgba(0,0,0,0.6);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bp-purchase-box::before {
    content: "UNLOCKS";
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: none;
    color: #00ecff;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 2px;
    padding: 8px 15px;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
}

.bp-panel-right:hover .bp-purchase-box {
    transform: translateX(0);
}

.bp-purchase-title {
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.bp-purchase-text {
    color: #a0a0a0;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0 0 25px 0;
}

.bp-notice-text {
    color: #a0a0a0;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0 0 25px 0;

    /* Spacing adjustments */
    padding-top: 15px; /* Adds breathing room right under the pre-order button */
    /*padding-left: 12px;*/
    padding-bottom: 5px;

    /* Clean layout style */
    background: none !important; /* Strips out the block color background entirely */

    /* Center alignment rule */
    text-align: center; /* Horizontally centers the text inside its box block */
}

.bp-perks-list {
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bp-perk-item {
    font-size: 0.85rem;
    color: #00ecff;
    font-weight: 600;
}

.bp-btn-primary {
    background: #00ecff;
    color: #000;
    text-decoration: none;
    font-weight: 900;
    font-size: 0.95rem;
    letter-spacing: 1px;
    padding: 15px 20px;
    border-radius: 8px;
    display: block;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 236, 255, 0.3);
    transition: all 0.3s ease;
}

.bp-btn-primary:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 236, 255, 0.5);
}

/* 📍 FIXED LEFT-SIDE VERTICAL SELECTION TRAY */
.bp-selection-tray {
    position: absolute !important;
    left: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 1000 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    background: rgba(5, 5, 5, 0.7) !important;
    padding: 20px 12px !important;
    border-radius: 50px !important; /* Rounded pill container */
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px) !important;
    width: auto !important;
    height: auto !important;
}

.bp-tray-item {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 65px !important;
    max-width: 65px !important;
    height: 65px !important;
    max-height: 65px !important;
    border-radius: 50% !important; /* FORCES PERFECT CIRCLE */
    border: 2px solid rgba(255, 255, 255, 0.15) !important;
    background: #111 !important;
    padding: 0 !important;
    overflow: hidden !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Forces images to correctly render inside the vertical item blocks */
.bp-tray-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 50% !important;
}

.bp-tray-item:hover {
    transform: scale(1.1) !important;
    border-color: rgba(0, 236, 255, 0.6) !important;
}

.bp-tray-item.active {
    border-color: #00ecff !important;
    transform: scale(1.15) !important;
    box-shadow: 0 0 15px rgba(0, 236, 255, 0.4) !important;
}

/* Responsive breakdowns */
@media (max-width: 992px) {
    .bp-dashboard-view {
        height: auto;
        padding: 120px 5% 180px 5%;
        overflow: visible;
    }
    .bp-interface-container {
        position: static;
    }
    .bp-panel-left {
        position: relative;
        top: 0;
        align-items: center;
        text-align: center;
        margin-bottom: 30px;
    }
    .bp-selection-tray {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        flex-direction: row;
        margin-top: 30px;
    }
    .bp-tray-item:hover, .bp-tray-item.active {
        transform: translateY(-4px);
    }
    .bp-panel-right {
        position: relative;
        height: auto;
        width: 100%;
        margin-top: 30px;
        justify-content: center;
    }
    .bp-purchase-box {
        transform: none;
        width: 100%;
        max-width: 450px;
        height: auto;
        border-left: none;
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        padding: 30px;
    }
    .bp-purchase-box::before {
        display: none;
    }
}

/* 📱 GLOBAL RESPONSIVE MOBILE RECONSTRUCTION ENGINE */
@media (max-width: 1100px) {
    /* 1. Reset standard container view constraints to allow content scrolling */
    .bp-dashboard-view {
        height: auto !important;
        min-height: 100vh !important;
        padding: 100px 20px 60px 20px !important;
        overflow-y: auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    /* 2. Transition layout layer from fixed columns into a simple stacked vertical flow */
    .bp-interface-container {
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        gap: 30px !important;
        height: auto !important;
        width: 100% !important;
    }

    /* 3. Re-align branding headers into center focus */
    .bp-panel-left {
        position: relative !important;
        top: 0 !important;
        right: 0 !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
        margin-bottom: 10px !important;
    }

    /* 4. Convert selection tray from a fixed left-side wall column into a responsive row ribbon */
    .bp-selection-tray {
        position: relative !important;
        left: 0 !important;
        top: 0 !important;
        transform: none !important;
        flex-direction: row !important; /* Horizontally rows items across instead of column stacking */
        justify-content: center !important;
        flex-wrap: wrap !important; /* Wraps items cleanly down if screen widths wrap too tight */
        width: 100% !important;
        max-width: 500px !important;
        padding: 12px 20px !important;
        border-radius: 30px !important;
        order: 2 !important; /* Re-orders dynamically beneath showcase layout frame */
    }

    /* Adjust the image item motion behavior for standard row tracking */
    .bp-tray-item:hover, .bp-tray-item.active {
        transform: scale(1.1) translateY(-4px) !important; /* Pop up slightly instead of outward right */
    }

    /* 5. Optimize the centered card showcase window frame sizing bounds */
    .bp-showcase-window {
        position: relative !important;
        width: 100% !important;
        max-width: 550px !important;
        padding: 20px !important;
        order: 1 !important;
    }

    .bp-asset-frame {
        margin-bottom: 15px !important;
    }

    .bp-character-name {
        font-size: 1.8rem !important;
    }

    /* 6. Strip sidebar drawer panel container on mobile and only display the button */
    .bp-panel-right {
        position: relative !important;
        top: 0 !important;
        right: 0 !important;
        height: auto !important;
        width: 100% !important;
        max-width: 550px !important;
        display: flex !important;
        justify-content: center !important;
        z-index: 10 !important;
        order: 3 !important;
    }

    /* Hide the entire background card panel and all text elements inside it */
    .bp-purchase-box {
        display: contents !important; /* Strips wrapper layout constraints entirely */
    }

    .bp-purchase-box .bp-purchase-title,
    .bp-purchase-box .bp-purchase-text,
    .bp-purchase-box .bp-perks-list,
    .bp-purchase-box .bp-notice-text,
    .bp-purchase-box::before {
        display: none !important; /* Vaporizes everything except the <a> link anchor tag */
    }

    /* Target the button directly to ensure it spans beautifully across the screen width */
    .bp-purchase-box .bp-btn-primary {
        display: block !important;
        width: 100% !important;
        max-width: 400px !important; /* Keeps it tight and readable on phone screens */
        padding: 16px 20px !important;
        box-sizing: border-box !important;
    }
}

/* --- SOCIALS HUB COMPONENT --- */
.socials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.social-card {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 20px;
    text-decoration: none;
    color: var(--text-main);
    transition: 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-right: 20px;
    transition: 0.25s;
}

.social-info {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex: 1;
}

.social-name {
    font-size: 1.3rem;
    font-weight: 900;
    text-transform: uppercase;
}

.social-tagline {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-top: 4px;
}

.social-action {
    color: var(--text-dim);
    font-size: 1.1rem;
    transition: transform 0.25s;
    opacity: 0.5;
}

/* Hover States & Accents */
.social-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(0, 236, 255, 0.1);
}

.social-card:hover .social-action {
    color: var(--accent);
    transform: translateX(5px);
    opacity: 1;
}

/* Brand Flavor Highlights */
.social-card.discord:hover .social-icon { color: #5865F2; background: rgba(88, 101, 242, 0.1); }
.social-card.twitter:hover .social-icon { color: #ffffff; background: rgba(255, 255, 255, 0.1); }
.social-card.roblox:hover .social-icon { color: var(--corrupted); background: rgba(255, 0, 60, 0.1); }
.social-card.youtube:hover .social-icon { color: #FF0000; background: rgba(255, 0, 0, 0.1); }

/* --- FOOTER SOCIAL ICON MATRIX --- */
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 20px 0;
}

.footer-socials a {
    color: #a0a0a0;
    font-size: 1.4rem;
    text-decoration: none;
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.2s ease;
    display: inline-block;
}

.footer-socials a:hover {
    color: var(--accent);
    transform: scale(1.15) translateY(-2px);
    filter: drop-shadow(0 0 8px rgba(0, 236, 255, 0.5));
}

/* 🎛️ DESKTOP MORE-LINKS CONTEXT MENU COMPONENT */
.nav-more-wrapper {
    position: relative;
    display: inline-block;
}

.nav-more-btn {
    background: transparent;
    border: none;
    color: #a0a0a0;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-more-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

/* 📋 FLOATING DROPDOWN PANEL PACK */
.nav-dropdown-panel {
    position: absolute;
    top: 45px;
    right: 0;
    background: rgba(12, 12, 12, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    width: 180px;
    padding: 8px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    backdrop-filter: blur(20px);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    z-index: 10005;
}

/* Toggled via JS event listener */
.nav-dropdown-panel.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-dropdown-panel a {
    display: block;
    padding: 10px 20px;
    font-size: 0.8rem;
    text-align: left;
    border-radius: 0;
}

.nav-dropdown-panel a:hover {
    background: rgba(0, 236, 255, 0.05);
    color: #00ecff !important;
}

/* 📱 MOBILE RESPONSIVE DISPLAY UTILITY */
@media (max-width: 768px) {
    .nav-more-wrapper {
        display: none;
    }
    .mobile-only-link {
        display: block !important;
    }
}

/* ==========================================================================
   INKVERSE PREMIUM EXPERIENCES CORE SHEET (MODERN SANS-SERIF)
   ========================================================================== */

.studio-hub-body {
    background-color: #0a0a0a !important;
    background-image: radial-gradient(circle at 50% -20%, rgba(0, 236, 255, 0.05) 0%, transparent 60%);
    font-family: 'Inter', sans-serif; /* Changes baseline site description text */
}

.studio-viewport {
    padding-top: 120px;
    padding-bottom: 100px;
    min-height: 100vh;
    box-sizing: border-box;
}

.studio-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- TITLE ARCHITECTURE --- */
.studio-intro-header {
    margin-bottom: 50px;
}

.studio-pretitle {
    display: block;
    font-size: 0.75rem;
    color: #666;
    letter-spacing: 3px;
    font-weight: 800;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.studio-maintitle {
    font-family: 'Syne', sans-serif; /* Wide, artistic branding font */
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0px;
    margin: 0 0 15px 0;
}

.studio-maintitle .accent-glow {
    color: #00ecff;
}

.studio-subtitle {
    font-size: 1rem;
    color: #888;
    max-width: 600px;
    line-height: 1.6;
    margin: 0;
}

/* --- CARD STRUCTURE --- */
.game-matrix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(440px, 1fr));
    gap: 40px;
}

@media (max-width: 768px) {
    .studio-container { padding: 0 20px; }
    .game-matrix-grid { grid-template-columns: 1fr; gap: 30px; }
    .studio-maintitle { font-size: 2.2rem; }
}

.game-card {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.game-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

/* --- CARD IMAGES & FULL-ART EDGE-TO-EDGE CONFIGURATION --- */
.card-media-wrapper {
    position: relative;
    height: 240px;
    width: 100%;
    background: #0d0d0d;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-media-wrapper.full-art-mode {
    height: 240px; /* Aligns perfectly with standard card heights */
    background: #0d0d0d;
    padding: 0; /* REMOVED padding so the image touches the card border lines */
    box-sizing: border-box;
}

.card-bg-blur {
    position: absolute;
    width: 110%;
    height: 110%;
    object-fit: cover;
    filter: blur(25px) brightness(0.2);
    opacity: 0.5;
}

.card-media-wrapper.full-art-mode .card-bg-blur {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    filter: blur(20px) brightness(0.3);
    opacity: 0.5;
}

.card-display-art {
    position: relative;
    height: 85%;
    width: auto;
    object-fit: contain;
    z-index: 2;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-display-art.full-art {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* FORCES the image to cleanly fill the entire top box edge-to-edge */
    z-index: 2;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.game-card:hover .card-display-art {
    transform: scale(1.02);
}

/* --- META CONTENT PACK --- */
.card-meta-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 15px;
}

.game-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.game-version-tag {
    font-size: 0.75rem;
    color: #444;
    font-weight: 700;
    letter-spacing: 1px;
}

.game-summary {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.6;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

/* --- ACTIONS ROW & COLUMN INTEGRATION --- */
.card-action-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 25px;
    gap: 15px; /* Keeps meta text blocks clean on responsive wrap scales */
}

.game-stats-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-label {
    font-size: 0.65rem;
    color: #444;
    font-weight: 700;
    letter-spacing: 1px;
}

.stat-value {
    font-size: 0.85rem;
    color: #aaa;
    font-weight: 600;
}

.unique-date-style {
    font-size: 0.8rem !important;
    color: #666 !important;
    font-weight: 500;
}

.studio-btn-launch {
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 12px 28px;
    border-radius: 6px;
    border: none;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}

.studio-btn-launch:hover:not(:disabled) {
    background: #00ecff;
}

/* --- SECTOR LOCKOUT STYLES --- */
.item-encrypted {
    opacity: 0.3;
}

.encryption-overlay {
    background: #0d0d0d;
}

.lock-icon {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #444;
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 6px 12px;
    border-radius: 4px;
}

.spec-project {
    color: #333;
}

.fallback-text {
    color: #333;
}

.btn-disabled {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.03);
    color: #333;
    cursor: not-allowed;
}

/* --- COMPONENT CONTROLS & DASHBOARD FILTERS --- */
.studio-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    gap: 10px;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #888;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.filter-btn.active {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

/* --- SEARCH BAR COMPONENT ELEMENT --- */
.search-group input {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 6px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    min-width: 280px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.search-group input:focus {
    border-color: #00ecff;
    box-shadow: 0 0 15px rgba(0, 236, 255, 0.1);
}

.search-group input::placeholder {
    color: #444;
    transition: color 0.3s ease;
}

.search-group input:focus::placeholder {
    color: #666;
}

/* --- GROUPING CATEGORY ELEMENT ARCHITECTURE --- */
.category-group-wrapper {
    margin-bottom: 60px;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 12px;
    margin-bottom: 25px;
}

.category-title-text {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    color: #fff;
    font-weight: 700;
    margin: 0;
}

.category-count {
    font-size: 0.8rem;
    color: #444;
    font-weight: 700;
}

.no-results {
    color: #555;
    font-size: 1rem;
    text-align: center;
    padding: 60px 0;
}

@media (max-width: 768px) {
    .studio-filter-bar { flex-direction: column; align-items: stretch; }
    .filter-group { flex-direction: column; }
    .search-group input { width: 100%; box-sizing: border-box; }
}

/* --- 🎯 HERO SPOTLIGHT CLEAN CENTERED OVERRIDES --- */

.hero-section {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.hero-section .block-step-gallery {
    width: 100%;
    margin: 0;
    border-radius: 0;
    border: none;
    background: #050505;
}

/* Force viewport to fill the screen display height */
.hero-section .step-viewport {
    position: relative;
    width: 100%;
    height: 80vh; /* Adjust to 100vh if you want absolute true fullscreen browser coverage */
    background: #050505;
}

/* 🖼️ Bleed images edge to edge */
.hero-section .step-slide {
    background-size: cover !important;
    background-repeat: no-repeat;
    background-position: center;
}

/* 🎯 THE OVERLAY FIX: Centers all text and buttons perfectly over the background image */
.hero-section .hero-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.75));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Metadata tag and counter styling alignment adjustments */
.hero-section .step-meta-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

/* Scale up your central title header */
.hero-section .hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin: 0 0 25px 0;
    max-width: 900px;
    line-height: 1.1;
    text-transform: uppercase;
    font-family: "Inconsolata", monospace;
}

/* Re-aligning the button wrapper directly under the main title text */
.hero-section .hero-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

/* Ensure arrows sit above your dark central overlay gradient layout mask */
.hero-section .step-nav-btn {
    z-index: 6;
}

/* Mobile Responsive Scale Adjustments */
@media (max-width: 768px) {
    .hero-section .step-viewport {
        height: 60vh;
    }
    .hero-section .hero-title {
        font-size: 2.2rem;
    }
    .hero-section .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        gap: 10px;
    }
    .hero-section .hero-btns .btn-primary {
        width: 100%;
        text-align: center;
    }
}

/* --- 🎯 MATCH OLD HERO BOUNDARIES PERFECTLY --- */

/* 1. Ensure the main container sits edge-to-edge with the same dimension rules as the old banner */
.hero-section {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: block; /* Strips any flex center-boxing from parent layouts */
}

/* 2. Force the gallery block element to fill the section content boundaries completely */
.hero-section #hero-spotlight-gallery.block-step-gallery {
    width: 100%;
    margin: 0 !important; /* Forces out any generic block margins (.block-step-gallery has 35px 0) */
    border-radius: 0 !important; /* Strips rounded corners to blend flush */
    border: none !important; /* Removes card borders */
    background: #000;
}

/* 3. Adjust this height to match whatever height your old simple hero section used to be */
.hero-section #hero-viewport.step-viewport {
    width: 100%;
    height: 750px; /* Set this to match your old hero banner design height (e.g., 450px, 500px, or 600px) */
}

/* 4. Ensure background slide items stretch cleanly behind the fixed overlay panel */
.hero-section .step-slide {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat;
}

/* 5. Center content dead-center inside the exact viewport box */
.hero-section .hero-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.65)); /* Clean overlay shade */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 40px;
    box-sizing: border-box;
    z-index: 2;
}

/* 6. Keep buttons sitting cleanly in a centered row */
.hero-section .hero-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

/* Mobile responsive scaling down to fit the old responsive banner size */
@media (max-width: 768px) {
    .hero-section #hero-viewport.step-viewport {
        height: 380px;
    }
    .hero-section .hero-title {
        font-size: 2rem;
    }
}

/* Mobile responsive scaling down to fit the old responsive banner size */
@media (max-width: 768px) {
    .hero-section #hero-viewport.step-viewport {
        height: 420px; /* Bumped slightly to give your stacked buttons clean breathing room */
    }

    .hero-section .hero-title {
        font-size: 2rem;
        padding: 0 10px;
    }

    /* 📱 STACK AND CENTER BUTTONS ON MOBILE */
    .hero-section .hero-btns {
        flex-direction: column; /* Switches row layout to a clean vertical list */
        width: 100%;
        max-width: 260px; /* Constrains button expansion so they don't block the art */
        gap: 10px; /* Even spacing between stacked buttons */
        margin-top: 20px;
    }

    /* Force anchors to inherit structural box layout constraints */
    .hero-section .hero-btns .btn-primary {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        padding: 12px 0; /* Ensures consistent vertical tap targets on smaller glass */
    }

    /* Make the navigation arrows smaller so they stay clear of your text and buttons */
    .hero-section .step-nav-btn {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    .hero-section .step-nav-btn.prev { left: 10px; }
    .hero-section .step-nav-btn.next { right: 10px; }

    /* 🪪 BATTLE PASS CARD MOBILE OVERRIDES */
    .pass-card {
        flex-direction: column; /* Stacks text on top, visual image on bottom */
        text-align: center;
        padding: 25px 15px;
        gap: 20px;
    }

    .pass-text {
        width: 100% !important;
        display: flex;
        flex-direction: column;
        align-items: center; /* Centers the tag, heading, and description */
    }

    .pass-card .card-title {
        font-size: 2rem !important; /* Scales down the massive 2.8rem font so it doesn't break lines awkwardly */
        line-height: 1.2;
    }

    /* Give the image area explicit dimensions since it's stacked now */
    .pass-visual {
        width: 100% !important;
        height: 200px; /* Adjust height based on your keyart aspect ratio */
        background-size: cover;
        background-position: center;
        border-radius: var(--radius);
    }

    /* 📱 STACK BATTLE PASS BUTTONS */
    .pass-card .btn-primary {
        display: block;
        width: 100%;
        max-width: 260px; /* Matches the hero button width constraint */
        box-sizing: border-box;
        margin: 5px auto !important; /* Centers them and replaces the old inline <br> spacing */
        text-align: center;
    }
}

/* --- 👑 ENMITY PREMIUM PAGE STYLES --- */

/* Gold branding highlight helper */
.gold-text {
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.premium-tag {
    background: rgba(255, 215, 0, 0.1) !important;
    color: #ffd700 !important;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

/* Premium Hero Setup */
.premium-hero {
    width: 100%;
    height: 450px;
    background: linear-gradient(135px, #0a0a0c 0%, #050505 100%);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.premium-hero-content {
    max-width: 800px;
}

.premium-title {
    font-size: 4rem;
    font-weight: 900;
    margin: 15px 0;
    text-transform: uppercase;
    font-family: "Inconsolata", monospace;
    letter-spacing: -1px;
}

.premium-subtitle {
    font-size: 1.4rem;
    color: var(--text-alt, #8a8a93);
    line-height: 1.5;
}

/* Centralized header positioning */
.centered-header {
    text-align: center;
    margin: 60px 0 40px 0;
}
.centered-header p {
    color: #8a8a93;
    font-family: "Inconsolata", monospace;
}

/* Perks Matrix Grid Layout */
.premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.perk-card {
    background: var(--card-bg, #0f0f12);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius, 4px);
    padding: 35px 25px;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.perk-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 215, 0, 0.2);
}

/* Spotlight style treatment for middle centerpiece card */
.perk-card.feature-highlight {
    border-color: rgba(255, 215, 0, 0.15);
    background: linear-gradient(to bottom, rgba(255, 215, 0, 0.02), rgba(0,0,0,0));
}

.perk-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.perk-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.perk-desc {
    font-size: 1rem;
    color: #8a8a93;
    line-height: 1.6;
}

/* Dynamic Purchase Box Styling */
.premium-purchase-card {
    background: #0f0f12;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius, 4px);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.purchase-info {
    max-width: 65%;
}

.gold-btn {
    background: #ffd700 !important;
    color: #000 !important;
    font-weight: 900 !important;
    border: none !important;
}
.gold-btn:hover {
    background: #fff !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4) !important;
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
    .premium-grid {
        grid-template-columns: 1fr;
    }
    .premium-purchase-card {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 30px 20px;
    }
    .purchase-info {
        max-width: 100%;
    }
    .premium-title {
        font-size: 2.8rem;
    }
}

/* --- 📋 PREMIUM "...AND MORE" LIST LAYOUT --- */

.sub-perks-header {
    margin-top: 40px;
    margin-bottom: 30px;
}

.premium-list-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 60px;
    width: 100%;
}

.premium-list-item {
    display: flex;
    align-items: center;
    background: var(--card-bg, #0f0f12);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius, 4px);
    padding: 18px 25px;
    gap: 20px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.premium-list-item:hover {
    border-color: rgba(255, 215, 0, 0.15);
    transform: translateX(4px);
}

.list-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
}

.list-item-icon i {
    font-size: 1.5rem;
    color: #ffd700;
}

.list-item-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.list-item-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    font-family: "Inconsolata", monospace;
    letter-spacing: 0.5px;
}

.list-item-content p {
    font-size: 0.95rem;
    color: var(--text-alt, #8a8a93);
    margin: 0;
    line-height: 1.4;
}

/* Mobile Adjustments for stacked elements */
@media (max-width: 600px) {
    .premium-list-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 12px;
    }
    .premium-list-item:hover {
        transform: translateY(-2px);
    }
}