
.coupon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.coupon-card {
    aspect-ratio: 13 / 6;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgb(95 95 95 / 24%), 0 1px 3px rgba(0, 0, 0, 0.05);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.coupon-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15), 0 5px 10px rgba(0,0,0,0.1);
}

.coupon-card.style-1 { background: linear-gradient(135deg, #6B73FF 0%, #000DFF 100%); }
.coupon-card.style-2 {background: linear-gradient(135deg, #cc9ef5 0%, #dbc4ed 100%);}
.coupon-card.style-3 { background: linear-gradient(135deg, #FF6B93 0%, #FF004D 100%); }
.coupon-card.style-4 { background: linear-gradient(135deg, #ff6b6b 0%, #ff5600 100%); }
.coupon-card.style-5 { background: linear-gradient(135deg, #6bff8d 0%, #029327 100%); }

/* Chip Effect */
.coupon-card h2::before {
    content: '';
    position: absolute;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    width: 50px;
    height: 40px;
    left: 0;
    top: 0;
    border-radius: 8px;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
}

.coupon-card h2::after {
    content: '';
    position: absolute;
    background: url('https://www.svgrepo.com/show/339037/chip-debit.svg');
    width: 50px;
    height: 40px;
    left: 0;
    top: 0;
    border-radius: 8px;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
}

/* Image Container */
.card-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 120px;
    background-position: left;
    background-repeat: no-repeat;
    border-radius: 500px 0 0 0;
    border: 0;
    box-shadow: none;
    opacity: 1;
    background: #fff !important;
    opacity: 0.1;
}

/* Card Content */
.card-header {
    min-height: 40px;
}

.card-header h3 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.8;
    margin: 0;
    color: #000000;
}

.card-body {
    text-align: left;
    z-index: 1;
}

.offer-text {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
    color: #fff;
    position: relative;
    padding: 0 0 11px 65px;
}

.description {
    font-size: 13px;
    opacity: 0.8;
    margin: 0;
    max-width: 80%;
}

.card-footer {
    margin-top: 10px;
}

.coupon-code {
    background: rgb(182 0 255 / 36%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 8px 8px 8px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(5px);
}

.coupon-code span {
    font-family: 'SF Mono', 'Courier New', monospace;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    user-select: all;
}

.copy-btn {
    background: white;
    color: #333;
    border: none;
    border-radius: 8px;
    padding: 8px 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.copy-btn:hover {
    background: #f0f0f0;
}

.copy-btn.copied {
    background: #28a745;
    color: white;
}

/* Banner Styles */
.bf-banner {
    width: 100%;
    min-height: 190px;
    background: linear-gradient(135deg, #d300ff66 -13%, #6e57e5 100%);
    color: #ffd700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    text-align: center;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    box-shadow: 0 2px 24px rgba(140, 104, 16, 0.35);
    border-radius: 28px;
}

.banner-content {
    max-width: 100%;
    margin: auto;
}

.banner-icon {
    margin-bottom: 0;
}

.bf-banner h1 {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 12px;
    color: #ffd700;
    text-shadow: 0 1px 8px rgba(80,60,0,0.20);
}

.bf-banner p {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffd700;
    opacity: 0.88;
    margin-bottom: 0;
    text-shadow: 0 1px 8px rgba(80,60,0,0.15);
}

/* Responsive */
@media (max-width: 700px) {
    .coupon-grid {
        grid-template-columns: 1fr;
        margin-bottom: 80px;
    }

    .bf-banner h1 {
        font-size: 1.65rem;
    }

    .bf-banner p {
        font-size: 1rem;
    }

    .banner-icon svg {
        width: 38px;
        height: 38px;
    }
}

.desktop-banner-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0;
}

.mobile-banner-image {
    display: none;
    max-width: 100%;
    height: auto;
    margin: 0 auto 16px;
}

.trust-banner {
    padding-top: 15px;
}

@media (max-width: 700px) {
    .desktop-banner-image {
        display: none;
    }

    .mobile-banner-image {
        display: block;
    }

    .coupon-card {
        aspect-ratio: 13 / 10;
    }

    .bf-banner {
        padding: 0px;
        border-radius: 20px;
    }

    .container.laylaylay {
        padding-top: 20px;
    }

    .offer-text {
        font-size: 2.5rem;
        padding: 0 0 25px 65px;
    }
}

@media (max-width: 380px) {
    .coupon-card {
        aspect-ratio: 13 / 10;
        padding: 15px;
    }

    .bf-banner {
        padding: 0px;
        border-radius: 20px;
    }

    .container.laylaylay {
        padding-top: 20px;
    }

    .offer-text {
        font-size: 2.5rem;
        padding: 0 0 25px 65px;
    }
}
