:root {
    --bg-color: #050507;
    --card-bg: rgba(15, 15, 20, 0.7);
    --accent-primary: #00f2ff;
    --accent-secondary: #7000ff;
    --text-main: #e0e0e6;
    --text-dim: #888894;
    --border-color: rgba(0, 242, 255, 0.15);
    --glass-effect: blur(15px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Effects */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #1B2735 0%, #050507 100%);
    z-index: -2;
}

.scanline {
    width: 100%;
    height: 100px;
    z-index: 10;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 242, 255, 0.02) 50%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.1;
    position: fixed;
    bottom: 100%;
    animation: scanline 10s linear infinite;
    pointer-events: none;
}

@keyframes scanline {
    0% {
        bottom: 100%;
    }

    100% {
        bottom: -100px;
    }
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    border-bottom: 1px solid var(--border-color);
    background: rgba(5, 5, 7, 0.7);
    backdrop-filter: var(--glass-effect);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    color: var(--accent-primary);
    font-size: 1.5rem;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
        text-shadow: 0 0 15px var(--accent-primary);
    }
}

.logo h1 {
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 1.4rem;
    background: linear-gradient(90deg, #fff, var(--accent-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

nav a {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

nav a:hover {
    color: var(--accent-primary);
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.65rem;
    background: rgba(0, 242, 255, 0.05);
    padding: 6px 14px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    letter-spacing: 1px;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.status-dot.online {
    background-color: var(--accent-primary);
    box-shadow: 0 0 10px var(--accent-primary);
    animation: blink 2s infinite;
}

/* Sections */
.container {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

#hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
}

.hero-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-primary);
    letter-spacing: 4px;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.glitch {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 800;
    letter-spacing: -3px;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: var(--text-dim);
    max-width: 700px;
    margin-bottom: 3.5rem;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--text-dim);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Value Items */
#values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    border-top: 1px solid var(--border-color);
}

.value-item {
    padding: 30px;
}

.value-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--accent-primary);
    display: block;
    margin-bottom: 15px;
}

.value-item h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.value-item p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* Grid & Cards */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.card {
    background: var(--card-bg);
    backdrop-filter: var(--glass-effect);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 10px 40px rgba(0, 242, 255, 0.1);
    transform: translateY(-8px);
}

.card-header h3 {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--accent-primary);
}

.stat-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.label {
    color: var(--text-dim);
}

.value {
    font-weight: 700;
    color: #fff;
}

.terminal-mini {
    background: #000;
    padding: 15px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: #00ff00;
    border-radius: 4px;
    opacity: 0.7;
}

/* Buttons */
.btn {
    padding: 14px 34px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.85rem;
}

.btn-primary {
    background: var(--accent-primary);
    color: #000;
}

.btn-primary:hover {
    background: #fff;
    box-shadow: 0 0 25px var(--accent-primary);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.btn-text {
    background: none;
    border: none;
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 0;
    text-align: left;
}

.btn-text:hover {
    text-decoration: underline;
}

/* Contact */
.contact-box {
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.05), rgba(112, 0, 255, 0.05));
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 80px 40px;
    text-align: center;
}

.input-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.glass-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 14px 20px;
    color: #fff;
    font-family: inherit;
    outline: none;
}

.glass-input:focus {
    border-color: var(--accent-primary);
}

/* Footer */
footer {
    padding: 40px 5%;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .input-group {
        flex-direction: column;
    }
}