/*CODE COMPLETED*/

/*Comic Series CSS*/
.comicseriesBackground {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgb(37, 37, 37);
    background-image: linear-gradient(-30deg,
            rgb(113, 195, 101, 0.25) 0%,
            rgba(43, 73, 39, 0) 40%,
            rgba(43, 73, 39, 0) 70%,
            rgb(251, 255, 250, 0.15) 100%),
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 700 700' width='700' height='700' opacity='0.1'><defs><filter id='nnnoise-filter' x='-20%' y='-20%' width='140%' height='140%' filterUnits='objectBoundingBox' primitiveUnits='userSpaceOnUse' color-interpolation-filters='linearRGB'><feTurbulence type='fractalNoise' baseFrequency='0.2' numOctaves='4' seed='15' stitchTiles='stitch' x='0%' y='0%' width='100%' height='100%' result='turbulence'></feTurbulence><feSpecularLighting surfaceScale='11' specularConstant='0.9' specularExponent='20' lighting-color='%23ffffff' x='0%' y='0%' width='100%' height='100%' in='turbulence' result='specularLighting'><feDistantLight azimuth='3' elevation='103'></feDistantLight></feSpecularLighting></filter></defs><rect width='700' height='700' fill='transparent'></rect><rect width='700' height='700' fill='%23ffffff' filter='url(%23nnnoise-filter)'></rect></svg>");
    background-repeat: repeat;
    background-size: cover;
    background-attachment: fixed;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.5s;
    overflow: hidden;
    z-index: 500;
}

.comicseriesBackground.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: 0.5s;
}

.comicseriesTH {
    width: 100%;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.comicseriesTH h1 {
    color: #FFFFFF;
    font-weight: bold;
    font-size: clamp(30px, 4vw, 40px);
    background: rgba(0, 0, 0, 0.05);
    border: solid 1px rgba(113, 195, 101, 0.15);
    backdrop-filter: blur(10px);
    box-shadow:
        0 0 18px rgba(113, 195, 101, 0.1);
    border-radius: 8px;
    text-decoration: none;
    margin: 0;
    padding: 10px;
    cursor: default;
    transition: 0.75s;
}

.comicseriesTH h1:hover {
    color: rgb(232, 255, 229);
    background: rgba(255, 255, 255, 0.05);
    text-shadow:
        -4px -4px 8px rgba(255, 255, 255, 0.25),
        8px 8px 8px rgba(0, 0, 0, 0.25);
    box-shadow:
        0 0 18px rgba(113, 195, 101, 0.35);
    transition: 0.25s;
}

.comicseriesLayout {
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    height: 100%;
    padding-top: 10px;
}

.comicseriesTab {
    height: 560px;
    width: 240px;
    padding: 10px;
    background: rgba(44, 57, 42, 0.25);
    backdrop-filter: blur(20px);
    border: 1px solid rgb(158, 255, 143, 0.15);
    border-top-left-radius: 20px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    box-shadow:
        5px 5px 20px rgba(0, 0, 0, 0.25),
        -5px -5px 20px rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 40;
    transition: 0.75s
}

.comicseriesImg {
    border: 1px solid rgb(158, 255, 143, 0.15);
    border-radius: 10px 20px 5px 5px;
    -webkit-user-drag: none;
    user-select: none;
    transition: 0.75s;
}

.comicseriesTab h2 {
    color: white;
    border-bottom: 1px solid rgb(158, 255, 143, 0.15);
    font-size: 24px;
    margin: 0;
    padding: 6px;
    text-align: center;
}

.comicseriesDesc {
    flex: 1;
    min-height: 0;
    width: 100%;
    background: rgb(180, 255, 168, 0.025);
    border-radius: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 8px;
    overflow-y: scroll;
    box-sizing: border-box;
    transition: 0.75s;

    mask-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 1) 10%,
            rgba(0, 0, 0, 1) 90%,
            rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 1) 10%,
            rgba(0, 0, 0, 1) 90%,
            rgba(0, 0, 0, 0) 100%);
}

.comicseriesDesc::-webkit-scrollbar {
    width: 6px;
}

.comicseriesDesc::-webkit-scrollbar-thumb {
    background: rgba(158, 255, 143, 0.15);
    border-radius: 8px;
}

.comicseriesDesc::-webkit-scrollbar-thumb:hover {
    background: rgba(158, 255, 143, 0.3);
}

.comicseriesDesc p {
    color: white;
    width: 100%;
    font-size: 14px;
    margin: 0;
    text-align: left;
    line-height: 1.5;
}

.comicseriesLinks {
    height: 46px;
    padding-top: 6px;
    gap: 10px;
}

.comicseriesLinks a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    gap: 6px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 8px;
    border: 1px solid rgb(158, 255, 143, 0.15);
    box-shadow:
        5px 5px 8px rgba(0, 0, 0, 0.15),
        -2px -2px 8px rgba(255, 255, 255, 0.1);
    border-radius: 8px 8px 0 16px;
    transition: 0.75s;
}

.comicseriesLinks i {
    position: absolute;
    left: 12px;
    font-size: 24px;
    transition: 0.75s;
}

.comicseriesLinks .text-label {
    display: block;
}

.comicseriesLinks a:hover {
    color: rgb(203, 255, 199);
    background: rgba(52, 88, 46, 0.25);
    box-shadow: 0 0 20px rgba(158, 255, 143, 0.15);
    transform: scale(1.025);
}

.comicseriesTab:hover {
    transform: scale(1.05);
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(158, 255, 143, 0.25);
    transition: 0.25s;
}

.comicseriesTab:hover .comicseriesImg {
    border-radius: 10px 10px 5px 5px;
    transition: 0.25s;
}

.comicseriesTab:hover .comicseriesLinks a {
    border-radius: 8px 8px 10px 10px;
    transition: 0.25s;
}

/*Comic Series Open*/