@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto+Mono:wght@300;400;700&family=Inter:wght@300;400;700&display=swap');

:root {
    --bg-color: #050508;
    --surface-color: #0a0a0f;
    --primary-neon: #ffaa00;
    --secondary-neon: #ff4400;
    --text-color: #e0e0e0;
    --text-dim: #998888;
    --glow-strength: 0 0 10px rgba(255, 170, 0, 0.5);
    --border-glow: 1px solid rgba(255, 170, 0, 0.2);
}

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

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

/* CRT Scanline Effect Overlay */
body::before {
    content: " ";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%),
        linear-gradient(90deg, rgba(255, 0, 0, 0.02), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.02));
    z-index: 1000;
    background-size: 100% 3px, 3px 100%;
    pointer-events: none;
    opacity: 0.15;
}

h1,
h2,
h3 {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-neon);
    text-shadow: var(--glow-strength);
}

a {
    color: var(--primary-neon);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    text-shadow: 0 0 15px var(--primary-neon);
    color: #fff;
}

/* Navbar Style */
header {
    background: rgba(10, 10, 15, 0.9);
    border-bottom: var(--border-glow);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 3rem;
    filter: drop-shadow(0 0 5px var(--primary-neon));
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--primary-neon);
    border-radius: 4px;
    background: transparent;
    color: var(--primary-neon);
    font-family: 'Roboto Mono', monospace;
    font-size: 0.8rem;
    cursor: pointer;
    box-shadow: inset 0 0 5px rgba(255, 170, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn:hover {
    background: var(--primary-neon);
    color: #000;
    box-shadow: 0 0 20px var(--primary-neon);
}

/* Hero Section */
.hero {
    padding: 6rem 2rem;
    text-align: center;
    background: radial-gradient(circle at center, rgba(255, 68, 0, 0.05) 0%, transparent 70%);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: pulsate 3s infinite alternate;
}

@keyframes pulsate {
    0% {
        text-shadow: 0 0 5px var(--primary-neon), 0 0 10px var(--primary-neon);
    }

    100% {
        text-shadow: 0 0 15px var(--primary-neon), 0 0 30px var(--primary-neon), 0 0 45px var(--secondary-neon);
    }
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-dim);
    max-width: 800px;
    margin: 0 auto 2rem;
    font-family: 'Roboto Mono', monospace;
}

/* Content Sections */
section {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.card {
    background: var(--surface-color);
    border: var(--border-glow);
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.list-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.list-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--secondary-neon);
    opacity: 0.5;
    min-width: 3rem;
}

.list-content h3 {
    margin-bottom: 0.5rem;
}

/* Table Style */
.table-container {
    overflow-x: auto;
    margin-top: 2rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface-color);
    border: var(--border-glow);
}

th,
td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

th {
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
    color: var(--secondary-neon);
    font-size: 0.8rem;
}

tr:hover {
    background: rgba(255, 170, 0, 0.05);
}

/* Footer */
footer {
    padding: 4rem 2rem;
    border-top: var(--border-glow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    background: var(--surface-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo img {
    height: 2.5rem;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    header nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }

    .list-item {
        flex-direction: column;
        gap: 0.5rem;
    }
}