
body {
    background-color: #181818;
    color: #c0b8b1;
    font-family: "Georgia", serif;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    animation: fadeIn 1.5s ease-in;
}
.container {
    width: 80%;
    max-width: 600px;
}
h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #b0a89f;
}
p {
    font-size: 1.1rem;
    opacity: 0.85;
}
.tool-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.tool-card {
    background: #24211f;
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(50, 50, 50, 0.3);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
    animation: fadeSlideIn 1s ease-in forwards;
}
.tool-card:hover {
    transform: translateY(-5px);
}
a {
    text-decoration: none;
    color: #9c8576;
    font-weight: bold;
    transition: color 0.3s;
}
a:hover {
    color: #bfa38a;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}