/* ============================================
   FORTUNE RABBIT — Core Stylesheet
   Aesthetic: Playful Oriental Pastel
   Colors: Pink, Orange, Yellow, Soft Pastels
   No Border Radius Policy
   ============================================ */

/* === CSS Custom Properties === */
:root {
    /* Primary Palette - Fortune Rabbit Colors */
    --xr-pink-deep: #E91E8C;
    --xr-pink-core: #FF69B4;
    --xr-pink-soft: #FFB6C1;
    
    /* Orange Spectrum */
    --xr-orange-deep: #FF6B35;
    --xr-orange-core: #FFA500;
    --xr-orange-light: #FFB84D;
    --xr-orange-pale: #FFE4B5;
    
    /* Yellow/Gold */
    --xr-yellow-core: #FFD700;
    --xr-yellow-light: #FFEB3B;
    --xr-yellow-pale: #FFF9C4;
    
    /* Accent - Carrot Green */
    --xr-green-accent: #4CAF50;
    
    /* Neutrals */
    --xr-void-absolute: #0D0D12;
    --xr-void-deep: #12121A;
    --xr-void-soft: #1A1A25;
    --xr-void-muted: #242435;
    --xr-smoke-dark: #353548;
    --xr-smoke-mid: #5A5A70;
    --xr-smoke-light: #8A8AA0;
    --xr-cloud-dim: #B8B8D0;
    --xr-cloud-bright: #E8E8F5;
    --xr-pure-white: #FFFFFF;
    
    /* Typography */
    --xr-font-display: 'Cinzel', Georgia, serif;
    --xr-font-body: 'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing Scale */
    --xr-space-xs: 0.25rem;
    --xr-space-sm: 0.5rem;
    --xr-space-md: 1rem;
    --xr-space-lg: 1.5rem;
    --xr-space-xl: 2rem;
    --xr-space-2xl: 3rem;
    --xr-space-3xl: 4rem;
    --xr-space-4xl: 6rem;
    
    /* Transitions */
    --xr-ease-swift: 0.2s ease;
    --xr-ease-smooth: 0.3s ease;
    --xr-ease-elegant: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --xr-shadow-subtle: 0 2px 8px rgba(0, 0, 0, 0.3);
    --xr-shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.4);
    --xr-shadow-bold: 0 8px 32px rgba(0, 0, 0, 0.5);
    --xr-shadow-gold: 0 0 20px rgba(255, 215, 0, 0.3);
}

/* === Reset & Base === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body.xr_canvas {
    font-family: var(--xr-font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--xr-cloud-bright);
    background: var(--xr-void-deep);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.xr_menu_lock {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

menu, ul {
    list-style: none;
}

/* === Disclaimer Banner === */
.zn_disclaimer_veil {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(180deg, var(--xr-void-absolute) 0%, var(--xr-void-deep) 100%);
    border-top: 1px solid var(--xr-orange-deep);
    padding: var(--xr-space-sm) var(--xr-space-md);
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--xr-ease-elegant), opacity var(--xr-ease-smooth), visibility var(--xr-ease-smooth);
}

.zn_disclaimer_veil.zn_visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.zn_disclaimer_vessel {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--xr-space-md);
    flex-wrap: wrap;
}

.zn_disclaimer_content {
    display: flex;
    align-items: center;
    gap: var(--xr-space-sm);
    flex: 1;
    min-width: 0;
}

.zn_age_badge {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--xr-pink-deep);
    color: var(--xr-pure-white);
    font-weight: 700;
    font-size: 0.75rem;
}

.zn_disclaimer_text {
    font-size: 0.75rem;
    color: var(--xr-smoke-light);
    line-height: 1.4;
}

.zn_accept_trigger {
    flex-shrink: 0;
    padding: var(--xr-space-xs) var(--xr-space-lg);
    background: linear-gradient(135deg, var(--xr-orange-core) 0%, var(--xr-yellow-core) 100%);
    color: var(--xr-void-absolute);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background var(--xr-ease-swift), transform var(--xr-ease-swift);
}

.zn_accept_trigger:hover {
    background: linear-gradient(135deg, var(--xr-yellow-core) 0%, var(--xr-orange-light) 100%);
    transform: translateY(-1px);
}

/* === Header / Masthead === */
.qm_masthead {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, var(--xr-void-absolute) 0%, rgba(10, 10, 15, 0.95) 100%);
    border-bottom: 1px solid var(--xr-smoke-dark);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.qm_navigation_frame {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--xr-space-md) var(--xr-space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--xr-space-lg);
}

.qm_brand_anchor {
    flex-shrink: 0;
    display: block;
    transition: opacity var(--xr-ease-swift);
}

.qm_brand_anchor:hover {
    opacity: 0.85;
}

.qm_brand_emblem {
    height: 40px;
    width: auto;
}

.qm_links_assembly {
    display: none;
    align-items: center;
    gap: var(--xr-space-xl);
}

.qm_link_unit {
    position: relative;
}

.qm_nav_anchor {
    display: block;
    padding: var(--xr-space-sm) 0;
    font-family: var(--xr-font-display);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--xr-cloud-dim);
    transition: color var(--xr-ease-swift);
}

.qm_nav_anchor::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--xr-orange-core);
    transition: width var(--xr-ease-smooth);
}

.qm_nav_anchor:hover {
    color: var(--xr-orange-core);
}

.qm_nav_anchor:hover::after {
    width: 100%;
}

.qm_cta_jewel {
    flex-shrink: 0;
    display: inline-block;
    padding: var(--xr-space-sm) var(--xr-space-xl);
    background: linear-gradient(135deg, var(--xr-pink-deep) 0%, var(--xr-orange-deep) 50%, var(--xr-pink-deep) 100%);
    background-size: 200% 200%;
    color: var(--xr-pure-white);
    font-family: var(--xr-font-display);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid var(--xr-orange-core);
    transition: background-position var(--xr-ease-smooth), box-shadow var(--xr-ease-swift);
    animation: xr_shimmer 3s ease infinite;
}

.qm_cta_jewel:hover {
    background-position: 100% 100%;
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.4);
}

@keyframes xr_shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Burger Menu */
.qm_burger_toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    padding: 0;
}

.qm_burger_line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--xr-orange-core);
    transition: transform var(--xr-ease-smooth), opacity var(--xr-ease-swift);
}

.qm_burger_toggle.qm_burger_active .qm_burger_line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.qm_burger_toggle.qm_burger_active .qm_burger_line:nth-child(2) {
    opacity: 0;
}

.qm_burger_toggle.qm_burger_active .qm_burger_line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.qm_mobile_curtain {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--xr-void-deep);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--xr-ease-smooth), visibility var(--xr-ease-smooth);
}

.qm_mobile_curtain.qm_curtain_open {
    opacity: 1;
    visibility: visible;
}

.qm_mobile_links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: var(--xr-space-2xl);
}

.qm_mobile_anchor {
    font-family: var(--xr-font-display);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--xr-cloud-dim);
    transition: color var(--xr-ease-swift);
}

.qm_mobile_anchor:hover {
    color: var(--xr-orange-core);
}

/* === Main Content === */
.xr_realm {
    padding-top: 73px;
}

/* === Hero Section === */
.vm_hero_sanctum {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--xr-space-4xl) var(--xr-space-lg);
    background: linear-gradient(180deg, var(--xr-void-deep) 0%, var(--xr-void-soft) 50%, var(--xr-void-deep) 100%);
    overflow: hidden;
}

.vm_hero_sanctum::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(233, 30, 140, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 165, 0, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.vm_hero_sanctum::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 165, 0, 0.04) 0%, transparent 70%);
    pointer-events: none;
    animation: xr_pulse_glow 4s ease-in-out infinite;
}

@keyframes xr_pulse_glow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.vm_hero_core {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
}

.vm_prime_title {
    font-family: var(--xr-font-display);
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--xr-orange-core) 0%, var(--xr-yellow-core) 50%, var(--xr-orange-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 10px rgba(255, 165, 0, 0.3));
    animation: xr_title_reveal 1s ease forwards;
}

@keyframes xr_title_reveal {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* === Intro Text === */
.kf_intro_chamber {
    padding: var(--xr-space-3xl) var(--xr-space-lg);
    background: var(--xr-void-soft);
    border-top: 1px solid var(--xr-smoke-dark);
    border-bottom: 1px solid var(--xr-smoke-dark);
}

.kf_intro_prose {
    max-width: 800px;
    margin: 0 auto;
}

.kf_paragraph_main {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--xr-cloud-dim);
    text-align: center;
}

/* === Demo Section === */
.pw_demo_arena {
    padding: var(--xr-space-4xl) var(--xr-space-lg);
    background: linear-gradient(180deg, var(--xr-void-deep) 0%, var(--xr-void-muted) 50%, var(--xr-void-deep) 100%);
}

.pw_demo_stage {
    max-width: 900px;
    margin: 0 auto;
}

.pw_game_frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    background: var(--xr-void-absolute);
    border: 2px solid var(--xr-orange-deep);
    overflow: hidden;
}

.pw_frame_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--xr-pink-deep) 0%, var(--xr-void-absolute) 100%);
    z-index: 2;
    transition: opacity var(--xr-ease-elegant), visibility var(--xr-ease-elegant);
}

.pw_frame_overlay.pw_overlay_hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.pw_preview_art {
    max-width: 60%;
    max-height: 80%;
    object-fit: contain;
}

.pw_game_embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
}

.pw_action_bar {
    display: flex;
    justify-content: center;
    gap: var(--xr-space-md);
    margin-top: var(--xr-space-lg);
}

.pw_demo_trigger,
.pw_play_trigger {
    display: inline-block;
    padding: var(--xr-space-md) var(--xr-space-2xl);
    font-family: var(--xr-font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all var(--xr-ease-smooth);
}

.pw_demo_trigger {
    background: transparent;
    color: var(--xr-orange-core);
    border: 2px solid var(--xr-orange-deep);
}

.pw_demo_trigger:hover {
    background: var(--xr-orange-deep);
    color: var(--xr-pure-white);
    border-color: var(--xr-orange-core);
}

.pw_play_trigger {
    background: linear-gradient(135deg, var(--xr-pink-deep) 0%, var(--xr-orange-deep) 100%);
    color: var(--xr-pure-white);
    border: 2px solid var(--xr-orange-core);
}

.pw_play_trigger:hover {
    background: linear-gradient(135deg, var(--xr-orange-deep) 0%, var(--xr-pink-core) 100%);
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.4);
}

/* === Casino Gallery === */
.ht_casino_gallery {
    padding: var(--xr-space-4xl) var(--xr-space-lg);
    background: var(--xr-void-soft);
}

.ht_showcase_grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--xr-space-lg);
}

.ht_brand_plate {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: var(--xr-space-lg);
    padding: var(--xr-space-lg);
    background: linear-gradient(90deg, var(--xr-void-muted) 0%, var(--xr-void-deep) 50%, var(--xr-void-muted) 100%);
    border: 1px solid var(--xr-smoke-dark);
    transition: border-color var(--xr-ease-swift), box-shadow var(--xr-ease-swift);
}

.ht_brand_plate:hover {
    border-color: var(--xr-orange-deep);
    box-shadow: inset 0 0 30px rgba(255, 165, 0, 0.05);
}

.ht_plate_emblem {
    flex-shrink: 0;
}

.ht_casino_mark {
    width: 100px;
    height: auto;
}

.ht_plate_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--xr-space-sm);
    text-align: center;
}

.ht_brand_name {
    font-family: var(--xr-font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--xr-pure-white);
}

.ht_bonus_tag {
    display: inline-block;
    padding: var(--xr-space-xs) var(--xr-space-md);
    background: linear-gradient(90deg, var(--xr-orange-deep), var(--xr-yellow-core), var(--xr-orange-deep));
    background-size: 200% 100%;
    color: var(--xr-void-absolute);
    font-size: 0.8125rem;
    font-weight: 600;
    animation: xr_bonus_shimmer 3s linear infinite;
}

@keyframes xr_bonus_shimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.ht_rating_constellation {
    display: flex;
    gap: 2px;
}

.ht_star_icon {
    font-style: normal;
    font-size: 0.875rem;
    color: var(--xr-yellow-core);
}

.ht_engage_jewel {
    flex-shrink: 0;
    display: inline-block;
    padding: var(--xr-space-sm) var(--xr-space-xl);
    background: linear-gradient(135deg, var(--xr-pink-deep) 0%, var(--xr-orange-deep) 100%);
    color: var(--xr-pure-white);
    font-family: var(--xr-font-display);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid var(--xr-orange-core);
    transition: all var(--xr-ease-smooth);
}

.ht_engage_jewel:hover {
    background: linear-gradient(135deg, var(--xr-orange-deep) 0%, var(--xr-pink-core) 100%);
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.5);
}

/* === Content Realm (Placeholder) === */
.yc_content_realm {
    padding: var(--xr-space-4xl) var(--xr-space-lg);
    background: var(--xr-void-deep);
}

/* === Content Styling === */
.yc_content_realm > * {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Content Section Titles (H2) */
.yc_content_realm h2 {
    font-family: var(--xr-font-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    color: var(--xr-pure-white);
    margin-top: var(--xr-space-4xl);
    margin-bottom: var(--xr-space-xl);
    padding-bottom: var(--xr-space-md);
    border-bottom: 2px solid var(--xr-orange-deep);
    position: relative;
}

.yc_content_realm h2::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--xr-yellow-core), var(--xr-orange-core));
}

.yc_content_realm h2:first-child {
    margin-top: 0;
}

/* Content Subsection Titles (H3) */
.yc_content_realm h3 {
    font-family: var(--xr-font-display);
    font-size: clamp(1.125rem, 3vw, 1.375rem);
    font-weight: 600;
    color: var(--xr-orange-light);
    margin-top: var(--xr-space-2xl);
    margin-bottom: var(--xr-space-md);
    padding-left: var(--xr-space-md);
    border-left: 3px solid var(--xr-pink-deep);
}

/* Paragraphs */
.yc_content_realm p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--xr-cloud-dim);
    margin-bottom: var(--xr-space-lg);
}

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

/* Lists */
.yc_content_realm ul {
    margin: var(--xr-space-lg) auto var(--xr-space-xl);
    padding: var(--xr-space-lg) var(--xr-space-xl);
    background: linear-gradient(135deg, var(--xr-void-soft) 0%, var(--xr-void-muted) 100%);
    border-left: 3px solid var(--xr-orange-core);
    list-style: none;
}

.yc_content_realm ul li {
    position: relative;
    padding-left: var(--xr-space-lg);
    margin-bottom: var(--xr-space-sm);
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--xr-cloud-bright);
}

.yc_content_realm ul li:last-child {
    margin-bottom: 0;
}

.yc_content_realm ul li::before {
    content: '◆';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--xr-yellow-core);
    font-size: 0.625rem;
    line-height: 1.7;
    transform: translateY(4px);
}

/* Tables */
.yc_content_realm table {
    width: 100%;
    margin: var(--xr-space-xl) auto;
    border-collapse: collapse;
    background: var(--xr-void-soft);
    border: 1px solid var(--xr-smoke-dark);
    overflow: hidden;
}

.yc_content_realm table tr {
    border-bottom: 1px solid var(--xr-smoke-dark);
    transition: background var(--xr-ease-swift);
}

.yc_content_realm table tr:last-child {
    border-bottom: none;
}

.yc_content_realm table tr:hover {
    background: var(--xr-void-muted);
}

.yc_content_realm table td {
    padding: var(--xr-space-md) var(--xr-space-lg);
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--xr-cloud-dim);
    vertical-align: top;
}

.yc_content_realm table td:first-child {
    font-weight: 600;
    color: var(--xr-orange-light);
    width: 40%;
    background: rgba(255, 107, 53, 0.05);
    border-right: 1px solid var(--xr-smoke-dark);
}

.yc_content_realm table td:last-child {
    width: 60%;
}

/* === Feature Cards - Special Content Blocks === */
.yc_feature_mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--xr-space-lg);
    margin: var(--xr-space-xl) auto;
}

.yc_feature_tile {
    padding: var(--xr-space-xl);
    background: linear-gradient(180deg, var(--xr-void-muted) 0%, var(--xr-void-soft) 100%);
    border: 1px solid var(--xr-smoke-dark);
    border-top: 3px solid var(--xr-orange-core);
    transition: transform var(--xr-ease-smooth), box-shadow var(--xr-ease-smooth);
}

.yc_feature_tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.1);
}

.yc_feature_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: var(--xr-space-md);
    background: linear-gradient(135deg, var(--xr-pink-deep), var(--xr-orange-deep));
    font-size: 1.5rem;
}

.yc_feature_label {
    font-family: var(--xr-font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--xr-pure-white);
    margin-bottom: var(--xr-space-sm);
}

.yc_feature_desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--xr-smoke-light);
}

/* === Info Box - Highlighted Information === */
.yc_info_vessel {
    margin: var(--xr-space-xl) auto;
    padding: var(--xr-space-xl);
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.08) 0%, rgba(255, 107, 53, 0.08) 100%);
    border: 1px solid var(--xr-pink-deep);
    position: relative;
}

.yc_info_vessel::before {
    content: '💡';
    position: absolute;
    top: -12px;
    left: var(--xr-space-lg);
    background: var(--xr-void-deep);
    padding: 0 var(--xr-space-sm);
    font-size: 1.25rem;
}

.yc_info_vessel p {
    margin-bottom: 0;
    color: var(--xr-cloud-bright);
}

/* === Steps / Process Block === */
.yc_process_flow {
    margin: var(--xr-space-xl) auto;
    counter-reset: step-counter;
}

.yc_process_step {
    display: flex;
    gap: var(--xr-space-lg);
    margin-bottom: var(--xr-space-lg);
    padding: var(--xr-space-lg);
    background: var(--xr-void-soft);
    border: 1px solid var(--xr-smoke-dark);
    transition: border-color var(--xr-ease-swift);
}

.yc_process_step:hover {
    border-color: var(--xr-orange-deep);
}

.yc_process_step::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--xr-orange-deep), var(--xr-yellow-core));
    color: var(--xr-void-absolute);
    font-family: var(--xr-font-display);
    font-size: 1.125rem;
    font-weight: 700;
}

.yc_process_content {
    flex: 1;
}

.yc_process_title {
    font-family: var(--xr-font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--xr-pure-white);
    margin-bottom: var(--xr-space-xs);
}

.yc_process_desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--xr-smoke-light);
}

/* === Stats Grid === */
.yc_stats_constellation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--xr-space-md);
    margin: var(--xr-space-xl) auto;
}

.yc_stat_orb {
    padding: var(--xr-space-lg);
    background: var(--xr-void-muted);
    border: 1px solid var(--xr-smoke-dark);
    text-align: center;
    transition: border-color var(--xr-ease-swift), transform var(--xr-ease-swift);
}

.yc_stat_orb:hover {
    border-color: var(--xr-orange-core);
    transform: scale(1.02);
}

.yc_stat_value {
    display: block;
    font-family: var(--xr-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--xr-yellow-core), var(--xr-orange-core));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--xr-space-xs);
}

.yc_stat_label {
    font-size: 0.8125rem;
    color: var(--xr-smoke-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* === Divider === */
.yc_divider_stream {
    width: 100%;
    max-width: 900px;
    height: 1px;
    margin: var(--xr-space-3xl) auto;
    background: linear-gradient(90deg, transparent, var(--xr-smoke-dark), var(--xr-orange-deep), var(--xr-smoke-dark), transparent);
}

/* === Games Grid (Similar Games) === */
.yc_games_showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--xr-space-lg);
    margin: var(--xr-space-xl) auto;
}

.yc_game_card {
    padding: var(--xr-space-lg);
    background: linear-gradient(180deg, var(--xr-void-muted) 0%, var(--xr-void-soft) 100%);
    border: 1px solid var(--xr-smoke-dark);
    text-align: center;
    transition: all var(--xr-ease-smooth);
}

.yc_game_card:hover {
    border-color: var(--xr-pink-deep);
    box-shadow: 0 0 20px rgba(233, 30, 140, 0.15);
}

.yc_game_icon {
    font-size: 2.5rem;
    margin-bottom: var(--xr-space-sm);
}

.yc_game_name {
    font-family: var(--xr-font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--xr-pure-white);
}

/* === Mobile Content Adjustments === */
@media screen and (max-width: 767px) {
    .yc_content_realm {
        padding: var(--xr-space-2xl) var(--xr-space-md);
    }
    
    .yc_content_realm h2 {
        font-size: 1.375rem;
        margin-top: var(--xr-space-3xl);
    }
    
    .yc_content_realm h3 {
        font-size: 1.125rem;
    }
    
    .yc_content_realm ul {
        padding: var(--xr-space-md);
    }
    
    .yc_content_realm table td {
        display: block;
        width: 100% !important;
        padding: var(--xr-space-sm) var(--xr-space-md);
    }
    
    .yc_content_realm table td:first-child {
        border-right: none;
        border-bottom: 1px solid var(--xr-smoke-dark);
        background: rgba(255, 107, 53, 0.1);
    }
    
    .yc_content_realm table tr {
        display: block;
        margin-bottom: var(--xr-space-sm);
    }
    
    .yc_process_step {
        flex-direction: column;
        gap: var(--xr-space-md);
    }
    
    .yc_stats_constellation {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* === Footer === */
.bf_basement {
    padding: var(--xr-space-2xl) var(--xr-space-lg);
    background: var(--xr-void-absolute);
    border-top: 1px solid var(--xr-smoke-dark);
}

.bf_basement_core {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--xr-space-md);
    text-align: center;
}

.bf_brand_seal {
    opacity: 0.8;
}

.bf_footer_emblem {
    height: 40px;
    width: auto;
}

.bf_copyright_text {
    font-size: 0.8125rem;
    color: var(--xr-smoke-mid);
}

/* EAT Footer Navigation */
.bf_eat_navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--xr-space-md) var(--xr-space-lg);
    margin: var(--xr-space-lg) 0;
    padding: var(--xr-space-lg) 0;
    border-top: 1px solid var(--xr-smoke-dark);
    border-bottom: 1px solid var(--xr-smoke-dark);
}

.bf_eat_link {
    font-size: 0.8125rem;
    color: var(--xr-smoke-light);
    text-decoration: none;
    transition: color var(--xr-ease-swift);
    position: relative;
}

.bf_eat_link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--xr-orange-core);
    transition: width var(--xr-ease-smooth);
}

.bf_eat_link:hover {
    color: var(--xr-orange-core);
}

.bf_eat_link:hover::after {
    width: 100%;
}

/* === Responsive Design === */

/* Tablet */
@media screen and (min-width: 768px) {
    .qm_burger_toggle {
        display: none;
    }
    
    .qm_links_assembly {
        display: flex;
    }
    
    .ht_brand_plate {
        padding: var(--xr-space-xl);
    }
    
    .ht_casino_mark {
        width: 120px;
    }
}

/* Mobile Adjustments */
@media screen and (max-width: 767px) {
    .qm_navigation_frame {
        padding: var(--xr-space-md);
    }
    
    .qm_brand_emblem {
        height: 32px;
    }
    
    .vm_hero_sanctum {
        min-height: 35vh;
        padding: var(--xr-space-3xl) var(--xr-space-md);
    }
    
    .kf_intro_chamber {
        padding: var(--xr-space-2xl) var(--xr-space-md);
    }
    
    .kf_paragraph_main {
        font-size: 1rem;
        text-align: left;
    }
    
    .pw_demo_arena {
        padding: var(--xr-space-2xl) var(--xr-space-md);
    }
    
    .pw_game_frame {
        aspect-ratio: 4 / 3;
    }
    
    .pw_action_bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .pw_demo_trigger,
    .pw_play_trigger {
        text-align: center;
    }
    
    .ht_casino_gallery {
        padding: var(--xr-space-2xl) var(--xr-space-md);
    }
    
    .ht_brand_plate {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: var(--xr-space-md);
        padding: var(--xr-space-lg) var(--xr-space-md);
    }
    
    .ht_plate_info {
        order: 1;
    }
    
    .ht_plate_emblem {
        order: 0;
    }
    
    .ht_engage_jewel {
        order: 2;
        width: 100%;
        text-align: center;
    }
    
    .yc_content_realm {
        padding: var(--xr-space-2xl) var(--xr-space-md);
    }
    
    .bf_basement {
        padding: var(--xr-space-xl) var(--xr-space-md);
    }
    
    .zn_disclaimer_vessel {
        flex-direction: column;
        text-align: center;
        gap: var(--xr-space-sm);
    }
    
    .zn_disclaimer_content {
        flex-direction: column;
    }
    
    .zn_accept_trigger {
        width: 100%;
    }
}

/* Small Mobile */
@media screen and (max-width: 375px) {
    :root {
        font-size: 14px;
    }
    
    .vm_prime_title {
        font-size: 1.5rem;
    }
    
    .ht_bonus_tag {
        font-size: 0.75rem;
        padding: var(--xr-space-xs) var(--xr-space-sm);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --xr-orange-core: #FF8C00;
        --xr-pink-deep: #FF1493;
    }
    
    .ht_brand_plate,
    .pw_game_frame {
        border-width: 3px;
    }
}

/* Print Styles */
@media print {
    .qm_masthead,
    .zn_disclaimer_veil,
    .pw_demo_arena,
    .qm_mobile_curtain {
        display: none !important;
    }
    
    body.xr_canvas {
        background: white;
        color: black;
    }
    
    .vm_prime_title {
        color: black;
        text-shadow: none;
    }
}
