@charset "UTF-8";
/*
Theme Name: Aven Core Horizon
Author: CORE AI
Version: 11.0.1 Enterprise
*/
:root {
--avcx-void: #050B14;
--avcx-navy: #0F2A3F;
--avcx-holo: #00F0FF;
--avcx-warn: #FF2A2A;
--avcx-safe: #00FF88;
--avcx-glass: rgba(15, 42, 63, 0.85);
--avcx-font: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", "맑은 고딕", helvetica, sans-serif;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
-webkit-tap-highlight-color: transparent;
}
body {
background-color: var(--avcx-void);
color: #e0e0e0;
font-family: var(--avcx-font);
line-height: 1.6;
overflow-x: hidden;
}
a {
text-decoration: none;
color: inherit;
transition: 0.3s ease;
}
.avcx_wrap {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.avcx_header {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 70px;
background: rgba(5, 11, 20, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(0, 240, 255, 0.1);
z-index: 1000;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 5%;
}
.avcx_logo {
font-size: 24px;
font-weight: 900;
color: #fff;
text-transform: uppercase;
letter-spacing: 2px;
text-shadow: 0 0 10px var(--avcx-holo), 0 0 20px var(--avcx-holo);
position: relative;
}
.avcx_logo::after {
content: 'CORE';
font-size: 10px;
position: absolute;
bottom: -8px;
right: 0;
color: var(--avcx-safe);
text-shadow: none;
letter-spacing: 1px;
}
.avcx_nav_desk {
display: none;
}
@media (min-width: 768px) {
.avcx_nav_desk {
display: flex;
gap: 30px;
}
.avcx_nav_link {
font-size: 14px;
font-weight: 500;
color: rgba(255, 255, 255, 0.7);
position: relative;
padding: 5px 0;
}
.avcx_nav_link:hover {
color: var(--avcx-holo);
text-shadow: 0 0 8px var(--avcx-holo);
}
.avcx_nav_link::before {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: 0;
left: 0;
background-color: var(--avcx-warn);
transition: 0.3s;
}
.avcx_nav_link:hover::before {
width: 100%;
}
}
.avcx_mobile_trigger {
width: 30px;
height: 20px;
display: flex;
flex-direction: column;
justify-content: space-between;
cursor: pointer;
z-index: 1002;
}
.avcx_bar {
width: 100%;
height: 2px;
background-color: var(--avcx-holo);
box-shadow: 0 0 5px var(--avcx-holo);
transition: 0.3s;
}
@media (min-width: 768px) {
.avcx_mobile_trigger {
display: none;
}
}
.avcx_drawer {
position: fixed;
top: 0;
right: -100%;
width: 80%;
max-width: 300px;
height: 100vh;
background: var(--avcx-navy);
z-index: 1001;
transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
border-left: 1px solid var(--avcx-holo);
padding-top: 80px;
box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
}
.avcx_drawer.active {
right: 0;
}
.avcx_drawer_link {
display: block;
padding: 15px 30px;
font-size: 16px;
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
color: #fff;
}
.avcx_drawer_link:hover {
background: rgba(0, 240, 255, 0.1);
color: var(--avcx-holo);
padding-left: 40px;
}
.avcx_hero_grid {
display: grid;
grid-template-columns: 1fr;
gap: 20px;
padding: 100px 20px 40px;
}
@media (min-width: 992px) {
.avcx_hero_grid {
grid-template-columns: 1.2fr 0.8fr;
align-items: center;
height: 90vh;
}
}
.avcx_btn_cta {
display: inline-block;
padding: 15px 40px;
background: linear-gradient(90deg, var(--avcx-warn), #990000);
color: #fff;
font-weight: 700;
border: 1px solid var(--avcx-warn);
box-shadow: 0 0 15px rgba(255, 42, 42, 0.4);
clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
cursor: pointer;
position: relative;
overflow: hidden;
}
.avcx_btn_cta::after {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
transform: rotate(45deg);
animation: avcx_shine 3s infinite;
}
@keyframes avcx_shine {
0% { left: -100%; }
20% { left: 100%; }
100% { left: 100%; }
}
.avcx_footer {
background: #020406;
border-top: 1px solid #1a1a1a;
padding: 50px 20px 100px;
text-align: center;
font-size: 13px;
color: #666;
}
.avcx_compliance_badge {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border: 2px solid #666;
border-radius: 50%;
font-weight: 900;
color: #666;
margin-bottom: 10px;
}
.avcx_sticky_bar {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
height: 60px;
background: var(--avcx-glass);
backdrop-filter: blur(12px);
display: flex;
justify-content: space-around;
align-items: center;
border-top: 1px solid rgba(0, 240, 255, 0.2);
z-index: 2000;
}
@media (min-width: 768px) {
.avcx_sticky_bar {
display: none;
}
}
.avcx_tab_item {
display: flex;
flex-direction: column;
align-items: center;
font-size: 10px;
color: rgba(255, 255, 255, 0.6);
}
.avcx_tab_item.active {
color: var(--avcx-holo);
}
.avcx_tab_icon {
width: 24px;
height: 24px;
margin-bottom: 2px;
fill: currentColor;
}