@font-face {
    font-family: 'Lalezar';
    src: url(../fonts/Lalezar-Regular.otf);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    transition-duration: 0.5s;
    font-family: lalezar;
}

.store-slider {
    width: 95%;
    margin: 20px auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.slider-images {
    display: flex;
    width: 100%;
    transition: transform 0.8s ease-in-out;
}

.slider-item {
    width: 100%;
    flex-shrink: 0;
    aspect-ratio: 16/6;
    object-fit: cover;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 100%;
    z-index: 10;
    transition-duration: 0.3s;
    aspect-ratio: 1/1;
    width: 40px;
}

.slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

#slider-prev {
    left: 10px;
    
}

#carousel-next {
    right: 10px;
}

#carousel-go {
    position: absolute;
    top: unset;
    bottom: 10%;
    right: 0px;
    transform: translateX(-50%);
    color: white;
    border: none;
    padding: 20px 40px;
    cursor: pointer;
    border-radius: 5px;
}

.store-header {
    text-align: center;
    margin: 20px 0;
}

.store-header h1 {
    font-size: 2.5em; /* Increased font size for the main heading */
    color: #333; /* Darker color for better readability */
    margin-bottom: 10px; /* Added margin for spacing */
}

.store-header p {
    font-size: 1.2em; /* Increased font size for the paragraph */
    color: #666; /* Slightly darker color for better readability */
    line-height: 1.6; /* Improved line height for better readability */
    padding: 0 20px; /* Added padding for better spacing on smaller screens */
}

.ad {
    position: relative;
    width: 95%;
    padding: 20px;
    margin-left: 2.5%;
    background-color: #f0f0f0;
    border-radius: 10px;
    display: flex;
    flex-direction: row-reverse;
    overflow-x: auto;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.add-container {
    display: flex;
    width: 20%;
    min-width: 200px;
    flex-direction: column;
    align-items: center;
    background-color: gainsboro;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    margin: 0 10px;
    flex-shrink: 0;
}

.add-container img {
    width: 100%;
    border-radius: 10px;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.add-container h2 {
    font-size: 1.3em; /* Adjusted font size */
    margin-bottom: 5px;
    color: #333; /* Darker color for better readability */
}

.add-container h3 {
    font-size: 1em; /* Adjusted font size */
    color: #555; /* Slightly darker color for better readability */
}

.add-container h4 {
    font-size: 1em; /* Adjusted font size */
    color: #555; /* Slightly darker color for better readability */
    text-shadow: #ffffff 0px 0px 5px;
}

.trust-banner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.8), rgba(127, 255, 212, 0.4)),url(../images/emojis.jpeg) no-repeat center center/cover;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background-size: 130%, cover;
    background-repeat: no-repeat;
    background-position: 100% 100%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    width: 95%;
    margin: 20px auto;
    height: 600px;
    border-radius: 10px;
}

.trust-banner img {
    position: absolute;
    width: 50%;
    left: 50px;
    bottom: 100px;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    animation: subtle-float 10s infinite alternate ease-in-out; /* Add animation to the image */
}

.text {
    position: absolute;
    right: 0;
    text-align: right;
    z-index: 1;
    font-size: 1.6em;
    color: #000000;
    padding: 20px;
    width: 50%;
    background-color: rgba(192, 192, 192, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    right: 10px;
    box-shadow: 10px 10px 10px rgb(59, 59, 59), -10px -10px 10px rgb(235, 235, 235);
}

.text button {
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 100em;
    transition: background-color 0.3s ease;
    background-color: transparent;
    border: 2px solid #414141;
    padding: 5px 20px 5px 20px;
}

.text button:hover {
    background-color: rgba(192, 192, 192, 0.4);
}

.open-btn progress {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    z-index: -1;
    filter: drop-shadow(0px 0px 10px white);
}
.open-btn progress::-webkit-progress-bar {
    border-radius: 5px;
    background: transparent;
    z-index: -1;
}

.open-btn progress::-webkit-progress-value {
    border-radius: 5px;
    background: black;
    cursor: pointer;
    z-index: -1;
    box-shadow: 0px 0px 10px gray inset;
}


@media (max-width: 768px) {
    .store-slider {
        width: 100%;
    }

    .slider-item {
        aspect-ratio: 16/9;
    }

    #carousel-go {
        bottom: 0;
        padding: 0;
        right: unset;
        transform: none;
        width: 100%;
        font-size: 20px;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .trust-banner {
        position: relative;
        width: 100%;
        flex-direction: column;
        overflow: hidden;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .trust-banner img {
        position: absolute;
        width: 60%;
        height: auto;
        max-width: none;
        position: relative;
        left: unset;
        top: 10px;
        animation: none !important;
    }

    .text {
        position: relative;
        width: 100%;
        text-align: center;
        right: unset;
        /* top: -150; */
        bottom: 100px;
        padding: 10px;
        margin-top: 20px;
    }
    
    .gradient-text,.text {
        animation: unset !important;
        color: white !important;
    }

    /* .add-container {
        width: 100%;
        min-width: unset;
        height: auto;
        position: relative;
        top: unset;
        right: unset;
        margin: 10px 0;
    }

    .add-container img {
        height: auto;
        width: 100%;
        max-width: 100%;
        top: 0;
        left: 0;
        margin: 0;
    }

    .add-container h2,h3 {
        width: 100%;
        text-align: center;
        right: 0;
        top: 0;
        margin: 5px 0;
        padding: 3px;
    }
    
    .add-container h3 {
        top: 0;
        text-align: center;
    }

    .ad {
        float: none;
        width: 100%;
        margin-bottom: 20px;
        flex-direction: column;
        align-items: center;
    } */
}
.ad-fix {
    position: relative;
}

.open-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 100px;
    z-index: 10;
    transition-duration: 0.3s;
    overflow: hidden;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 100%;
    z-index: 10;
    aspect-ratio: 1/1;
    width: 40px;
}

.scroll-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

#scroll-left {
    left: 2.5%;
}

#scroll-right {
    right: 2.5%;
}

/* Gradient Text Animation */
.gradient-text,.text {
    background: linear-gradient(120deg,rgb(45, 45, 45) 40%,#fffc,rgb(45, 45, 45) 100%);
    background-size: 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: gradient 10s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes subtle-float {
    0% {
        transform: scale(1.0) rotate(0deg);
        filter: drop-shadow(10px 10px 2px rgba(0, 0, 0, 1));
    }
    100% {
        transform: scale(1.05) rotate(5deg); /* Increased scale and rotation */
        filter: drop-shadow(40px 40px 7px rgba(0, 0, 0, 1));
    }
}

.scroll-float {
  overflow: hidden;
}

.scroll-float-text {
  display: inline-block;
  font-size: clamp(1.6rem, 8vw, 10rem);
  font-weight: 900;
  text-align: center;
  line-height: 1.5;
}

.char {
  display: inline-block;
}

body.dark-mode .store-header h1 ,
body.dark-mode .store-header p {
    color: #e0e0e0;
}

body.dark-mode .ad{
    background-color: gray;
    color: silver;
}

body.dark-mode .add-container h4 {
    color: #e0e0e0; /* Bright green for better visibility in dark mode */
    text-shadow:  none; /* Removed text shadow for clarity */
}

body.dark-mode .add-container {
    background-color: #5c5c5c; /* Darker background for better contrast */
    color: #e0e0e0; /* Lighter text color for readability */
}
body.dark-mode .add-container h2,
body.dark-mode .add-container h3{
    color: #e0e0e0;
}

body.dark-mode {
    background-color: #222 !important;
    color: #e0e0e0;
}
