
/* Futuristic Automotive UI */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=DM+Sans:wght@400;500;700&display=swap');

:root {
    --primary: #00c8ff;
    --secondary: #7b2dff;
    --dark: #0a0f1a;
    --light: #f8faff;
    --accent: #ff2d7b;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: radial-gradient(ellipse at center, var(--dark) 0%, #000 100%);
    color: var(--light);
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.36);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.holographic-effect {
    position: relative;
    overflow: hidden;
}

.holographic-effect::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(0, 200, 255, 0.1),
        rgba(123, 45, 255, 0.1),
        rgba(255, 45, 123, 0.1)
    );
    transform: rotate(45deg);
    animation: holographic 8s linear infinite;
    z-index: -1;
}

@keyframes holographic {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.bento-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.bento-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.bento-card {
    flex: 1;
    border-radius: 1.5rem;
    padding: 2rem;
    min-height: 200px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    text-decoration: none;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.1);
    z-index: 1;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px -10px rgba(0,0,0,0.2);
}

.bento-card:nth-child(1) {
    flex: 2;
}

.card-content {
    position: relative;
    z-index: 2;
    color: white;
    width: 100%;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-content p {
    font-size: 1rem;
    opacity: 0.9;
}

.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    stroke-width: 1.5;
}

@media (max-width: 768px) {
    .bento-row {
        flex-direction: column;
    }
    
    .bento-card:nth-child(1) {
        flex: 1;
    }
}