body { 
    font-family: Arial, sans-serif; 
    background-color: #1e1e1e; 
    color: #ffffff; 
    margin: 0; 
    padding: 100px; 
} 

h1 { 
    text-align: center; 
    color: #0082e1; 
    font-size: 3em;
    margin-bottom: 2rem;
    font-weight: 600;
} 

ul {
    list-style-type: none;
    padding: 0;
    margin: 2rem 0;
  }
  
ul li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
    transition: transform 0.2s ease;
}

ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0096ff;
    font-weight: bold;
}

ul li a {
    color: #0096ff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

ul li a:hover {
    color: #00bfff;
    text-decoration: underline;
}

.search-container {
    max-width: 600px;
    margin: 0 auto 30px auto;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
    background-color: #2d2d2d;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    outline: none;
    box-sizing: border-box;
}

.search-input::placeholder {
    color: #aaaaaa;
}

.search-input:focus {
    box-shadow: 0 0 0 2px #444;
}

.clear-search {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #aaaaaa;
    cursor: pointer;
    font-size: 18px;
    display: none;
}

.section { 
    margin-bottom: 30px; 
} 

.section h2 { 
    color: #ffffff; 
    border-bottom: 2px solid #444; 
    padding-bottom: 10px; 
} 

.items { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 20px; 
} 

.item { 
    background-color: #2d2d2d; 
    border-radius: 8px; 
    padding: 15px; 
    width: 200px; 
    text-align: center; 
    transition: transform 0.2s, opacity 0.3s; 
} 

.item:hover { 
    transform: scale(1.05); 
}

.item img { 
    width: 50px; 
    height: 50px; 
    margin-bottom: 10px; 
} 

.item a { 
    color: #ffffff; 
    text-decoration: none; 
    position: relative;
} 

.item-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.item-description {
    display: none;
    position: absolute;
    background-color: #333;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 10;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    margin-top: 10px;
    font-size: 14px;
    color: #ddd;
    text-align: center;
}

.item-description:after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -8px;
    width: 0;
    height: 0;
    border-bottom: 8px solid #333;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
}

.item a:hover { 
    text-decoration: underline; 
}

.item a:hover .item-description {
    display: block;
}

.hidden {
    display: none;
}

.empty-section {
    display: none;
}

.no-results {
    text-align: center;
    padding: 30px;
    font-size: 18px;
    color: #aaaaaa;
    display: none;
}

@media (max-width: 768px) {
    .items {
        justify-content: center;
    }
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #202324;
    font-size: 14px;
    color: #c8c3bc;
}