body { 
    font-family: sans-serif; 
    text-align: center; 
}

.card {
    border: 1px solid #ddd;
    padding: 10px;
    margin: 10px;
    text-align: center;
    width: 200px;
    display: inline-block;
}
.filter-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1em;
    color: #333;
    margin: 4px 0;
    cursor: pointer;
}

.filter-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #555;
    cursor: pointer;
}
.search-alt-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
    margin-bottom: 20px;
}

.Alt {
    position: relative;
    background: #333;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.7em;
    letter-spacing: 0.1em;
    padding: 2px 2px;
    border: 3px solid #00a2ff;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.5s;
    z-index: 0;
}

.Alt:hover {
    letter-spacing: 0.2em;
    background: #555;
    border-color: #00ba32; /* 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;
}

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;
}
.progress {
    width: 100%;
    height: 5px;
    background: #ddd;
    margin-top: 10px;
    position: relative;
}
.progress-bar {
    height: 100%;
    width: 0;
    background: #4CAF50;
    position: absolute;
}

body {
    text-align: center;
    margin: 0;
    padding: 0; 
    display: flex;
    flex-direction: column;
    align-items: center;
}   

#nav-buttons button {
    font-size: 18px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #74ebd5, #acb6e5); /* mint to soft purple */
    color: #333;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 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);
}
.video-background {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}