:root {
    --bg-dark: #020205;
    --glass-bg: rgba(10, 10, 15, 0.8);
    --glass-border: rgba(255, 255, 255, 0.08);
    --mclaren-orange: #ff8700;
    --neon-blue: #00e5ff;
    --text-primary: #ffffff;
    --text-dim: #888899;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Inter', system-ui, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: 
        radial-gradient(circle at 0% 0%, rgba(255, 135, 0, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(0, 229, 255, 0.05) 0%, transparent 40%),
        #020205;
    overflow-x: hidden;
    padding: 40px 20px;
}

.glass-container {
    width: 100%;
    max-width: 1300px;
    background: var(--glass-bg);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 60px;
    box-shadow: 
        0 40px 100px -20px rgba(0, 0, 0, 0.8),
        inset 0 1px 1px rgba(255, 255, 255, 0.05);
    position: relative;
}

.glass-container::after {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(135deg, var(--glass-border), transparent, var(--glass-border));
    border-radius: 42px;
    z-index: -1;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo span {
    color: var(--mclaren-orange);
    text-shadow: 0 0 20px rgba(255, 135, 0, 0.3);
}

.status-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.hero-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.header-text h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -2px;
    background: linear-gradient(to bottom, #fff 40%, rgba(255,255,255,0.4));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-text p {
    font-size: 1.2rem;
    color: var(--text-dim);
    max-width: 500px;
    line-height: 1.6;
}

/* Explorer Section */
.explorer-section {
    margin-bottom: 80px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
}

.section-header {
    margin-bottom: 30px;
}

.section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.section-header p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

.category-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cat-link {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 14px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1);
}

.cat-link i {
    color: var(--mclaren-orange);
}

.cat-link:hover {
    background: rgba(255, 135, 0, 0.1);
    border-color: var(--mclaren-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
    height: 450px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid var(--glass-border);
    filter: grayscale(0.2) contrast(1.1);
    transition: all 0.5s ease;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, var(--mclaren-orange), transparent 70%);
    opacity: 0.1;
    z-index: -1;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 100px;
}

.card {
    text-decoration: none;
    color: inherit;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 48px 40px;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-12px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
}

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 135, 0, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 32px;
    border: 1px solid var(--glass-border);
}

.card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.card p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
}

.badge {
    position: absolute;
    top: 32px;
    right: 40px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    color: rgba(255,255,255,0.2);
}

.card.active .badge {
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

footer {
    border-top: 1px solid var(--glass-border);
    padding-top: 50px;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.stat {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.9rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stat strong {
    display: block;
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 5px;
    font-weight: 800;
}

@media (max-width: 1200px) {
    .grid { grid-template-columns: repeat(2, 1fr); }
    .hero-section { grid-template-columns: 1fr; text-align: center; }
    .header-text p { margin: 0 auto; }
    .hero-image { justify-content: center; }
}

@media (max-width: 768px) {
    .header-text h1 { font-size: 3rem; }
    .glass-container { padding: 30px; }
    .grid { grid-template-columns: 1fr; }
    .stats { flex-direction: column; gap: 30px; }
}
