/* 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;
    pointer-events: none;
}

/* Header */
header {
    text-align: center;
    margin: 40px 0 20px 0;
    position: relative;
    z-index: 10;
}

header h1 {
    font-size: 5rem; /* MATCHES Mercury Games */
    color: white;
    text-shadow: 0 0 10px #fff, 0 0 20px #fff; /* GLOW */
    margin: 0;
}

/* Search bar */
.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;
    outline: none;
    background-color: rgba(0, 98, 204, 0.2);
    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;
}

.search-container button {
    padding: 14px 25px;
    font-size: 16px;
    background: linear-gradient(45deg, #0062cc, #004a99);
    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);
}

/* Responsive title sizes (MATCH Mercury Games) */
@media (max-width: 768px) {
    header h1 {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 3rem;
    }
}
