:root {
--onyx: #080808;
--surface: #0f0f13;
--surface-light: #1a1a22;
--surface-hover: #252530;
--gold: #ffd700;
--gold-glow: rgba(255, 215, 0, 0.3);
--blue-base: #0052ff;
--blue-glow: rgba(0, 82, 255, 0.3);
--blue-deep: #0039b3;
--text-primary: #ffffff;
--text-secondary: #a0a3b1;
--text-tertiary: #6b6f7c;
--border: #2a2c33;
--border-light: #353740;
--success: #00c853;
--warning: #ffb300;
--error: #ff3b30;
--transition-fast: 0.2s ease;

--gradient-gold: linear-gradient(135deg, #ffd700, #ffaa00);
--gradient-blue: linear-gradient(135deg, #0052ff, #627eea);
--gradient-surface: linear-gradient(145deg, var(--surface), #0a0a0f);

--shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
--shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
--shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
--shadow-gold: 0 0 30px var(--gold-glow);
--shadow-blue: 0 0 30px var(--blue-glow);

--transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
--transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

--radius-sm: 8px;
--radius-md: 12px;
--radius-lg: 16px;
--radius-xl: 24px;
--radius-full: 9999px;

--font-mono: 'Space Mono', monospace;
--font-sans: 'Inter', sans-serif;

--primary: #F48120;
--primary-orange: #F48120;
--secondary: #5DA9DD;
--deepblue: #1E3A5F;
--dark: #0F172A;
--light: #F8FAFC;
--gray: #64748B;
--border-light-clr: #E2E8F0;
--cctiks-orange: #F48120;
}

* {
box-sizing: border-box;
margin: 0;
padding: 0;
cursor: default;
}

a, button, .tab-link, .mobile-menu-btn, .mobile-nav-close, .white-toggle, .screen-toggle, #back-to-top, .copy-btn, .faq-item {
cursor: pointer;
}

body {
background-color: var(--onyx);
color: var(--text-primary);
font-family: var(--font-sans);
overflow-x: hidden;
line-height: 1.6;
-webkit-font-smoothing: antialiased;
transition: background-color 0.3s, color 0.3s;
}

.app {
position: relative;
z-index: 10;
min-height: 100vh;
margin-top: 100px;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 24px;
width: 100%;
}

.progress-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 3px;
z-index: 1001;
background: transparent;
}

.progress-bar {
height: 100%;
background: var(--gradient-gold);
width: 0%;
transition: width 0.1s ease;
box-shadow: 0 0 20px var(--gold);
}

#back-to-top {
position: fixed;
bottom: 30px;
right: 30px;
width: 56px;
height: 56px;
background: var(--surface);
border: 1px solid var(--border);
color: var(--text-secondary);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
z-index: 99;
opacity: 0;
visibility: hidden;
transition: all var(--transition-smooth);
font-size: 1.3rem;
backdrop-filter: blur(10px);
box-shadow: var(--shadow-md);
}

#back-to-top.visible {
opacity: 0.5;
visibility: visible;
background: rgb(0 0 0 / 0%);
animation: pulse 8s var(--transition-bounce) infinite;
}

#back-to-top:hover {
border-color: var(--gold);
color: var(--gold);
transform: translateY(-5px);
box-shadow: 0 2px 10px 3px var(--gold-glow);
opacity: 1;
background: var(--surface);
}

header {
position: fixed;
top: 0;
width: 100%;
padding: 20px 0;
z-index: 100;
background: rgba(8, 8, 8, 0.8);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border-bottom: 1px solid rgba(255, 215, 0, 0.1);
transition: all var(--transition-smooth);
}
header.scrolled {
padding: 12px 0;
background: rgba(8, 8, 8, 0.95);
border-bottom-color: rgba(255, 215, 0, 0.2);
box-shadow: var(--shadow-md);
}
.header-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 24px;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
display: flex;
align-items: center;
gap: 12px;
text-decoration: none;
}
.logo-icon {
width: 44px;
height: 44px;
background: linear-gradient(135deg, #999999, #f9f9f9);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-weight: 800;
font-size: 1.4rem;
color: var(--onyx);
box-shadow: 0 0 10px #7f7f7f;
transform: rotate(0deg);
transition: transform var(--transition-bounce);
}
.logo:hover .logo-icon {
transform: rotate(360deg);
}
.logo-text {
font-weight: 700;
font-size: 1.3rem;
letter-spacing: 1px;
color: var(--blue-deep);
}
.logo-text span {
color: var(--gold);
text-shadow: 0 0 10px var(--gold-glow);
}
a.logo:active .logo-text,
a.logo:focus .logo-text,
a.logo:hover .logo-text {
color: var(--blue-deep);
}
.desktop-nav {
display: flex;
gap: 8px;
}
.network-badge {
display: flex;
align-items: center;
gap: 8px;
padding: 6px 12px;
background: rgba(0, 82, 255, 0.1);
border: 1px solid rgba(0, 82, 255, 0.2);
border-radius: var(--radius-full);
color: var(--text-secondary);
font-size: 0.65rem;
}
.network-dot {
width: 8px;
height: 8px;
background: var(--blue-base);
border-radius: 50%;
box-shadow: 0 0 2px var(--blue-base);
animation: pulse 2.2s infinite;
}
.nav-menu {
margin: -12px 0px 30px -18px;
list-style: none;
padding: 0;
}
.nav-menu li {
display: unset;
}
.mobile-menu-btn {
color: var(--text-primary);
font-size: 1.5rem;
cursor: pointer;
background: var(--surface);
width: 44px;
height: 44px;
border-radius: 50%;
align-items: center;
justify-content: center;
border: 1px solid #e2e8f0;
display: flex;
}
.mobile-menu-btn i {
color: #20b7f4;
animation: numberPop 5s var(--transition-bounce) infinite;
}
.mobile-nav {
position: fixed;
top: 0;
right: -100%;
width: 300px;
height: 100vh;
background: var(--surface);
z-index: 1000;
padding: 100px 24px 40px;
flex-direction: column;
gap: 16px;
transition: right var(--transition-smooth);
border-left: 1px solid var(--border);
box-shadow: var(--shadow-lg);
backdrop-filter: blur(16px);
display: none;
}
.mobile-nav.active {
right: 0;
display: flex;
}
.mobile-nav a {
color: var(--text-secondary);
text-decoration: none;
font-size: 1rem;
font-weight: 500;
padding: 12px 0;
border-bottom: 1px solid #a0a3b1;
transition: color var(--transition-fast);
display: flex;
align-items: center;
gap: 12px;
}
.mobile-nav a:hover {
color: #ffffff;
border-bottom: 1px solid #31709b;
}
.mobile-nav a.active {
color: #ff6600;
border-bottom: 1px solid #31709b;
}
.mobile-nav a i {
color: #ffef99;
}
.mobile-nav a:hover i {
color: #ffd700;
}
.mobile-nav a.active i {
color: #5da9dd;
}
.mobile-nav-close {
position: absolute;
top: 20px;
right: 24px;
font-size: 1.5rem;
color: #0f0f13;
cursor: pointer;
width: 44px;
height: 44px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
background: #20b7f4;
border: none;
}
.mobile-nav-close:hover,
.mobile-nav-close:active {
color: #20b7f4;
background: #0f0f13;
border: 2px solid #ffffff;
}
.menu-scroll {
flex: 1;
overflow-y: auto;
}
.menu-scroll::-webkit-scrollbar {
width: 6px;
}
.menu-scroll::-webkit-scrollbar-track {
background: #0a0a0f;
border-radius: 10px;
}
.menu-scroll::-webkit-scrollbar-thumb {
background: linear-gradient(135deg, #000000, #000000, #ffaa00, #ffd700, #ffaa00, #000000, #000000);
border-radius: 25px;
}

.page-build {
max-width: 1200px;
margin: 0 auto 0rem;
background: white;
border-radius: 24px;
box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
overflow: hidden;
border: 1px solid rgba(93, 169, 221, 0.2);
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
}
.header-build {
background: linear-gradient(145deg, #0b1a2a 0%, #132b44 100%);
color: white;
padding: 3.5rem 3.5rem 2.5rem 3.5rem;
border-bottom: 4px solid #f48120;
position: relative;
isolation: isolate;
}
.header-build h1 {
font-size: 2.8rem;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.2;
color: #f48120;
margin: 0 0 1rem;
}
.header-build h2 {
font-size: 1.1rem;
color: #b0c4de;
margin-top: 1.5rem;
max-width: 100%;
border-left: 4px solid #5da9dd;
padding-left: 1.2rem;
font-weight: 400;
}
.tabs {
display: flex;
background: white;
border-bottom: 1px solid var(--border-light-clr);
overflow-x: auto;
}
.tab-btn {
flex: 1;
padding: 1.5rem 2.5rem;
background: none;
border: none;
font-size: 1rem;
font-weight: 600;
color: var(--gray);
cursor: pointer;
white-space: nowrap;
transition: all 0.3s;
border-bottom: 4px solid transparent;
}
.tab-btn.active {
color: var(--primary);
border-bottom-color: var(--primary);
}
.tab-content {
padding: 4rem;
color: #1e293b;
}
.tab-pane {
display: none;
animation: fadeIn 0.4s ease;
}
.tab-pane.active {
display: block;
}
@keyframes fadeIn {
from {
	opacity: 0;
	transform: translateY(10px);
}
to {
	opacity: 1;
	transform: translateY(0);
}
}
.intro-text {
color: var(--gray);
max-width: 850px;
margin-bottom: 2.5rem;
font-size: 1.05rem;
}
.assets-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 2rem;
}
.asset-card {
border: 1px solid var(--border-light-clr);
border-radius: 16px;
overflow: hidden;
transition: all 0.3s;
background: white;
}
.asset-card:hover {
transform: translateY(-6px);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.asset-preview {
height: 180px;
background: #F1F5F9;
display: flex;
align-items: center;
justify-content: center;
font-size: 3.5rem;
}
.asset-info {
padding: 1.8rem;
text-align: center;
}
.asset-info h4 {
margin-bottom: 1rem;
color: var(--deepblue);
}
.btn-dl {
display: inline-block;
padding: 10px 24px;
background: var(--gold);
border: 2px solid #00a946;
color: #0039b3;
border-radius: 50px;
font-weight: 600;
text-decoration: none;
font-size: 0.9rem;
transition: 0.3s;
}
.btn-dl:hover {
background: var(--gold);
border: 2px solid #f2f2f2;
color: #000;
}
.press-box {
background: #F8FAFC;
padding: 2.5rem;
border-radius: 16px;
border-left: 6px solid var(--secondary);
margin-bottom: 2.5rem;
}
.press-box h3 {
color: var(--deepblue);
margin-bottom: 1rem;
display: flex;
align-items: center;
gap: 10px;
}
.press-box p {
color: var(--gray);
margin-bottom: 1.5rem;
}

.hall-table {
width: 100%;
border-collapse: collapse;
margin: 1.5rem 0 2.5rem 0;
font-size: 0.95rem;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.hall-table thead {
background: var(--deepblue);
color: white;
}
.hall-table th {
padding: 14px 18px;
text-align: left;
font-weight: 600;
letter-spacing: 0.3px;
font-size: 0.9rem;
text-transform: uppercase;
}
.hall-table td {
padding: 14px 18px;
border-bottom: 1px solid var(--border-light-clr);
color: #334155;
}
.hall-table tbody tr {
background: white;
transition: background 0.2s;
}
.hall-table tbody tr:hover {
background: #f8fafc;
}
.hall-table a {
color: var(--blue-base);
text-decoration: none;
font-weight: 500;
}
.hall-table a:hover {
text-decoration: underline;
}
.badge-certified {
display: inline-block;
background: linear-gradient(135deg, #00c853, #00a844);
color: white;
padding: 4px 14px;
border-radius: 20px;
font-size: 0.75rem;
font-weight: 700;
letter-spacing: 0.4px;
text-transform: uppercase;
box-shadow: 0 2px 8px rgba(0, 200, 83, 0.3);
}

.timeline {
display: flex;
flex-direction: column;
gap: 1.8rem;
margin: 2rem 0 3rem 0;
position: relative;
padding-left: 2.5rem;
border-left: 4px solid var(--primary);
}
.timeline-step {
position: relative;
padding-left: 1.5rem;
}
.timeline-step::before {
content: '';
position: absolute;
left: -2.85rem;
top: 0.35rem;
width: 16px;
height: 16px;
background: var(--primary);
border-radius: 50%;
border: 3px solid white;
box-shadow: 0 0 0 3px var(--primary);
}
.timeline-step h4 {
color: var(--deepblue);
margin-bottom: 0.3rem;
font-size: 1.05rem;
}
.timeline-step p {
color: var(--gray);
font-size: 0.95rem;
line-height: 1.6;
}

.btn-marketplace {
display: inline-block;
padding: 0.5rem 1rem;
border-radius: 20px;
text-decoration: none;
font-weight: 600;
font-size: 0.85rem;
transition: all 0.25s;
cursor: pointer;
}
.btn-marketplace:hover {
transform: translateY(-2px);
box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

#submissionForm input,
#submissionForm select {
padding: 10px 14px;
border: 1px solid var(--border-light-clr);
border-radius: 8px;
font-size: 0.95rem;
background: white;
font-family: var(--font-sans);
transition: border-color 0.2s;
width: 100%;
}
#submissionForm input:focus,
#submissionForm select:focus {
outline: 2px solid #F48120;
outline-offset: 2px;
border-color: #F48120;
}
#submissionForm label {
font-weight: 600;
font-size: 0.85rem;
color: var(--deepblue);
}

.build-footer {
background: #0b1a2a;
color: #94a3b8;
padding: 2.5rem 3.5rem;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
gap: 2rem;
font-size: 0.9rem;
border-top: 3px solid #f48120;
}
.footer-left {
display: flex;
flex-direction: column;
gap: 0.4rem;
}
.footer-left strong {
color: white;
font-size: 1.2rem;
}
.linksite {
color: #9f732a;
text-decoration: none;
}
.linksite:hover {
color: var(--gold);
}
.code-law {
font-family: 'JetBrains Mono', monospace;
background: rgba(255, 255, 255, 0.05);
padding: 0.8rem 1.5rem;
border-radius: 60px;
color: var(--cctiks-orange);
border: 1px solid rgba(244, 129, 32, 0.4);
font-weight: 500;
letter-spacing: 1px;
}

.toast {
position: fixed;
bottom: 30px;
right: 30px;
background: var(--deepblue);
color: white;
padding: 12px 24px;
border-radius: 40px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
display: none;
z-index: 1000;
}

::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: var(--onyx);
}
::-webkit-scrollbar-thumb {
background: linear-gradient(135deg, #000000, #000000, #ffaa00, #ffd700, #ffaa00, #000000, #000000);
border-radius: var(--radius-full);
border: 2px solid var(--onyx);
}
::-webkit-scrollbar-thumb:hover {
background: var(--gold);
}

@keyframes fadeInUp {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}

[data-aos] {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.6s, transform 0.6s;
}

[data-aos].visible {
opacity: 1;
transform: translateY(0);
}

@keyframes pulse {
0%, 100% { opacity: 1; transform: scale(1); }
50% { opacity: 0.3; transform: scale(1.1); box-shadow: 0 0 6px var(--blue-base); }
}

@keyframes numberPop {
0% { transform: scale(1); opacity: 1; }
50% { transform: scale(1.1); opacity: 0.7; }
100% { transform: scale(1); opacity: 1; }
}

.value-updated {
animation: numberPop 2.2s var(--transition-bounce) infinite;
background-color: unset;
color: var(--gold);
}

.white-toggle {
position: fixed;
top: 27px;
left: 20px;
padding: 6px;
font-size: 16px;
border: none;
border-radius: 50%;
background: #5d5d5d;
color: #ffea7f;
cursor: pointer;
transition: all 0.3s;
z-index: 1000;
}
.white-toggle:hover {
transform: scale(1.1);
}
.screen-toggle {
position: fixed;
top: 27px;
left: 70px;
padding: 6px;
font-size: 16px;
border: none;
border-radius: 50%;
background: #5d5d5d;
color: #ffea7f;
cursor: pointer;
transition: all 0.3s;
z-index: 1000;
}
.screen-toggle:hover {
transform: scale(1.1);
}

body.white {
background-color: #f0f2f5 !important;
color: #1e293b !important;
}
body.white header {
background: rgba(255, 255, 255, 0.9) !important;
border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}
body.white header.scrolled {
background: rgba(255, 255, 255, 0.95) !important;
}
body.white .logo-text {
color: #0039b3 !important;
}
body.white .logo-icon {
background: linear-gradient(135deg, #cccccc, #ffffff) !important;
color: #000 !important;
}
body.white .network-badge {
background: rgb(0 147 255 / 16%) !important;
border-color: rgb(0 71 209 / 66%) !important;
color: #0343cb !important;
}
body.white .mobile-menu-btn {
background: #ffffff !important;
border: 1px solid #ccc !important;
color: #333 !important;
}
body.white .mobile-menu-btn i {
color: #0052ff !important;
}
body.white .mobile-nav {
background: #f2f8ff !important;
border-left: 1px solid #999999 !important;
}
body.white .mobile-nav a {
color: #333 !important;
border-bottom-color: #ccc !important;
}
body.white .mobile-nav a:hover {
color: #000 !important;
background: rgba(0, 0, 0, 0.05) !important;
}
body.white .mobile-nav a i {
color: #009f42 !important;
}
body.white .mobile-nav-close {
background: #0052ff !important;
color: #ffffff !important;
}
body.white .page-build {
background: rgba(255, 255, 255, 0.98) !important;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}
body.white .tab-content {
color: #1e293b;
}

.modal-premium {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 10000;
align-items: center;
justify-content: center;
}
.modal-premium.show {
display: flex;
}
.modal-premium-overlay {
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.75);
backdrop-filter: blur(6px);
animation: modalFadeIn 0.3s ease;
}
.modal-premium-card {
position: relative;
background: #ffffff;
width: 90%;
max-width: 850px;
max-height: 85vh;
border-radius: 24px;
box-shadow: 0 30px 50px rgba(0, 0, 0, 0.4);
z-index: 2;
display: flex;
flex-direction: column;
animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
overflow: hidden;
}
.modal-premium-header {
background: #0F172A;
color: white;
padding: 1.8rem 2.2rem;
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 2px solid #F48120;
}
.modal-premium-header h3 {
font-weight: 600;
font-size: 1.4rem;
letter-spacing: -0.3px;
color: white;
margin: 0;
}
.modal-premium-close {
background: rgba(255, 255, 255, 0.12);
border: none;
color: white;
width: 40px;
height: 40px;
border-radius: 50%;
font-size: 1.3rem;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.2s;
line-height: 1;
}
.modal-premium-close:hover {
background: rgba(255, 255, 255, 0.28);
transform: rotate(90deg);
}
.modal-premium-body {
padding: 2.2rem 2.5rem;
overflow-y: auto;
scrollbar-width: thin;
scrollbar-color: #b0bec5 #f1f1f1;
color: #334155;
font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
.modal-premium-body h4 {
font-size: 1.15rem;
font-weight: 600;
color: #0F172A;
margin: 0 0 0.8rem 0;
display: flex;
align-items: baseline;
gap: 0.5rem;
border-left: 4px solid #F48120;
padding-left: 1rem;
}
.section-number {
font-weight: 700;
color: #F48120;
font-size: 1.1rem;
}
.modal-premium-body p {
line-height: 1.7;
color: #334155;
margin: 0.8rem 0;
}
.modal-premium-body ul,
.modal-premium-body ol {
padding-left: 1.8rem;
color: #2c3e50;
}
.modal-premium-body li {
margin-bottom: 0.5rem;
line-height: 1.6;
}
.modal-premium-body code {
background: #edf2f7;
padding: 0.25rem 0.5rem;
border-radius: 6px;
font-family: 'Courier New', monospace;
font-size: 0.9rem;
color: #c0392b;
}
@keyframes modalFadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes modalSlideUp {
from { opacity: 0; transform: translateY(30px) scale(0.98); }
to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 800px) {.mobile-nav {width: 275px;}h2 {font-size: 1.25rem !important;}.tabs {flex-direction: column;}.build-footer {flex-direction: column;text-align: center;}.footer-left { align-items: center;text-align: center;}}
@media (max-width: 700px) {.header-build {padding: 2rem;}.tab-content {padding: 2rem 1.5rem;}.header-build h1 {font-size: 2.2rem;}.header-build h2 {font-size: 1.1rem;}h2 {font-size: 1.4rem;}h3 {font-size: 1.25rem;}}
@media (max-width: 600px) {.mobile-nav {width: 250px;}.header-build h1 {font-size: 1.7rem;}.header-build h2 {font-size: 0.8rem;}h2 {font-size: 1.25rem;}h3 {font-size: 1.15rem;}.footer-left strong {font-size: 0.85rem;}.code-law {font-size: 1rem;}footer .code-law {font-size: 0.6rem;}.wallet-section {display: none;}#submissionForm {grid-template-columns: 1fr !important;}}
@media (max-width: 480px) {.mobile-nav {width: 225px;}.header-build h1 {font-size: 1.4rem;}.header-build h2 {font-size: 0.6rem;}h2 {font-size: 1.1rem;}h3 {font-size: 1em;}.footer-left strong {font-size: 0.65rem;}.code-law {font-size: 0.85rem;}footer .code-law {font-size: 0.5rem;}}
@media (max-width: 640px) {.modal-premium-card {width: 95%;max-height: 90vh;border-radius: 20px;}.modal-premium-header {padding: 1.5rem;}.modal-premium-header h3 {font-size: 1.1rem;}.modal-premium-body {padding: 1.5rem;}}
