/*
Theme Name: Gold Wolf Enterprise
Theme URI: https://골드울프.net
Author: Alpha Wolf Syndicate
Author URI: https://골드울프.net
Description: Apex V-Cascade & Gold Vault Masonry Architecture. Designed for the 0.1% High-Roller VVIP Syndicate Sanctuary. Features Generative CSS/SVG Art and Zero-Trust Security Routing.
Version: 1.2.9
License: Proprietary
Text Domain: gold-wolf
Tags: dark, gold, custom-colors, responsive-layout, high-end, accessibility-ready
*/

:root {
    --gwlfx-obsidian: #0B0C10;
    --gwlfx-gold: #D4AF37;
    --gwlfx-gold-deep: #9A7B2C;
    --gwlfx-gold-glow: rgba(212, 175, 55, 0.5);
    --gwlfx-crimson: #E53935;
    --gwlfx-crimson-dark: #B71C1C;
    --gwlfx-white: #FFFFFF;
    --gwlfx-gray-100: #1F232A;
    --gwlfx-gray-200: #161B22;
    --gwlfx-font: 'Inter', 'Noto Sans KR', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

body {
    background-color: var(--gwlfx-obsidian) !important;
    color: var(--gwlfx-white);
    font-family: var(--gwlfx-font);
    overflow-x: hidden;
    line-height: 1.7;
    padding-bottom: 80px;
}

.gwlfx_global_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 12, 16, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.gwlfx_nav_container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gwlfx_brand_logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--gwlfx-gold);
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.gwlfx_logo_svg {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 0 8px var(--gwlfx-gold-glow));
}

.gwlfx_desktop_nav {
    display: flex;
    gap: 35px;
}

.gwlfx_desktop_nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: 0.3s;
    position: relative;
}

.gwlfx_desktop_nav a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gwlfx-gold);
    transition: 0.3s;
}

.gwlfx_desktop_nav a:hover {
    color: var(--gwlfx-gold);
}

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

.gwlfx_mobile_trigger {
    display: none;
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gwlfx-gold);
    border-radius: 4px;
    padding: 8px;
}

.gwlfx_mobile_trigger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gwlfx-gold);
    margin: 5px 0;
    transition: 0.4s;
}

.gwlfx_side_drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: rgba(5, 6, 8, 0.98);
    backdrop-filter: blur(25px);
    z-index: 2000;
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 100px 40px;
    border-left: 1px solid var(--gwlfx-gold);
}

.gwlfx_side_drawer.active {
    right: 0;
}

.gwlfx_drawer_close {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 2.5rem;
    color: var(--gwlfx-gold);
    cursor: pointer;
}

.gwlfx_drawer_menu {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.gwlfx_drawer_menu a {
    color: var(--gwlfx-white);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    padding-left: 15px;
    border-left: 3px solid transparent;
}

.gwlfx_drawer_menu a:hover {
    color: var(--gwlfx-gold);
    border-left: 3px solid var(--gwlfx-gold);
}

.gwlfx_v_cascade_hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: var(--gwlfx-obsidian);
    clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 5%;
}

.gwlfx_lunar_eclipse {
    position: absolute;
    width: clamp(300px, 60vw, 800px);
    height: clamp(300px, 60vw, 800px);
    background: radial-gradient(circle, var(--gwlfx-gold) 0%, transparent 75%);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.25;
    animation: gwlfx_pulse 5s infinite ease-in-out;
}

@keyframes gwlfx_pulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.1); opacity: 0.4; }
}

.gwlfx_hero_content {
    position: relative;
    z-index: 10;
    margin-top: 40px;
}

.gwlfx_hero_content h1 {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 900;
    background: linear-gradient(to bottom, var(--gwlfx-gold), var(--gwlfx-white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    line-height: 1.1;
}

.gwlfx_vault_masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 100px 5%;
}

.gwlfx_masonry_item {
    background: var(--gwlfx-gray-100);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 50px 35px;
    border-radius: 15px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.gwlfx_masonry_item:hover {
    transform: translateY(-10px);
    border-color: var(--gwlfx-gold);
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
}

.gwlfx_cta_btn {
    display: inline-block;
    padding: 22px 55px;
    background: linear-gradient(45deg, var(--gwlfx-crimson), var(--gwlfx-crimson-dark));
    color: white;
    font-weight: 800;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 10px 20px rgba(229, 57, 53, 0.3);
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.gwlfx_cta_btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(229, 57, 53, 0.5);
}

.gwlfx_sticky_tabbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75px;
    background: rgba(11, 12, 16, 0.98);
    backdrop-filter: blur(25px);
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 2000;
    padding-bottom: env(safe-area-inset-bottom);
}

.gwlfx_tab_item {
    text-decoration: none;
    color: var(--gwlfx-white);
    font-size: 11px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.6;
    transition: 0.3s;
    flex: 1;
}

.gwlfx_tab_item.active, .gwlfx_tab_item:hover { opacity: 1; color: var(--gwlfx-gold); }

.gwlfx_barchart_container {
    height: 400px;
    display: flex;
    align-items: flex-end;
    gap: 20px;
    border-bottom: 2px solid #444;
    padding: 40px;
    margin: 40px 0;
    background: #000000 !important;
    border-radius: 12px;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.8);
    width: 100%;
    position: relative;
    z-index: 5;
}

.gwlfx_bar {
    flex: 1;
    background: linear-gradient(to top, var(--gwlfx-gold), #FFF) !important;
    border-radius: 4px 4px 0 0;
    animation: gwlfx_grow 1.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    transform-origin: bottom;
    transform: scaleY(0);
    min-width: 25px;
    box-shadow: 0 0 15px var(--gwlfx-gold-glow);
    position: relative;
}

@keyframes gwlfx_grow { to { transform: scaleY(1); } }

.gwlfx_terminal_box {
    background: #000000 !important;
    border-radius: 12px;
    padding: clamp(20px, 5vw, 45px);
    font-family: 'Courier New', monospace;
    font-size: clamp(12px, 2.2vw, 15px);
    border: 1px solid #444444 !important;
    box-shadow: 0 25px 60px rgba(0,0,0,0.95), inset 0 0 40px rgba(0,255,0,0.06);
    margin: 45px 0;
    display: block !important;
    width: 100%;
    max-width: 100%;
    position: relative;
}

.gwlfx_term_line {
    color: #00FF00 !important;
    margin-bottom: 12px;
    opacity: 1 !important;
    display: block;
    white-space: pre-wrap;
    line-height: 1.6;
}

.gwlfx_3column_grid, .gwlfx_pricing_table_wrap, .gwlfx_node_stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    width: 100%;
    margin: 70px 0;
}

.gwlfx_spec_card {
    background: var(--gwlfx-gray-100);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #333;
    transition: 0.3s;
    height: auto;
    position: relative;
}

.gwlfx_global_footer {
    background: #050608;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 100px 5% 150px;
    position: relative;
    z-index: 10;
    width: 100%;
}

.gwlfx_footer_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 70px;
    max-width: 1440px;
    margin: 0 auto;
}

@media (max-width: 1100px) {
    .gwlfx_3column_grid, .gwlfx_pricing_table_wrap, .gwlfx_node_stats {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .gwlfx_desktop_nav { display: none; }
    .gwlfx_mobile_trigger { display: block; }
    .gwlfx_footer_grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .gwlfx_vault_masonry {
        grid-template-columns: 1fr;
        padding: 50px 20px;
    }
    .gwlfx_v_cascade_hero {
        clip-path: polygon(0 0, 100% 0, 100% 96%, 50% 100%, 0 96%);
        padding-top: 130px;
    }
    .gwlfx_hero_content h1 { font-size: 2.5rem; }
    .gwlfx_cta_btn { width: 100%; padding: 22px 0; }
    .gwlfx_barchart_container { height: 320px; padding: 20px; gap: 10px; }
    .gwlfx_bar { min-width: 18px; }
}