/* CSS Variables for Light and Dark Modes */
:root {
    --bg-primary: #f8f9fa;
    --bg-overlay: rgba(248, 249, 250, 0.75);
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --card-bg: rgba(255, 255, 255, 0.95);
    --border-color: rgba(0, 0, 0, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.1);
}

[data-bs-theme="dark"] {
    --bg-primary: #1a1a1a;
    --bg-overlay: rgba(26, 26, 26, 0.75);
    --text-primary: #e2e8f0;
    --text-secondary: #a0aec0;
    --card-bg: rgba(45, 45, 45, 0.95);
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.5);
}

/* Media Page Container */
.media-page-container {
    margin-top: 120px;
}

/* Hero Banner Styles */
.media-hero-banner {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: center;
    width: 100%;
}

.media-hero-banner-gradient {
    position: relative;
    height: 350px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.media-hero-banner-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 700px;
    line-height: 1.7;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Section Styles */
.media-page-content {
    background-color: var(--bg-primary);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 60vh;
    position: relative;
    transition: opacity 0.3s ease-in-out;
}

.media-page-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-overlay);
    backdrop-filter: blur(3px);
    z-index: 1;
}

.media-page-content .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0;
}

/* Countdown Timer Section */
.countdown-section {
    display: flex;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    margin-top: -125px;
    z-index: 10;
    margin-bottom: 50px;
    padding: 0 20px;
}

.countdown-with-coupon-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
}

.countdown-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.6) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 18px 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.4);
    text-align: center;
    flex: 1;
    min-width: 500px;
}

[data-bs-theme="dark"] .countdown-container {
    background: linear-gradient(135deg, rgba(40, 40, 40, 0.7) 0%, rgba(30, 30, 30, 0.65) 100%);
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.countdown-header {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 0.3rem;
}

.countdown-header i {
    color: #667eea;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.time-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #667eea;
    line-height: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 10px 15px;
    border-radius: 14px;
    background-color: rgba(102, 126, 234, 0.08);
    min-width: 75px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
}

[data-bs-theme="dark"] .time-value {
    background-color: rgba(102, 126, 234, 0.12);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.time-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.time-separator {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    opacity: 0.4;
    padding-bottom: 12px;
}

/* Help Section */
.help-section .alert {
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    color: #1e40af;
    border-radius: 12px;
    padding: 1.5rem;
}

/* Products Tabs Section */
.products-tabs-section {
    margin-bottom: 3rem;
}

.products-tabs-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    padding: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

[data-bs-theme="dark"] .products-tabs-wrapper {
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.4) 0%, rgba(30, 30, 30, 0.3) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.product-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid transparent;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

[data-bs-theme="dark"] .product-tab {
    background: rgba(45, 45, 45, 0.6);
}

.product-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0) 0%, rgba(102, 126, 234, 0) 100%);
    transition: all 0.3s ease;
    z-index: 0;
}

.product-tab:hover {
    border-color: #667eea;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

[data-bs-theme="dark"] .product-tab:hover {
    background: rgba(55, 55, 55, 0.8);
}

.product-tab:hover::before {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.product-tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    transform: translateY(-2px) scale(1.02);
}

.product-tab.active::before {
    background: rgba(255, 255, 255, 0.1);
}

.product-tab.active .tab-name,
.product-tab.active .tab-count {
    color: white;
}

.product-tab:not(.active) .tab-name {
    color: var(--text-primary);
    font-weight: 600;
}

.product-tab:not(.active) .tab-count {
    color: var(--text-secondary);
    font-weight: 500;
}

.tab-image {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(247, 250, 252, 0.5);
    position: relative;
    z-index: 1;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

[data-bs-theme="dark"] .tab-image {
    background: rgba(60, 60, 60, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

.product-tab:hover .tab-image {
    transform: scale(1.05);
    border-color: rgba(102, 126, 234, 0.3);
}

.product-tab.active .tab-image {
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.tab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tab-content {
    flex: 1;
    text-align: left;
    display: block !important;
    position: relative;
    z-index: 1;
}

.tab-name {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.3;
}

.tab-count {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Product Denominations Section */
.product-denominations-section {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.product-denominations-section.active {
    display: block;
}

/* Denomination Card Styles - PlayStation Network Card Style */
.denomination-card {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.denomination-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.denomination-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.denomination-card:hover::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.card-overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    text-decoration: none;
}

.discount-ribbon {
    position: absolute;
    top: 8px;
    right: -6px;
    z-index: 3;
}

.discount-ribbon span {
    display: block;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 3px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 3px 0 0 3px;
    box-shadow: 0 2px 6px rgba(255, 107, 53, 0.4);
}

.card-image-wrapper {
    position: relative;
    height: 100px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    z-index: 3;
    pointer-events: none;
}

.card-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: brightness(1.2);
}

.denomination-card:hover .card-image {
    transform: scale(1.03);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, transparent 50%, rgba(0, 0, 0, 0.1) 100%);
}

.card-content {
    padding: 12px;
    background: transparent;
    position: relative;
    z-index: 3;
    pointer-events: none;
}

.denomination-header {
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.denomination-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.denomination-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    flex: 1;
    margin: 0;
}

.discount-badge-inline {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 2px 6px;
    font-size: 0.6rem;
    font-weight: 700;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(255, 107, 53, 0.4);
    margin-left: 8px;
}

.denomination-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.subproduct-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 4px;
    backdrop-filter: blur(3px);
}

.country-flag-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.country-flag-badge:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.15);
}

.country-name-small {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.price-section {
    margin-bottom: 8px;
    padding: 8px 0;
    position: relative;
    z-index: 2;
}

.price-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.price-info {
    flex: 1;
}

.current-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffeb3b;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    line-height: 1;
    display: inline-block;
}

.current-price .currency {
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 2px;
}

.original-price {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    margin-top: 2px;
    display: block;
}

.original-price .currency {
    font-size: 0.6rem;
}

.product-image-btn {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    padding: 4px;
    position: relative;
    z-index: 21;
    pointer-events: auto;
}

.product-image-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-image-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 1);
}

.product-image-btn:hover img {
    transform: scale(1.1);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.empty-icon i {
    font-size: 3rem;
    color: white;
}

.empty-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.empty-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* Denomination Group Transition */
.denomination-group {
    transition: all 0.4s ease;
}

.denomination-group.hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .media-page-container {
        margin-top: 110px;
    }

    .media-hero-banner {
        height: 300px;
    }

    .media-hero-banner-gradient {
        height: 280px;
    }

    .hero-content {
        padding: 30px 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .products-tabs-wrapper {
        padding: 20px;
        gap: 12px;
    }
    
    .product-tab {
        min-width: 180px;
        padding: 12px 20px;
    }

    .tab-image {
        width: 48px;
        height: 48px;
    }

    .tab-name {
        font-size: 0.95rem;
    }

    .tab-count {
        font-size: 0.825rem;
    }

    .card-image-wrapper {
        height: 180px;
    }

    .denomination-name {
        font-size: 1rem;
    }

    .current-price {
        font-size: 1.3rem;
    }

    .product-image-btn {
        width: 52px;
        height: 52px;
    }
    
    .countdown-timer {
        gap: 10px;
    }
    
    .time-unit {
        min-width: 70px;
    }
    
    .time-value {
        font-size: 2.2rem;
        min-width: 60px;
        padding: 8px 12px;
    }
    
    .time-separator {
        font-size: 1.8rem;
        padding-bottom: 14px;
    }
    
    .time-label {
        font-size: 0.75rem;
        margin-top: 5px;
    }
    
    .countdown-header {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
}

@media (max-width: 576px) {
    .media-page-container {
        margin-top: 100px;
    }

    .media-hero-banner {
        height: 250px;
    }

    .media-hero-banner-gradient {
        height: 230px;
    }

    .hero-content {
        padding: 20px 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .products-tabs-wrapper {
        flex-direction: column;
        padding: 16px;
        gap: 10px;
    }

    .product-tab {
        width: 100%;
        min-width: auto;
        padding: 12px 16px;
    }
    
    .tab-image {
        width: 44px;
        height: 44px;
    }

    .denomination-name {
        font-size: 1.1rem;
    }

    .subproduct-badge {
        font-size: 0.9rem;
        padding: 4px 10px;
    }
    
    .country-flag-badge {
        font-size: 1.1rem;
        padding: 4px 10px;
    }
    
    .country-name-small {
        font-size: 0.85rem;
    }

    .product-image-btn {
        width: 56px;
        height: 56px;
    }

    .price-wrapper {
        gap: 12px;
    }
    
    .countdown-timer {
        gap: 5px;
    }
    
    .time-unit {
        min-width: 60px;
    }
    
    .time-value {
        font-size: 1.8rem;
        min-width: 52px;
        padding: 8px 10px;
        border-radius: 12px;
    }
    
    .time-label {
        font-size: 0.65rem;
        margin-top: 4px;
        letter-spacing: 0.8px;
    }
    
    .time-separator {
        font-size: 1.5rem;
        padding-bottom: 10px;
    }
    
    .countdown-header {
        font-size: 0.95rem;
        margin-bottom: 0.5rem !important;
        gap: 5px;
    }
    
    .countdown-header i {
        font-size: 0.9rem;
    }
}

/* Coupon Code Card - Next to Timer */
.coupon-code-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 20px 28px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(102, 126, 234, 0.2);
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 0 0 auto;
    min-width: 380px;
    max-width: 450px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.coupon-code-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.coupon-code-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.25);
    border-color: rgba(102, 126, 234, 0.4);
}

.coupon-code-card:hover::before {
    opacity: 1;
}

[data-bs-theme="dark"] .coupon-code-card {
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.95) 0%, rgba(35, 35, 35, 0.9) 100%);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

[data-bs-theme="dark"] .coupon-code-card:hover {
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.coupon-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    position: relative;
    z-index: 1;
}

.coupon-icon i {
    font-size: 1.8rem;
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

.coupon-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.coupon-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coupon-code-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    border: 2px dashed #667eea;
    border-radius: 12px;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.coupon-code-wrapper:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.12) 0%, rgba(118, 75, 162, 0.12) 100%);
    border-color: #764ba2;
    transform: scale(1.02);
}

[data-bs-theme="dark"] .coupon-code-wrapper {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.12) 0%, rgba(118, 75, 162, 0.12) 100%);
    border-color: rgba(102, 126, 234, 0.6);
}

[data-bs-theme="dark"] .coupon-code-wrapper:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.18) 0%, rgba(118, 75, 162, 0.18) 100%);
    border-color: rgba(118, 75, 162, 0.8);
}

.coupon-code-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: #667eea;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    user-select: all;
    flex: 1;
    line-height: 1;
}

[data-bs-theme="dark"] .coupon-code-text {
    color: #8b9eea;
}

.coupon-copy-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    white-space: nowrap;
}

.coupon-copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.coupon-copy-btn i {
    font-size: 0.9rem;
}

.coupon-hint {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 6px;
    font-style: italic;
    opacity: 0.8;
}

/* Responsive Coupon Code Styles */
@media (max-width: 992px) {
    .countdown-with-coupon-wrapper {
        gap: 20px;
    }
    
    .countdown-container {
        min-width: 450px;
        padding: 18px 40px;
    }
    
    .coupon-code-card {
        min-width: 350px;
        padding: 18px 24px;
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .countdown-section {
        margin-top: -100px;
    }
    
    .countdown-with-coupon-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .countdown-container {
        min-width: auto;
        width: 100%;
        max-width: 500px;
        padding: 20px 25px;
    }
    
    .coupon-code-card {
        min-width: auto;
        width: 100%;
        max-width: 500px;
        padding: 20px 24px;
        gap: 20px;
    }
    
    .coupon-icon {
        width: 55px;
        height: 55px;
    }
    
    .coupon-icon i {
        font-size: 1.6rem;
    }
    
    .coupon-code-text {
        font-size: 1.4rem;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 576px) {
    .countdown-section {
        margin-top: -70px;
        padding: 0 10px;
    }
    
    .countdown-with-coupon-wrapper {
        gap: 15px;
    }
    
    .countdown-container {
        padding: 16px 15px;
    }
    
    .coupon-code-card {
        flex-direction: column;
        padding: 20px 18px;
        gap: 14px;
        text-align: center;
    }
    
    .coupon-icon {
        width: 50px;
        height: 50px;
    }
    
    .coupon-icon i {
        font-size: 1.4rem;
    }
    
    .coupon-title {
        font-size: 0.85rem;
    }
    
    .coupon-code-wrapper {
        flex-direction: column;
        gap: 10px;
        padding: 14px;
    }
    
    .coupon-code-text {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    .coupon-copy-btn {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
    }
    
    .coupon-hint {
        font-size: 0.7rem;
    }
}

