.text-right {
    text-align: right;
}

/* Main content styling */
body {
    overflow-x: hidden;
}

.special-elite-regular-font {
    font-family: "Special Elite", serif;
    font-weight: 400;
    font-style: normal;
}

/* Full-screen background for particles */
#particleCanvas {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    /* Ensures it doesn’t interfere with other elements */
}

/* Main content styling */
.content {
    position: relative;
    z-index: 2;
    /* Ensures content is above the particle background */
}

/* Floating elements animation */
.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* .wsg-responsive-img {
    pointer-events: none;
} */
/* Responsive images */


.wsg-share-icon {
    color: black;
    font-size: 18px;
}

.wsg-main-navbar {
    z-index: 16;
    position: relative;

}

.wsg-nav-link {
    text-decoration: none;
    color: black;
    font-size: 18px;
}

.wsg-nav-link:hover {
    text-decoration: none;
    color: #020202;
}

.wsg-circular-contact-button {
    position: fixed;
    left: 3%;
    bottom: 4%;
    z-index: 13;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    background-color: #333;
    /* Dark gray for button background */
    border-radius: 50%;
    text-align: center;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    /* position: relative; */
    overflow: hidden;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6), 0 0 15px rgba(0, 0, 0, 0.4);
    /* Blackish glow */
    transition: color 0.4s ease;
    animation: wsg-pulse 1.5s infinite;
}

.wsg-circular-contact-button:hover {
    color: #333;
    /* Dark gray for text */
    background-color: #fff;
    /* White background on hover */
    box-shadow: 0 0 12px rgba(0, 0, 0, 1), 0 0 20px rgba(0, 0, 0, 0.8);
    /* Intense black glow on hover */
}

@keyframes wsg-pulse {
    0% {
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.6), 0 0 15px rgba(0, 0, 0, 0.4);
    }

    50% {
        box-shadow: 0 0 12px rgba(0, 0, 0, 1), 0 0 20px rgba(0, 0, 0, 0.8);
    }

    100% {
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.6), 0 0 15px rgba(0, 0, 0, 0.4);
    }
}

.wsg-comic-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 items per row by default (mobile) */
    gap: 16px;
    justify-items: center;

}

.wsg-comic-card {
    width: 100%;
    /* Fixed width */
    /* height: 350px; */
    /* Fixed height */
    display: flex;
    flex-direction: column;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-decoration: none;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    text-align: left;
    border: 12px solid #fff;
}

.custom-chip {
    font-size: 16px;
}

.wsg-img-container {
    width: 100%;
    /* height: 350px; */
    /* Fixed height for the image container */
    overflow: hidden;
}

.wsg-img-container img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    /* Ensures the image fills the container without distortion */
}

.wsg-text-gray {
    color: #4D4D4D;
}

.wsg-text-high {
    color: #f14930;
}

.wsg-comic-border {
    /* border: 1px solid #3b3636; */
}

.wsg-comic-details-card {
    background: #EFEFEF;
    padding: 16px 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #4d4d4d;
    font-size: 16px;
}

.wsg-comic-details-card i {
    width: 20px;
}

.wsg-comic-details-card a {
    /* font-size: 14px; */
    padding: 6px 0px;
    transition: background-color 0.3s ease;
}

.wsg-comic-details-card a:hover {
    color: #000;
}

.wsg-responsive-img {
    width: 70%;
}


.wsg-auth-container {
    background: #FBF6F7;
}

.wsg-login-details-card {
    /* border-radius: 12px; */
    background: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.wsg-high-btn {
    border: 1px solid #F14930;
    background: #F14930;
    color: #fff;
    transition: .5s;
}

.wsg-high-btn:hover {
    border: 1px solid #F14930;
    background: #fff;
    color: #F14930;
}

.wsg-high-modal-btn {
    border: 1px solid #F14930;
    background: #F14930;
    color: #fff;
    transition: .5s;
    font-size: 12px;
    border-radius: 12px;
}


@media (min-width: 992px) {

    /* lg and up */
    .wsg-comic-details-fixed {
        position: sticky;
        top: 10px;
        /* adjust if you have a navbar */
    }
}

/* Responsive grid for larger screens */
@media (min-width: 576px) {
    .wsg-comic-gallery {
        grid-template-columns: repeat(2, 1fr);
        /* 3 items per row on small screens */
    }
}

@media (min-width: 768px) {
    .wsg-comic-gallery {
        grid-template-columns: repeat(3, 1fr);
        /* 4 items per row on medium screens */
    }
}

@media (min-width: 1200px) {
    .wsg-comic-gallery {
        grid-template-columns: repeat(3, 1fr);
        /* 5 items per row on large screens */
    }
}

@media (max-width: 768px) {
    .wsg-responsive-img {
        width: 90%;
    }
}