/*
Theme Name: Sian Casino Phantom
Theme URI: https://시안카지노.com
Author: Sian Casino Architect
Description: Zero-Trust Architecture based Authority Branding Theme
Version: 1.2.1
*/

:root {
    --qx9z2-bg: #030712;
    --qx9z2-accent: #00FFFF;
    --qx9z2-accent-dim: rgba(0, 255, 255, 0.3);
    --qx9z2-text: #F8F9FA;
    --qx9z2-dim: rgba(248, 249, 250, 0.6);
    --qx9z2-glass: rgba(0, 255, 255, 0.03);
    --qx9z2-border: rgba(0, 255, 255, 0.1);
    --qx9z2-header-h: 85px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--qx9z2-bg);
    color: var(--qx9z2-text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    background-image: 
        linear-gradient(var(--qx9z2-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--qx9z2-border) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.02) 0%, transparent 80%);
    pointer-events: none;
    z-index: 0;
}

#qx9z2_wrapper {
    position: relative;
    width: 100%;
    z-index: 1;
    padding-top: var(--qx9z2-header-h);
}

#qx9z2_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--qx9z2-header-h);
    z-index: 9999;
    background: rgba(3, 7, 18, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--qx9z2-border);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
}

.qx9z2_nav_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.qx9z2_logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.qx9z2_logo_text {
    fill: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 950;
    font-size: 22px;
    letter-spacing: 2px;
}

.qx9z2_menu_list {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.qx9z2_menu_list a {
    color: var(--qx9z2-dim);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    position: relative;
}

.qx9z2_menu_list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--qx9z2-accent);
    transition: 0.3s;
    box-shadow: 0 0 10px var(--qx9z2-accent);
}

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

.qx9z2_menu_list a:hover::after {
    width: 100%;
}

.qx9z2_mobile_toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10001;
}

.qx9z2_burger_line {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--qx9z2-accent);
    margin: 6px 0;
    transition: 0.4s;
    box-shadow: 0 0 5px var(--qx9z2-accent);
}

.qx9z2_mobile_toggle.active .qx9z2_burger_line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.qx9z2_mobile_toggle.active .qx9z2_burger_line:nth-child(2) { opacity: 0; }
.qx9z2_mobile_toggle.active .qx9z2_burger_line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.qx9z2_mobile_overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(3, 7, 18, 0.98);
    backdrop-filter: blur(25px);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.6s cubic-bezier(0.85, 0, 0.15, 1);
}

.qx9z2_mobile_overlay.active {
    right: 0;
}

.qx9z2_mobile_menu {
    list-style: none;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.qx9z2_mobile_menu li {
    margin: 1.5rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s;
}

.qx9z2_mobile_overlay.active .qx9z2_mobile_menu li {
    opacity: 1;
    transform: translateY(0);
}

.qx9z2_mobile_menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
    display: block;
    word-break: break-all;
}

.qx9z2_hero {
    min-height: calc(100vh - var(--qx9z2-header-h));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: clamp(40px, 8vh, 80px) 20px;
}

.qx9z2_hero_title {
    font-size: clamp(2.5rem, 10vw, 6.5rem);
    font-weight: 950;
    letter-spacing: -2px;
    line-height: 1.1;
    background: linear-gradient(to bottom, #fff 30%, var(--qx9z2-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.2));
    text-align: center;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.qx9z2_section {
    padding: clamp(60px, 8vh, 120px) 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.qx9z2_asymmetric_grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.qx9z2_text_block h2 {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    word-break: keep-all;
    line-height: 1.2;
}

.qx9z2_text_block h2::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: var(--qx9z2-accent);
    box-shadow: 0 0 15px var(--qx9z2-accent);
}

.qx9z2_text_block p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--qx9z2-dim);
    margin-bottom: 1.8rem;
    text-align: justify;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.qx9z2_terminal {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--qx9z2-border);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: clamp(15px, 3vw, 30px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    width: 100%;
    overflow-x: hidden;
}

.qx9z2_bar_chart {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--qx9z2-border);
    padding: clamp(20px, 5vw, 40px);
    border-radius: 20px;
    width: 100%;
    overflow: hidden;
}

.qx9z2_btn_routing {
    display: inline-block;
    padding: clamp(1rem, 3vw, 2rem) clamp(2rem, 6vw, 5rem);
    background: linear-gradient(135deg, var(--qx9z2-accent) 0%, #00b3b3 100%);
    color: #000;
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-weight: 950;
    text-transform: uppercase;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 100%;
    word-break: keep-all;
}

.qx9z2_vip_toast {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(3, 7, 18, 0.95);
    border-left: 3px solid var(--qx9z2-accent);
    padding: 12px 20px;
    border-radius: 0 8px 8px 0;
    font-size: 0.85rem;
    color: var(--qx9z2-text);
    z-index: 1000;
    animation: qx9z2_toast_in 8s infinite;
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(5px);
    max-width: calc(100% - 40px);
}

@keyframes qx9z2_toast_in {
    0% { transform: translateX(-30px); opacity: 0; }
    10%, 90% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(-30px); opacity: 0; }
}

@media (max-width: 1024px) {
    :root { --qx9z2-header-h: 70px; }
    .qx9z2_menu_list { display: none; }
    .qx9z2_mobile_toggle { display: block; }
    .qx9z2_asymmetric_grid { 
        grid-template-columns: 1fr; 
        gap: 40px; 
    }
}

@media (max-width: 768px) {
    .qx9z2_section { padding: 50px 20px; }
    .qx9z2_text_block h2 { margin-bottom: 1.5rem; }
    .qx9z2_text_block h2::before { width: 40px; height: 3px; }
    .qx9z2_main_cta_wrap { padding: 60px 0; }
}

@media (max-width: 480px) {
    .qx9z2_hero { padding: 100px 15px 40px; }
    .qx9z2_btn_routing { width: 100%; border-radius: 12px; }
    .qx9z2_vip_toast { left: 10px; bottom: 10px; width: calc(100% - 20px); }
}
.qx9z2_cta_anchor {
    display: inline-block;
    padding: 16px 45px;
    background: var(--qx9z2-glass);
    color: var(--qx9z2-accent);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-decoration: none;
    border: 1px solid var(--qx9z2-accent);
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.15), inset 0 0 10px rgba(0, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 100%;
    word-break: keep-all;
    white-space: nowrap;
}

.qx9z2_cta_anchor:hover {
    background: var(--qx9z2-accent);
    color: var(--qx9z2-bg);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    transform: translateY(-4px) scale(1.02);
}

@media (max-width: 768px) {
    .qx9z2_cta_anchor {
        padding: 14px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .qx9z2_cta_anchor {
        padding: 14px 20px;
        font-size: 0.95rem;
        letter-spacing: 1px;
        width: 100%;
        text-align: center;
    }
}
@media (max-width: 768px) {
    .qx9z2_text_block h2 {
        font-size: clamp(2rem, 8vw, 2.5rem) !important;
        word-break: break-word !important; 
        overflow-wrap: break-word !important;
        white-space: normal !important;
    }
}

.qx9z2_bar_chart {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 250px !important;
    padding-top: 30px;
}

.qx9z2_bar {
    width: 15%;
    background: linear-gradient(to top, rgba(0,255,255,0.1), var(--qx9z2-accent));
    border-radius: 4px 4px 0 0;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    animation: qx9z2_pulse_bar 2s infinite alternate ease-in-out;
}

.qx9z2_bar:nth-child(2) { animation-delay: 0.4s; }
.qx9z2_bar:nth-child(3) { animation-delay: 0.8s; }
.qx9z2_bar:nth-child(4) { animation-delay: 1.2s; }

@keyframes qx9z2_pulse_bar {
    0% { height: 40% !important; opacity: 0.5; filter: brightness(0.7); }
    100% { height: 95% !important; opacity: 1; filter: brightness(1.3); }
}