/* Vipsta Casino Stylesheet 2026 */
:root {
  --bg: #0a0e1a;
  --surface: #121829;
  --surface-light: #1c253d;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --accent: #f59e0b;
  --accent-hover: #d97706;
  --border: #24314d;
  --success: #10b981;
  --danger: #ef4444;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-heading: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.75rem; margin-top: 2rem; border-bottom: 2px solid var(--border); padding-bottom: 0.5rem; }
h3 { font-size: 1.35rem; margin-top: 1.5rem; }

p, ul, ol {
  margin-bottom: 1.2rem;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Notice */
.site-header {
  background-color: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-notice {
  background-color: #1a2236;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.brand-logo img {
  height: 42px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease;
}

.brand-logo:hover img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

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

.btn-primary:hover {
  background-color: var(--accent-hover);
  color: #000;
}

.btn-secondary {
  background-color: var(--surface-light);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background-color: var(--border);
}

/* Hero Section */
.hero {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid var(--border);
}

.hero-showcase, .hero-promo-block, .hero-banner {
  background-color: var(--surface-light);
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(245, 158, 11, 0.15);
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.35rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-offer {
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Quick Actions NavBoost Grid */
.quick-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.quick-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.2rem;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}

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

.quick-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.quick-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

/* Trust Badge */
.trust-badge {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--success);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin: 2rem 0;
}

.trust-icon {
  font-size: 2rem;
  color: var(--success);
}

/* Answer First Box */
.answer-first {
  background-color: rgba(28, 37, 61, 0.6);
  border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  font-size: 1.05rem;
}

/* Content & Tables */
.content-section {
  padding: 2.5rem 0;
}

.table-responsive {
  overflow-x: auto;
  margin: 1.5rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--surface);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

th, td {
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  background-color: var(--surface-light);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
}

tr:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

/* Games Grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.game-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  text-align: center;
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(245, 158, 11, 0.2);
}

.game-card a[href] {
  display: block;
  position: relative;
  overflow: hidden;
  background-color: #0b1120;
}

.game-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

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

.game-card h3, .game-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0.75rem 0.6rem 0.3rem;
  line-height: 1.3;
}

.game-card .game-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 0 0.75rem;
  margin-bottom: 0.85rem;
  line-height: 1.45;
  flex-grow: 1;
}

.game-card .cta-btn {
  margin: 0 0.75rem 0.85rem;
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.game-card:hover .cta-btn {
  background: var(--accent);
  color: #000;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
}

/* Pros & Cons */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.pros-box, .cons-box {
  background-color: var(--surface);
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.pros-box { border-top: 4px solid var(--success); }
.cons-box { border-top: 4px solid var(--danger); }

.pros-box ul, .cons-box ul {
  list-style: none;
}

.pros-box li::before { content: "✔ "; color: var(--success); font-weight: bold; }
.cons-box li::before { content: "✖ "; color: var(--danger); font-weight: bold; }
.pros-box li, .cons-box li { margin-bottom: 0.6rem; }

/* Interactive Calculator */
.calculator-box {
  background-color: var(--surface);
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.2rem;
}

.calc-input-group label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.calc-input-group input, .calc-input-group select {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--surface-light);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 6px;
  font-size: 1rem;
}

.calc-result {
  background-color: var(--surface-light);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--border);
}

.calc-result-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
}

/* Steps List */
.steps-list {
  list-style: none;
  counter-reset: step-counter;
  margin: 2rem 0;
}

.steps-list li {
  counter-increment: step-counter;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.2rem;
  margin-bottom: 1rem;
}

.steps-list li::before {
  content: counter(step-counter);
  background-color: var(--accent);
  color: #000;
  font-weight: 800;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* FAQ */
.faq-item {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 1rem;
  padding: 1.25rem 1.5rem;
}

.faq-item h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
  color: var(--text);
}

.faq-item p {
  margin-bottom: 0;
  color: var(--text-muted);
}

/* Author Box */
.author-box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 3rem 0 1.5rem;
}

.author-avatar {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  object-fit: cover;
  flex-shrink: 0;
}

.author-info h4 {
  margin-bottom: 0.2rem;
  font-size: 1.1rem;
}

.author-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Footer */
.site-footer {
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-disclaimer {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0 1.5rem;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.footer-disclaimer .disclaimer-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.footer-disclaimer p {
  margin-bottom: 0.6rem;
}

.footer-disclaimer p:last-child {
  margin-bottom: 0;
}

.footer-disclaimer a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
}

/* ==========================================================================
   MOBILE & RESPONSIVE DESIGN ENHANCEMENTS
   ========================================================================== */

/* Universal Responsive Base */
img {
    max-width: 100%;
    height: auto;
}

button, .cta, a.cta, .hero-play, .cta-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.burger, .menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 1001;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.burger span, .menu-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.site-header.nav-open .burger span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
    background-color: var(--accent);
}

.site-header.nav-open .burger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.site-header.nav-open .burger span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
    background-color: var(--accent);
}

.sticky-cta {
    display: none;
}

@media (max-width: 899px) {
    body {
        padding-bottom: calc(74px + env(safe-area-inset-bottom, 0px));
    }

    .nav-container {
        padding: 0.75rem 1rem;
    }

    .brand-logo img {
        height: 35px;
        max-width: 120px;
    }

    .site-header .btn-primary {
        padding: 0.5rem 0.95rem;
        font-size: 0.82rem;
        min-height: 40px;
    }

    .burger, .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(18, 24, 41, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 2px solid var(--accent);
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.7);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.5rem 0 1rem;
        list-style: none;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.35s ease, opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
    }

    .site-header.nav-open .nav-links {
        max-height: 420px;
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: flex;
        align-items: center;
        padding: 0.9rem 1.5rem;
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--text);
        transition: background-color 0.2s, color 0.2s, padding-left 0.2s;
    }

    .nav-links a:hover, .nav-links a.active {
        background-color: rgba(245, 158, 11, 0.12);
        color: var(--accent);
        padding-left: 1.8rem;
    }

    /* Sticky Bottom CTA Bar */
    .sticky-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        background: rgba(15, 23, 42, 0.96);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-top: 1px solid rgba(245, 158, 11, 0.4);
        box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.6);
        padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
    }

    .sticky-cta > div {
        line-height: 1.25;
    }

    .sticky-cta strong {
        font-size: 0.95rem;
        color: var(--accent);
        display: block;
        white-space: nowrap;
    }

    .sticky-cta .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
        font-weight: 800;
        white-space: nowrap;
        min-height: 44px;
        box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
    }
}

@media (min-width: 900px) {
    .burger, .menu-toggle, .nav-toggle {
        display: none;
    }
    .sticky-cta {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.4rem; margin-top: 1.75rem; }
    h3 { font-size: 1.18rem; }

    /* Hero & Showcase on Mobile */
    .hero {
        padding: 1.75rem 0 1.5rem;
    }

    .hero-showcase, .hero-banner {
        padding: 1.25rem 0.9rem;
        border-radius: 14px;
        margin-bottom: 1.5rem;
    }

    .showcase-pill, .banner-badge {
        font-size: 0.72rem;
        padding: 5px 12px;
        margin-bottom: 0.85rem;
        letter-spacing: 0.04em;
    }

    .showcase-media, .banner-visual {
        margin-bottom: 1.2rem;
        border-radius: 10px;
    }

    .hero-showcase h1, .hero-banner h1 {
        font-size: clamp(1.35rem, 5vw, 1.75rem);
        margin-bottom: 0.75rem;
    }

    .hero-showcase p, .hero-banner p {
        font-size: 0.92rem;
        line-height: 1.5;
        margin-bottom: 1.25rem;
    }

    .hero-play, a.hero-play, .cta-btn.hero-play {
        width: 100%;
        max-width: 100%;
        font-size: 1rem;
        padding: 14px 20px;
        min-height: 50px;
        letter-spacing: 0.02em;
    }

    .showcase-trust, .banner-reassurance {
        gap: 8px 14px;
        margin-top: 1rem;
        font-size: 0.78rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-image img {
        border-radius: 10px;
    }

    /* Quick Actions Grid on Mobile */
    .quick-actions {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin: 1.5rem 0;
    }

    .quick-card {
        padding: 1rem 0.75rem;
    }

    .quick-card .card-title, .quick-card h4 {
        font-size: 0.95rem;
    }

    .quick-card p {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }

    .quick-card .btn {
        padding: 0.5rem 0.6rem;
        font-size: 0.82rem;
        min-height: 38px;
    }

    /* Games Grid on Mobile */
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin: 1.5rem 0;
    }

    .game-card {
        border-radius: 10px;
        overflow-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
    }

    .game-card img {
        aspect-ratio: 2 / 3;
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .game-card h3, .game-card-title {
        font-size: 0.9rem;
        margin: 0.5rem 0.3rem 0.2rem;
    }

    .game-card .game-desc {
        font-size: 0.75rem;
        padding: 0 0.4rem;
        margin-bottom: 0.6rem;
        line-height: 1.35;
    }

    .game-card .cta-btn {
        margin: 0 0.4rem 0.6rem;
        padding: 0.45rem 0.6rem;
        font-size: 0.8rem;
        min-height: 36px;
    }

    /* Pros & Cons */
    .pros-cons-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pros-box, .cons-box {
        padding: 1.2rem;
    }

    /* Calculator */
    .calculator-box {
        padding: 1.25rem 1rem;
    }

    .calc-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .calc-result {
        padding: 1.2rem;
    }

    .calc-result-number {
        font-size: 1.5rem;
    }

    /* Steps List */
    .steps-list li {
        padding: 1rem;
        gap: 0.85rem;
    }

    .steps-list li::before {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    /* Author Box on Mobile */
    .author-box {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.25rem 1rem;
    }

    .author-info h4, .author-info .card-title {
        font-size: 1.05rem;
    }

    /* Responsive Tables */
    .table-responsive {
        margin: 1rem -1rem;
        padding: 0 1rem;
        width: calc(100% + 2rem);
        -webkit-overflow-scrolling: touch;
    }

    table {
        font-size: 0.85rem;
    }

    th, td {
        padding: 0.75rem 0.85rem;
        white-space: nowrap;
    }

    /* Footer */
    .site-footer {
        padding: 2rem 0 1.5rem;
        margin-top: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 420px) {
    .quick-actions {
        grid-template-columns: 1fr;
    }

    .showcase-trust, .banner-reassurance {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .sticky-cta strong {
        font-size: 0.85rem;
    }

    .sticky-cta .btn {
        padding: 0.5rem 0.85rem;
        font-size: 0.82rem;
    }
}


/* ==========================================================================
   PREMIUM CONVERSION HERO BANNER & MOTIVATING CTA BUTTON
   ========================================================================== */
.hero-showcase, .hero-banner {
    position: relative;
    background: linear-gradient(145deg, #131b2e 0%, #0c1220 100%);
    border: 1px solid rgba(245, 158, 11, 0.35);
    border-radius: 16px;
    padding: 2.2rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5), 0 0 25px rgba(245, 158, 11, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-showcase::before, .hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 20%, rgba(245, 158, 11, 0.12) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
}

.showcase-media, .banner-visual {
    position: relative;
    width: 100%;
    max-width: 950px;
    margin-bottom: 1.6rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.showcase-media img, .banner-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.showcase-media:hover img, .banner-visual:hover img {
    transform: scale(1.02);
}

.showcase-pill, .banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.4);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.2rem;
    z-index: 2;
}

.showcase-body, .banner-content {
    position: relative;
    max-width: 860px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-showcase h1, .hero-banner h1 {
    font-size: clamp(1.8rem, 3.8vw, 2.7rem);
    font-weight: 900;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    letter-spacing: -0.02em;
}

.hero-showcase h1 span.gold-highlight, .hero-banner h1 span.gold-highlight {
    background: linear-gradient(135deg, #ffd700 0%, #ff9900 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.hero-showcase p, .hero-banner p {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: #cbd5e1;
    line-height: 1.55;
    margin-bottom: 1.8rem;
    max-width: 720px;
}

/* MOTIVATING CTA BUTTON */
.hero-play, a.hero-play, .cta-btn.hero-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
    color: #0f172a !important;
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 16px 38px;
    min-height: 56px;
    border-radius: 50px;
    text-decoration: none !important;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.45), 0 0 15px rgba(245, 158, 11, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
}

.hero-play::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: ctaShine 3s infinite;
}

@keyframes ctaShine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.hero-play:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.65), 0 0 25px rgba(245, 158, 11, 0.5);
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    color: #050811 !important;
}

.hero-play:active {
    transform: translateY(1px) scale(0.99);
}

.showcase-trust, .banner-reassurance {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-top: 1.2rem;
    font-size: 0.85rem;
    color: #94a3b8;
    z-index: 2;
}

.reassurance-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Accessibility & Hidden Semantic Elements */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
