/*
Theme Name: Konoha Cyber 2026
Theme URI: https://narutocasino.net
Author: Shadow Coder
Author URI: https://narutocasino.net
Description: High-Performance SEO Theme for Naruto Casino
Version: 2.0.0 (Final Visual Fix)
*/

:root {
    --nz26_primary: #FF4500;
    --nz26_secondary: #1a1a1a;
    --nz26_accent: #00F0FF;
    --nz26_text: #e0e0e0;
    --nz26_bg: #050505;
    --nz26_panel: #111111;
    --nz26_glass: rgba(15, 15, 15, 0.9);
    --nz26_glass_border: rgba(255, 69, 0, 0.3);
}

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

body {
    background-color: var(--nz26_bg);
    color: var(--nz26_text);
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
}

.nz26_container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.nz26_text_center { text-align: center; }

.nz26_header_wrap {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--nz26_primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nz26_nav_grid { display: flex; justify-content: space-between; align-items: center; }

.nz26_logo_svg { 
    height: 40px; 
    width: auto; 
    fill: var(--nz26_primary); 
    filter: drop-shadow(0 0 5px var(--nz26_primary)); 
}

.nz26_menu ul { display: flex; list-style: none; gap: 25px; margin: 0; padding: 0; }
.nz26_menu a { color: var(--nz26_text); text-decoration: none; font-weight: 700; font-size: 0.95rem; transition: all 0.3s; }
.nz26_menu a:hover { color: var(--nz26_primary); text-shadow: 0 0 8px var(--nz26_primary); }

.nz26_mobile_trigger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 2000;
}

.nz26_mobile_trigger span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--nz26_primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nz26_mobile_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    z-index: 1999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

.nz26_mobile_overlay.active { transform: translateX(0); }
.nz26_mobile_overlay ul { list-style: none; text-align: center; padding: 0; }
.nz26_mobile_overlay li { margin: 25px 0; opacity: 0; transform: translateY(20px); transition: all 0.3s ease; }
.nz26_mobile_overlay.active li { opacity: 1; transform: translateY(0); }
.nz26_mobile_overlay a {
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.nz26_mobile_overlay a:hover { color: var(--nz26_accent); }

.nz26_section_wrap { padding: 80px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }

.nz26_section_title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--nz26_accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
    margin-bottom: 40px;
    text-align: center;
}

.nz26_shuriken_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.nz26_blade_card {
    background: var(--nz26_glass);
    border: 1px solid var(--nz26_glass_border);
    padding: 30px;
    border-radius: 12px;
}

.nz26_blade_icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    fill: var(--nz26_primary);
    transition: transform 0.6s ease;
}

.nz26_blade_card:hover .nz26_blade_icon { transform: rotate(180deg); }

.nz26_blade_title {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    font-weight: 700;
}

.nz26_blade_text {
    font-size: 1rem;
    color: #bbb;
    text-align: justify;
    line-height: 1.6;
}

.nz26_hero_section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #111 0%, #000 100%);
    position: relative;
    overflow: hidden;
}

.nz26_hero_bg_art { position: absolute; width: 100%; height: 100%; z-index: 1; opacity: 0.4; }
.nz26_hero_content { position: relative; z-index: 2; text-align: center; width: 100%; padding: 0 20px; }

.nz26_glitch_title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 4px 4px 0px var(--nz26_primary);
    line-height: 1.2;
}

.nz26_hero_btn {
    display: inline-block;
    margin-top: 30px;
    padding: 18px 50px;
    background: var(--nz26_primary);
    color: #fff;
    font-weight: 900;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 4px;
    box-shadow: 0 0 20px var(--nz26_primary);
    transition: all 0.3s;
    border: 1px solid #fff;
}
.nz26_hero_btn:hover { transform: scale(1.05); box-shadow: 0 0 40px var(--nz26_primary); }

.nz26_article_panel {
    background: var(--nz26_glass);
    border: 1px solid var(--nz26_glass_border);
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.nz26_sub_header {
    background: linear-gradient(180deg, #111 0%, #050505 100%);
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid var(--nz26_glass_border);
}

.nz26_sub_title { font-size: 2.5rem; color: var(--nz26_accent); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 2px; }

.nz26_article_body { font-size: 1.1rem; color: #ccc; line-height: 1.8; }
.nz26_article_body h2 { color: var(--nz26_accent); margin: 40px 0 20px; border-left: 5px solid var(--nz26_primary); padding-left: 15px; font-size: 1.8rem; }
.nz26_article_body p { margin-bottom: 20px; text-align: justify; }

.nz26_trap_trigger {
    background: linear-gradient(135deg, #ff0000 0%, #ff4500 100%);
    border: 2px solid #fff;
    color: #fff;
    padding: 20px 60px;
    font-size: 1.5rem;
    font-weight: 900;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: 0 0 20px #ff0000;
    animation: nz26_pulse 2s infinite;
    text-transform: uppercase;
    width: 100%;
    max-width: 400px;
}

@keyframes nz26_pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(255, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

.nz26_footer { background: #050505; padding: 60px 0 120px; border-top: 2px solid #222; }
.nz26_cert_row { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 40px; }
.nz26_cert_badge {
    border: 1px solid #444; padding: 10px; background: #111; color: #888;
    display: flex; align-items: center; font-size: 0.8rem;
}
.nz26_cert_badge svg { width: 20px; height: 20px; margin-right: 5px; fill: currentColor; }

.nz26_system_grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

.nz26_mobile_dock {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(10, 10, 10, 0.98);
    border-top: 2px solid var(--nz26_primary);
    display: none;
    justify-content: space-around;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.8);
    padding-bottom: 5px;
}

@media (max-width: 900px) {
    .nz26_menu { display: none; }
    .nz26_mobile_trigger { display: flex; }
    .nz26_mobile_overlay { display: flex; }
    
    .nz26_shuriken_grid { grid-template-columns: 1fr; gap: 20px; }
    .nz26_system_grid { grid-template-columns: 1fr; }
    
    .nz26_glitch_title { font-size: 2.2rem; }
    .nz26_section_title { font-size: 1.8rem; }
    
    .nz26_mobile_dock { display: flex; }
    
    body { padding-bottom: 80px; }
}