body {
    font-family: 'Roboto', Arial, sans-serif;
    background: #f5f5f5;
    color: #333;
}
.header-custom {
    background: linear-gradient(to right, #f0f8ff, #e6f2ff);
    border-bottom: 3px solid #4a86e8;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.bold{
    font-weight: bold !important;
}
.site-title {
    color: #0066cc;
    font-size: 36px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    font-family: 'Pacifico', cursive;
    margin-bottom: 15px;
}
.nav-link-custom {
    color: #ffa500 !important;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    padding: 5px 15px !important;
    border-radius: 5px;
    margin: 0 5px;
}
.nav-link-custom:hover {
    background-color: #fff3e0;
    transform: translateY(-2px);
}
.sidebar {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}
.sidebar-item {
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border-left: 3px solid transparent;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-weight: bold;
}
.sidebar-item i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    color: #4a86e8;
}
.sidebar-item:hover {
    background-color: #f0f8ff;
    border-left: 3px solid #4a86e8;
}
.content-box {
    border: none;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
}
.content-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #8e44ad, #9b59b6);
    border-radius: 8px 8px 0 0;
}
.content-box h2 {
    margin-top: 5px;
    color: #8e44ad;
    font-size: 22px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
}
.content-box h2 i {
    margin-right: 10px;
    color: #9b59b6;
}
.manga-item {
    text-align: center;
    border-radius: 8px;
    padding: 10px;
    background: #fafafa;
    transition: 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    height: 100%;
}
.manga-item img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    height: 240px;
    object-fit: cover;
}
.manga-item p {
    margin-top: 10px;
    font-weight: bold;
    color: #555;
}
.manga-item:hover {
    box-shadow: 0px 6px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}
.manga-item .rating {
    color: #ffa500;
    margin-top: 5px;
}
.manga-item .badge-custom {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff5722;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    z-index: 10;
}
.manga-item .category {
    font-size: 12px;
    color: #777;
    margin-top: 5px;
}
.footer-custom {
    background: linear-gradient(to right, #f0f8ff, #e6f2ff);
    border-top: 3px solid #4a86e8;
    padding: 20px 0;
}
.footer-item {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.footer-item i {
    margin-right: 8px;
    color: #4a86e8;
}
.footer-item:hover {
    background-color: #fff3e0;
    transform: translateY(-2px);
}
.search-box {
    position: relative;
    margin-bottom: 15px;
}
.search-box input {
    width: 100%;
    padding: 10px 15px 10px 40px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 16px;
    transition: all 0.3s;
}
.search-box input:focus {
    border-color: #4a86e8;
    box-shadow: 0 0 8px rgba(74, 134, 232, 0.3);
}
.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
}
a{
    text-decoration: none;
}
@media (max-width: 768px) {
    .site-title {
        font-size: 28px;
        font-family: 'Pacifico', cursive;
    }
    .nav-link-custom {
        font-size: 16px;
        padding: 5px 10px !important;
    }
    .content-box {
        padding: 15px;
    }
    .manga-item img {
        height: 200px;
    }
}