body {
    margin: 0;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.container {
    position: relative;
    width: 300px;
    height: 600px;
    overflow: hidden;
    border: 1px solid #000;
    box-sizing: border-box;
    opacity: 0;
    /* top: 100px;
  left: 100px; */
}
.logo {
    position: absolute;
    top: 4%;
    left: 50%;
    width: 47%;
    height: auto;
    transform: translateX(-50%);
    /* filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.8)); */
}
.logo-behind {
    position: absolute;
    top: 45px;
    left: 50%;
    width: 47%;
    height: auto;
    transform: translateX(-50%);
}
.logo img,
.logo-behind img {
    width: 100%;
    height: auto;
}
video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.intro-container {
    position: absolute;
    width: 100%;
    height: 100%;
}
.reveal-container {
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: absolute;
    opacity: 0;
    background-color: #f0f0f0;
}
.reveal-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 600px;
    background-image: url("../img/Background.jpg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.coupon-container {
    display: flex;
    flex-direction: column;
    gap: 11px;
    align-items: center;
    bottom: 46px;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    width: 193px;
}
.coupon-box {
    width: 193px;
    height: 117px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* transition: transform 0.3s ease, filter 0.1s ease; */
    filter: drop-shadow(3px 3px 0px rgba(0, 0, 0, 0.7));
}
.coupon-box:hover {
    /* transform: scale(1.1);
  filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.9)); */
}
.coupon-box img {
    width: 100%;
}
/* Swipe container css 
*/

.slider-container {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: auto;
    width: 260px;
    height: 50px;
    /* background-size: 200% auto; */
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease;
    /* background-color: #00000096; */
    background-color: #6caaff96;
    background-size: 200% 100%;
}

.shimmer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(0, 0, 0, 0) 100%
    );
    background-size: 200% 100%;
    background-position: 0% 0%;
    pointer-events: none;
}

.track-text {
    position: absolute;
    font-weight: bold;
    height: 100%;
    text-align: center;
    line-height: normal;
    color: #000;
    font-size: 14px;
    user-select: none;
    pointer-events: none;
    z-index: 2;
    transition: color 0.3s ease;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

.handle {
    position: absolute;
    width: 35px;
    height: 35px;
    top: 7px;
    left: 15px;
    background: #eee;
    border-radius: 50%;
    cursor: grab;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.handle svg {
    width: 16px;
    height: 16px;
    fill: #333;
}
.intro-container .clickable {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
}
