#index-section {
    text-align: center;
}

#index-h2-search {
    font-size: 24px;
    margin-bottom: 20px;
}

#index-form,
#results-form {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 10px 0;
}

#index-form-input {
    background-color: #3f3f3f;
    border: 1px solid #252525;
    border-right: none;
    padding: 15px;
    font-size: 17px;
    margin-right: -1px;
    border-radius: 4px 0 0 4px;
    color: #fff;
    width: 70%;
}

#index-form-input::placeholder {
    color: #969696;
}

#index-form-input:focus {
    outline: none;
}

#index-form-btn {
    border: 1px solid #252525;
    background-color: #3f3f3f;
    color: #e04444;
    border-left: none;
    padding: 15px;
    font-size: 17px;
    margin: 0;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

#index-form-btn:active {
    color: #000;
}

#see-more {
    background-color: #383838;
    border: none;
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    margin: 25px 0;
}

#a-see-more {
    background-color: #e04444;
    padding: 10px;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#a-see-more:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

#latest {
    margin: 0 10%;
    text-align: left;
    padding: 30px;
    background-color: #2e2e2e;
    border-radius: 20px;
}

#latest h2 {
    font-size: 22px;
    margin-bottom: 15px;
}

#latest ul {
    list-style: none;
    padding-left: 0;
}

#latest ul li {
    margin-bottom: 10px;
}

#latest ul li a {
    color: #e04444;
    text-decoration: none;
    transition: color 0.2s;
}

#latest ul li a:hover {
    color: #ff6666;
}