body { 
    font-family: sans-serif; 
    text-align: center; 
    background-color: black; 
    color: white; /* Ensures text remains visible */
}

.shiverican-container { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
}

.shiverican-card { 
    border: 1px solid #444; /* Darker border for contrast */
    border-radius: 10px; 
    padding: 10px; 
    margin: 10px; 
    text-align: center; 
    width: 150px; 
    cursor: pointer; 
    background-color: #222222; /* Darker card background */
    color: white; /* Ensure text is readable */
}

.shiverican-card img { 
    width: 100px; 
    height: 100px; 
}

#shiverican-details { 
    display: none; 
    margin-top: 15px; 
    background-color: #000000; /* Darker details background */
    padding: 20px; 
    border-radius: 10px;
}

button { 
    background-color: #555; /* Darker button background */
    color: white; 
    border: none; 
    padding: 10px 15px; 
    margin-top: 10px; 
    cursor: pointer; 
    border-radius: 5px; 
}

button:hover { 
    background-color: #000000; 
}
#nav-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 12px; /* Small gap between buttons */
    flex-wrap: wrap;
}
.Alt {
    position: relative;
    background: #333;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.2em;
    letter-spacing: 0.1em;
    padding: 12px 30px;
    border: 3px solid #5c0407;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.5s;
    z-index: 0;
}

.search-alt-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
    margin-bottom: 20px;
}

input#search {
    padding: 12px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #ffffff;
    color: #333;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

input#search:focus {
    border-color: #4824f8;
    box-shadow: 0 0 8px rgba(46, 46, 46, 0.6);
    outline: none;
}

.Alt:hover {
    letter-spacing: 0.2em;
    background: #3a2c2c;
    border-color: #5d006279; /* Slightly brighter on hover */
}

.Alt::before {
    content: '';
    position: absolute;
    inset: 2px;
    background: #1c1c1c;
    border-radius: 6px;
    z-index: -1;
}

.Alt span {
    position: relative;
    z-index: 1;
}

/* Navbar buttons */
#nav-buttons button {
    font-size: 18px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #612f52, #404b36); /* mint to soft purple */
    color: #d9d6d6;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(255, 255, 255, 0.15);
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

#nav-buttons button:hover {  /*hooooooooooover */
    background: linear-gradient(135deg, #4fd1c5, #8e9de5); /* deeper mint + purple on hover */
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}

#nav-buttons button:active {
    transform: translateY(0) scale(0.97);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}