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

:root {
    --bg: #000;
    --card: #0a0a0a;
    --hover: #141414;
    --text: #fff;
    --gray: #999;
    --muted: #666;
    --border: #1a1a1a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.top-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.nav-brand {
    font-size: 1.25rem;
    font-weight: 700;
}

.nav-center {
    display: flex;
    gap: 2rem;
}

.nav-item {
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-item:hover,
.nav-item.active {
    color: var(--text);
}

.nav-btn {
    padding: 0.5rem 1.25rem;
    background: var(--text);
    color: var(--bg);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.2s;
}

.nav-btn:hover {
    background: var(--gray);
}

.page-main {
    padding-top: 80px;
}

/* HERO VERTICAL - BEDA DARI VERIZNODE */
.hero-area {
    padding: 8rem 2rem;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.hero-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.hero-h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.hero-p {
    font-size: 1.5rem;
    color: var(--gray);
    margin-bottom: 3rem;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.badge {
    padding: 0.75rem 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all 0.3s;
}

.badge:hover {
    border-color: var(--text);
    transform: translateY(-2px);
}

.net-section {
    padding: 5rem 2rem;
}

.section-wrap {
    max-width: 1400px;
    margin: 0 auto;
}

.section-top {
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.section-h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.net-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.network-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.network-card:hover {
    border-color: var(--text);
    background: var(--hover);
    transform: translateX(8px);
}

.network-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.network-logo {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.network-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.network-label {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.network-type {
    font-size: 0.875rem;
    color: var(--muted);
    text-transform: uppercase;
}

.network-actions {
    display: flex;
    gap: 1rem;
}

.action-link {
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s;
}

.link-explorer {
    background: var(--text);
    color: var(--bg);
}

.link-explorer:hover {
    background: var(--gray);
}

.link-docs {
    background: transparent;
    color: var(--gray);
    border: 1px solid var(--border);
}

.link-docs:hover {
    border-color: var(--text);
    color: var(--text);
}

.site-foot {
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--border);
}

.foot-wrap {
    max-width: 1400px;
    margin: 0 auto;
}

.foot-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.foot-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.foot-logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
}

.foot-left h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.foot-left p {
    color: var(--gray);
}

.foot-right {
    display: flex;
    gap: 1rem;
}

.foot-right a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--gray);
    transition: all 0.2s;
}

.foot-right a:hover {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
}

.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.foot-bottom p {
    color: var(--muted);
    font-size: 0.875rem;
}

.foot-links {
    display: flex;
    gap: 2rem;
}

.foot-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.foot-links a:hover {
    color: var(--text);
}

@media (max-width: 768px) {
    .nav-center {
        gap: 1rem;
    }
    
    .hero-area {
        padding: 5rem 1.5rem;
    }
    
    .hero-h1 {
        font-size: 3rem;
    }
    
    .hero-p {
        font-size: 1.125rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .badge {
        width: 100%;
        text-align: center;
    }
    
    .network-card {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .network-header {
        flex-direction: column;
    }
    
    .network-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .action-link {
        width: 100%;
    }
    
    .foot-top {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .foot-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
