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

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

:root {
    --primary-color: #00d4ff;
    --primary-dark: #9b4dff;
    --bg-dark: #0a0a1a;
    --bg-card: rgba(20, 20, 50, 0.6);
    --text-primary: #e0e0ff;
    --text-secondary: #b0b0d0;
    --border-color: rgba(100, 100, 200, 0.3);
}

body {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 50%, #0d0d2b 100%);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(2px 2px at 160px 120px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 230px 80px, #fff, transparent),
        radial-gradient(2px 2px at 300px 150px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 350px 200px, #fff, transparent),
        radial-gradient(2px 2px at 420px 50px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 500px 180px, #fff, transparent),
        radial-gradient(2px 2px at 580px 100px, rgba(255,255,255,0.9), transparent);
    background-size: 600px 300px;
    animation: twinkle 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #00d4ff, #9b4dff, #ff4da6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1001;

    img {
        width: 64px;
        height: 64px;
    }
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s, text-shadow 0.2s;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    background: rgba(0, 212, 255, 0.1);
}

/* Main Container */
.container {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 8px;
    background: linear-gradient(90deg, #00d4ff, #9b4dff, #ff4da6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(155, 77, 255, 0.5);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
}

/* Cards Grid */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(100, 100, 255, 0.1);
}

.card:hover {
    box-shadow: 0 10px 40px rgba(100, 100, 255, 0.2);
    border-color: var(--primary-color);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.card p {
    color: var(--text-secondary);
    letter-spacing: 1px;
}

/* Page Header */
.page-header {
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    background: linear-gradient(90deg, #00d4ff, #9b4dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.section-group {
    font-size: 1.25rem;
    text-align: center;
    padding: 1rem 0;
}

/* List Items */
.list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.list-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.2s;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(100, 100, 255, 0.05);
}

.list-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 30px rgba(100, 100, 255, 0.15);
}

.list-item-logo {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;

    img {
        height: 60px;
        weight: 60px;
    }
}

.list-item-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    gap: 1rem;
}

.list-item-info h3 {
    margin-bottom: 0.25rem;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.list-item-info p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.list-item-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.badge {
    background: linear-gradient(90deg, #00d4ff, #9b4dff);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.badge.green {
    background: linear-gradient(90deg, #22c55e, #16a34a);
}

.badge.yellow {
    background: linear-gradient(90deg, #eab308, #ca8a04);
}

.badge.red {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.badge.blue {
    background: linear-gradient(90deg, #00d4ff, #9b4dff);
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.badge.blue:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

a.badge {
    text-decoration: none;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    letter-spacing: 2px;
}

/* Back Link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: color 0.2s, text-shadow 0.2s;
    letter-spacing: 1px;
}

.back-link:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* Hamburger Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .navbar {
        flex-wrap: wrap;
        padding: 1rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding-top: 1rem;
        border-top: 1px solid var(--border-color);
        margin-top: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem;
        text-align: center;
        border-radius: 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    .hero h1 {
        font-size: 2rem;
        letter-spacing: 4px;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero {
        padding: 2rem 0;
    }

    .container {
        padding: 1rem;
    }

    .page-header h1 {
        font-size: 1.75rem;
        letter-spacing: 3px;
    }

    .cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .card {
        padding: 1.5rem;
    }

    .list-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

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

    .footer {
        padding: 1.5rem 1rem;
        font-size: 0.875rem;
    }
}
