body{
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
.reveal-code
    {
        position: relative;
        padding: 15px 30px;
        font-size: 18px;
        text-align: center;
        color: #fff;
        background-color:#7a1bb4;
        text-decoration: none;
        border: 2px dashed #fff; /* Dashed border to mimic a coupon */
        border-radius: 5px;
        cursor: pointer;
        overflow: hidden;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        animation: pulse 2s infinite;
    }

/* Pulsating Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
}
@keyframes fadeIn {
from {
    opacity: 0;
    transform: scale(0.9);
}
to {
    opacity: 1;
    transform: scale(1);
}
}

@keyframes slideInCorner {
from {
    transform: translate(50%, -50%) rotate(45deg);
    opacity: 0;
}
to {
    transform: translate(0, 0) rotate(45deg);
    opacity: 1;
}
}

@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
}
40% {
    transform: translateY(-8px);
}
60% {
    transform: translateY(-4px);
}
}
.reveal-code::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.reveal-code:hover {
    transform: scale(0.97);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.reveal-code:hover .coupon-code{
    display: block;
}

.reveal-code:hover::before {
    transform: scaleX(1);
}

.reveal-code:active {
    transform: scale(0.95);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInCorner {
    from {
        transform: translate(50%, -50%) rotate(45deg);
        opacity: 0;
    }
    to {
        transform: translate(0, 0) rotate(45deg);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

    .get {
        width: 100%;
        background: linear-gradient(to right, #7a1bb4, #ab47bc);
        color: #ffffff;
        text-align: center;
        padding: 10px 15px;
        border-radius: 25px;
        border: 1px dotted #ffffff;
        text-decoration: none;
        box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3), -3px -3px 10px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
        margin-right: 10px;
        display: inline-block;
        font-size: 16px;
    }

    .get:hover {
        background: linear-gradient(to right, #8e24aa, #d500f9); /* Brighter hover gradient */
        color: #ffffff; /* Ensure text remains readable */
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(142, 36, 170, 0.7), 0 0 30px rgba(213, 0, 249, 0.5); /* Purple-themed glow */
        animation: fadein 0.5s; /* Bounce effect on hover */
    }
    .store-info-card {
        background-color: #f3e6ff;
        border-radius: 25px;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    @media (max-width: 768px) {
        .get {
            width: 100%;
            padding: 12px 20px;
            font-size: 14px;
            margin-right: 0;
            margin-bottom: 10px;
        }
        .reveal-code {
            padding: 12px 20px;
            font-size: 16px;
            width: 100%;
        }

    }
