body {
    background: #121212;
    color: #e0e0e0;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

.logo h1 {
    color: #eaff31;
    font-size: 2.5em;
    text-shadow: 0 0 15px rgba(234, 255, 49, 0.5);
    margin: 0;
}

.cover {
    width: 50%;
    display: block;
    margin: 0 auto;
}

.label {
    color: #00b4d8;
}

.back-link {
    display: block;
    margin: 0 auto;
    text-decoration: none;
    text-align: center;
    color: #f39c12;
    font-weight: bold;
    font-size: 18px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.back-link:hover {
    color: #9e6a15;
    text-decoration: underline;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.button-container a {
    text-decoration: none;
    padding: 11px 22px;
    border-radius: 8px;
    color: #ffffff;
    border: 1.5px solid #5a4fff;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 15px;
    background: linear-gradient(135deg, rgba(90, 79, 255, 0.3) 0%, rgba(90, 79, 255, 0.1) 100%);
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.button-container a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(234, 255, 49, 0.4), transparent);
    transition: left 0.4s ease;
    z-index: 0;
}

.button-container a:hover::before {
    left: 100%;
}

.button-container a:hover {
    background: linear-gradient(135deg, #5a4fff 0%, #9c27b0 100%);
    color: #eaff31;
    border-color: #eaff31;
    box-shadow: 0 0 20px rgba(90, 79, 255, 0.6), 0 0 40px rgba(234, 255, 49, 0.2);
    transform: translateY(-3px);
}

.link-style {
    color: #f39c12;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.link-style:hover {
    color: #9e6a15;
    text-decoration: underline;
}
footer {
    background-color: #1f1f1f;
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #333;
}
footer p {
    margin: 0;
    color: #757575;
}
.album-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.album-item {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a3a 100%);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.album-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(90, 79, 255, 0.3);
}
.album-img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    margin-right: 15px;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.album-item:hover .album-img {
    transform: scale(1.05);
}
.album-name {
    font-size: 18px;
    font-weight: bold;
    color: #eaff31;
    transition: color 0.3s ease;
}
.album-item:hover .album-name {
    color: #5a4fff;
}

/* Manga page specific styles */
.manga-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a3a 100%);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.manga-cover {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    display: block;
    margin: 0 auto 20px;
}

.manga-title {
    font-size: 2rem;
    margin: 10px 0;
    color: #00b4d8;
    text-align: center;
}

.manga-sinopsis {
    margin: 15px 0;
    font-size: 1rem;
    line-height: 1.6;
}

.manga-detalles {
    font-size: 0.9rem;
    color: #a9a9a9;
    margin: 10px 0;
    line-height: 1.5;
}