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

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
    background: #000000;
    min-height: 100vh;
    color: #e0f7fa;
    display: flex;
    flex-direction: column;
}

.navbar {
    background: rgba(10, 14, 23, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 243, 255, 0.2);
    height: 70px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    gap: 30px;
}

.nav-brand h1 {
    background: linear-gradient(90deg, #00f3ff, #bc13fe);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 26px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 800;
}

.brand-link { text-decoration: none; }

.nav-search {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    max-width: 400px;
}

.search-input {
    flex: 1;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 4px;
    color: #e0f7fa;
}

.search-btn {
    padding: 10px 15px;
    background: linear-gradient(90deg, #00f3ff 0%, #0066ff 100%);
    color: #000;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
}

.dashboard-content {
    flex: 1;
    padding: 100px 40px 40px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.result-card {
    background: rgba(20, 25, 35, 0.6);
    border: 1px solid rgba(0, 243, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.result-card:hover {
    transform: translateY(-5px);
    border-color: #00f3ff;
    background: rgba(20, 25, 35, 0.9);
}

.card-image {
    width: 100%;
    height: 160px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    background-color: #1a1a1a; /* Fallback color */
    border-bottom: 1px solid rgba(0, 243, 255, 0.1);
}

.card-info {
    padding: 15px;
}

.card-info h4 {
    color: #00f3ff;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.no-results {
    text-align: center;
    color: #8899a6;
    margin-top: 50px;
}

.footer {
    width: 100%;
    padding: 20px 0;
    text-align: center;
    background: rgba(10, 14, 23, 0.95);
    border-top: 1px solid rgba(0, 243, 255, 0.2);
    color: #8899a6;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link { color: #00f3ff; text-decoration: none; }

@media (max-width: 768px) {
    .navbar { flex-wrap: wrap; height: auto; padding: 15px; }
    .nav-search { flex: 1 1 100%; }
}
