/* Body styling */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to bottom, #0f2027, #203a43, #2c5364);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Particle canvas */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Header */
header {
    text-align: center;
    margin-top: 30px;
}

header h1 {
    font-size: 2.2rem;
}

/* Search bar - slightly darker blue */
.search-container {
    display: flex;
    margin: 30px 0;
}

.search-container input {
    flex: 1;
    max-width: 600px;
    padding: 14px 20px;
    font-size: 16px;
    border-radius: 30px 0 0 30px;
    border: 2px solid #0062cc; /* slightly darker blue border */
    outline: none;
    background-color: rgba(0, 98, 204, 0.2); /* slightly darker transparent blue */
    color: #fff;
    transition: 0.3s;
}

.search-container input::placeholder {
    color: rgba(255,255,255,0.7);
}

.search-container input:focus {
    background-color: rgba(0, 98, 204, 0.3);
    border-color: #004a99; /* darker on focus */
}

.search-container button {
    padding: 14px 25px;
    font-size: 16px;
    background: linear-gradient(45deg, #0062cc, #004a99); /* darker gradient */
    border: none;
    border-radius: 0 30px 30px 0;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.search-container button:hover {
    background: linear-gradient(45deg, #004a99, #003366);
    transform: scale(1.05);
}

/* Player container */
.player-container {
    width: 90%;
    max-width: 900px;
    margin-bottom: 50px;
}

/* Results styling */
.results {
    width: 90%;
    max-width: 900px;
    margin-bottom: 50px;
}

/* Footer */
footer {
    margin-bottom: 30px;
    font-size: 0.9rem;
    text-align: center;
    color: rgba(255,255,255,0.7);
}
