:root {
--avnc-void: #030407;
--avnc-surface: #0b0c15;
--avnc-surface-light: #161822;
--avnc-primary: #00f0ff;
--avnc-primary-dim: rgba(0, 240, 255, 0.1);
--avnc-secondary: #7000ff;
--avnc-alert: #ff003c;
--avnc-success: #00ff9d;
--avnc-text-head: #ffffff;
--avnc-text-body: #94a3b8;
--avnc-glass: rgba(22, 24, 34, 0.6);
--avnc-glass-border: rgba(255, 255, 255, 0.08);
--avnc-blur: blur(16px);
--avnc-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
--avnc-font-mono: 'JetBrains Mono', 'Fira Code', monospace;
--avnc-glow: 0 0 20px rgba(0, 240, 255, 0.2);
--avnc-ease: cubic-bezier(0.23, 1, 0.32, 1);
}
*, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
font-size: 16px;
scroll-behavior: smooth;
background-color: var(--avnc-void);
}
body {
font-family: var(--avnc-font-sans);
background-color: var(--avnc-void);
color: var(--avnc-text-body);
line-height: 1.7;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
background-image: 
radial-gradient(circle at 50% 0%, #1a1c29 0%, transparent 40%),
linear-gradient(0deg, rgba(255,255,255,0.02) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
background-size: 100% 100%, 40px 40px, 40px 40px;
}
.avnc_wrap {
width: 100%;
max-width: 1400px;
margin: 0 auto;
padding: 0 24px;
}
.avnc_grid {
display: grid;
gap: 2rem;
}
.avnc_masthead {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
background: var(--avnc-glass);
backdrop-filter: var(--avnc-blur);
border-bottom: 1px solid var(--avnc-glass-border);
transition: transform 0.3s var(--avnc-ease);
}
.avnc_nav_row {
height: 80px;
display: flex;
align-items: center;
justify-content: space-between;
}
.avnc_brand {
font-family: var(--avnc-font-mono);
font-weight: 800;
font-size: 1.5rem;
color: var(--avnc-text-head);
text-decoration: none;
letter-spacing: -0.02em;
display: flex;
align-items: center;
gap: 10px;
}
.avnc_brand::before {
content: '';
display: block;
width: 12px;
height: 12px;
background: var(--avnc-primary);
box-shadow: var(--avnc-glow);
border-radius: 50%;
}
.avnc_gnb ul {
display: flex;
list-style: none;
gap: 2.5rem;
}
.avnc_gnb a {
color: var(--avnc-text-body);
text-decoration: none;
font-weight: 500;
font-size: 0.95rem;
transition: color 0.2s;
position: relative;
}
.avnc_gnb a:hover,
.avnc_gnb .current-menu-item > a {
color: var(--avnc-primary);
}
.avnc_gnb a::after {
content: '';
position: absolute;
bottom: -4px;
left: 0;
width: 0;
height: 1px;
background: var(--avnc-primary);
transition: width 0.3s var(--avnc-ease);
}
.avnc_gnb a:hover::after {
width: 100%;
}
.avnc_status_btn {
appearance: none;
background: rgba(0, 240, 255, 0.05);
border: 1px solid var(--avnc-primary-dim);
color: var(--avnc-primary);
padding: 0.6rem 1.2rem;
font-family: var(--avnc-font-mono);
font-size: 0.85rem;
cursor: pointer;
transition: all 0.3s var(--avnc-ease);
border-radius: 2px;
text-transform: uppercase;
letter-spacing: 0.05em;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 8px;
}
.avnc_status_btn:hover {
background: var(--avnc-primary);
color: var(--avnc-void);
box-shadow: var(--avnc-glow);
}
.avnc_status_btn::before {
content: '●';
color: var(--avnc-success);
font-size: 0.8em;
animation: avnc_pulse 2s infinite;
}
@keyframes avnc_pulse {
0% { opacity: 1; }
50% { opacity: 0.4; }
100% { opacity: 1; }
}
#avnc_secure_gateway {
margin-top: 4rem;
padding: 4rem 2rem;
background: linear-gradient(180deg, rgba(11,12,21,0) 0%, rgba(0, 240, 255, 0.03) 100%);
border-top: 1px solid var(--avnc-glass-border);
text-align: center;
position: relative;
overflow: hidden;
}
#avnc_secure_gateway::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 1px;
background: linear-gradient(90deg, transparent, var(--avnc-primary), transparent);
opacity: 0.5;
}
.avnc_gate_trigger {
background: var(--avnc-secondary);
color: #fff;
border: none;
padding: 1.2rem 3rem;
font-size: 1.1rem;
font-weight: 700;
font-family: var(--avnc-font-mono);
text-transform: uppercase;
letter-spacing: 0.1em;
cursor: pointer;
clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
transition: all 0.3s var(--avnc-ease);
position: relative;
z-index: 10;
}
.avnc_gate_trigger:hover {
background: var(--avnc-primary);
color: var(--avnc-void);
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(0, 240, 255, 0.2);
}
.avnc_security_layer {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background: #000;
z-index: 9999;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
pointer-events: none;
transition: opacity 0.4s ease;
}
.avnc_security_layer.active {
opacity: 1;
pointer-events: all;
}
.avnc_term_output {
color: var(--avnc-primary);
font-family: var(--avnc-font-mono);
font-size: 1.2rem;
text-align: left;
width: 100%;
max-width: 600px;
padding: 20px;
}
.avnc_line {
overflow: hidden;
white-space: nowrap;
margin: 5px 0;
border-right: 2px solid var(--avnc-primary);
width: 0;
animation: typing 0.5s steps(40, end) forwards;
}
.avnc_line:nth-child(2) { animation-delay: 0.2s; }
.avnc_line:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
from { width: 0; }
to { width: 100%; border-color: transparent; }
}
.avnc_footer_core {
padding: 80px 0 40px;
background: var(--avnc-surface);
border-top: 1px solid var(--avnc-glass-border);
}
.avnc_legal {
margin-top: 60px;
padding-top: 20px;
border-top: 1px solid var(--avnc-glass-border);
font-size: 0.8rem;
color: var(--avnc-text-body);
opacity: 0.6;
text-align: center;
}
@media (max-width: 1024px) {
.avnc_gnb { display: none; }
.avnc_status_btn { display: none; }
}