/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus {
    outline: 2px solid #4F46E5;
    outline-offset: 2px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1F2937;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.4;
}

.btn-primary {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #4338CA 0%, #6D28D9 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #4F46E5;
    border: 2px solid #4F46E5;
}

.btn-secondary:hover {
    background: #4F46E5;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4F46E5;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #374151;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 80px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    color: white;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Sections */
section {
    padding: 80px 0;
}

.section-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #6B7280;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Standout Section */
.standout {
    background: #F9FAFB;
}

.standout-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.standout-text p {
    margin-bottom: 1.5rem;
}

.standout-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    background: #4F46E5;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.feature h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature p {
    margin: 0;
    color: #6B7280;
    font-size: 0.95rem;
}

/* Categories Section */
.categories-visual {
    text-align: center;
    margin-bottom: 3rem;
}

.categories-image {
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: pulse 4s ease-in-out infinite;
}

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

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-card h3 {
    margin-bottom: 1rem;
    color: #1F2937;
}

.category-card p {
    margin-bottom: 1.5rem;
    color: #6B7280;
}

.category-link {
    color: #4F46E5;
    text-decoration: none;
    font-weight: 500;
}

.category-link:hover {
    text-decoration: underline;
}

.categories-note {
    text-align: center;
    font-style: italic;
    color: #6B7280;
}

/* How It Works Section */
.how-it-works {
    background: #F9FAFB;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-number {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    margin: 0;
    color: #6B7280;
    font-size: 0.95rem;
}

.how-it-works-note {
    text-align: center;
    font-weight: 500;
    color: #4F46E5;
    font-size: 1.1rem;
}

/* Exclusive Offers Section */
.exclusive-offers {
    background: linear-gradient(135deg, #F3E8FF 0%, #E0E7FF 100%);
}

.offers-visual {
    text-align: center;
    margin-bottom: 2rem;
}

.offers-image {
    max-width: 250px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: rotate 8s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.offers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.offers-text p {
    margin-bottom: 1.5rem;
}

.offers-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #4F46E5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.highlight strong {
    display: block;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.highlight span {
    color: #6B7280;
    font-size: 0.95rem;
}

/* Why Love Us Section */
.why-love-us .container {
    max-width: 1000px;
}

.love-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.love-text p {
    margin-bottom: 1.5rem;
}

.love-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: #F9FAFB;
    border-radius: 8px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4F46E5;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6B7280;
    font-weight: 500;
}

/* Stay Updated Section */
.stay-updated {
    background: #F9FAFB;
}

.updated-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.updated-content p {
    margin-bottom: 1.5rem;
}

.newsletter-signup {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.newsletter-signup h3 {
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    border-color: #4F46E5;
    outline: none;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-section p {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: #1F2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 1rem;
    color: #D1D5DB;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4F46E5;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #D1D5DB;
    text-decoration: none;
    padding: 8px 12px;
    background: #374151;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #4F46E5;
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9CA3AF;
}

.footer-bottom a {
    color: #4F46E5;
    text-decoration: none;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .navbar-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero {
        padding: 100px 0 60px;
        margin-top: 70px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image img {
        max-width: 100%;
    }

    .categories-image,
    .offers-image {
        max-width: 200px;
    }

    section {
        padding: 60px 0;
    }

    .standout-content,
    .offers-content,
    .love-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .love-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .category-card,
    .newsletter-signup {
        padding: 1.5rem;
    }

    .love-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Performance Optimizations */
img {
    max-width: 100%;
    height: auto;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .btn,
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero {
        margin-top: 0;
        padding-top: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        border: 2px solid #fff;
    }
    
    .btn-secondary {
        border-color: #000;
        color: #000;
    }
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popup-overlay.active {
    display: flex;
}

.popup-modal {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: popupSlideIn 0.3s ease-out;
}

/* Specific styling for luck popup */
#luckPopup .popup-modal {
    max-width: 400px;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #F8F9FA;
    border-bottom: 1px solid #E5E7EB;
    border-radius: 16px 16px 0 0;
}

.popup-header h3 {
    margin: 0;
    color: #212529;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.popup-header h3::before {
    content: "🎲";
    font-size: 1.5rem;
}

.popup-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #6C757D;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-weight: bold;
}

.popup-close:hover {
    background: #E9ECEF;
    color: #495057;
}

.popup-content {
    padding: 25px 20px;
    background: white;
}

.popup-content p {
    color: #212529;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

.popup-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.btn-success {
    background: #28A745;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    min-width: 80px;
}

.btn-success:hover {
    background: #218838;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
}

.btn-danger {
    background: #DC3545;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    min-width: 80px;
}

.btn-danger:hover {
    background: #C82333;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

/* Coupon Modal Styles */
.coupon-modal {
    max-width: 600px;
}

.coupon-header {
    background: #1F2937;
    color: white;
    border-radius: 16px 16px 0 0;
    border-bottom: none;
    position: relative;
}

.coupon-header .popup-close {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.coupon-header .popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.game-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.game-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.game-title h4 {
    margin: 0;
    color: white;
    font-size: 1.5rem;
}

.game-title p {
    margin: 0;
    color: #D1D5DB;
    font-size: 0.9rem;
}

.coupon-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.badge.verified {
    background: rgba(16, 185, 129, 0.2);
    color: #10B981;
}

.badge-icon {
    font-size: 0.7rem;
}

.coupon-content {
    padding: 25px;
}

.coupon-banner {
    background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
    border: 2px dashed #10B981;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.coupon-type {
    font-size: 1.8rem;
    font-weight: bold;
    color: #065F46;
    margin-bottom: 5px;
}

.coupon-description {
    font-size: 1rem;
    color: #047857;
}

.coupon-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 25px;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-icon {
    font-size: 1.5rem;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: #1F2937;
}

.stat-label {
    font-size: 0.9rem;
    color: #6B7280;
}

.coupon-details h5 {
    color: #1F2937;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.coupon-details p {
    color: #6B7280;
    margin-bottom: 8px;
    line-height: 1.5;
}

.coupon-details .note {
    font-style: italic;
    color: #9CA3AF;
}

#showCodeBtn {
    width: 100%;
    margin-bottom: 15px;
}

.code-display {
    text-align: center;
}

.code-box {
    background: #F3F4F6;
    border: 2px dashed #D1D5DB;
    border-radius: 8px;
    padding: 15px;
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    color: #1F2937;
    letter-spacing: 2px;
}

/* Queue Time Popup Styles */
.queue-modal {
    max-width: 400px;
}

.queue-content {
    text-align: center;
    padding: 30px 20px;
}

.queue-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #E5E7EB;
    border-top: 4px solid #4F46E5;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.queue-animation h4 {
    color: #1F2937;
    margin: 0;
    font-size: 1.3rem;
}

.queue-animation p {
    color: #6B7280;
    margin: 0;
    font-size: 1rem;
}

.queue-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #F3F4F6;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 500;
}

#queueTime {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4F46E5;
}

.queue-progress {
    width: 100%;
    max-width: 250px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #E5E7EB;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4F46E5, #7C3AED);
    border-radius: 4px;
    width: 0%;
    transition: width 1s ease-out;
}

/* Mobile Responsive for Popups */
@media (max-width: 768px) {
    .popup-modal {
        margin: 10px;
        max-height: 95vh;
    }
    
    .popup-actions {
        flex-direction: column;
    }
    
    .coupon-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .game-info {
        flex-direction: column;
        text-align: center;
    }
    
    .coupon-badges {
        justify-content: center;
    }
    
    .queue-modal {
        max-width: 350px;
    }
    
    .queue-content {
        padding: 25px 15px;
    }
    
    .spinner {
        width: 50px;
        height: 50px;
    }
}

/* Final Coupon Popup Styles */
.final-coupon-modal {
    max-width: 450px;
}

.popup-header .subtitle {
    font-size: 0.9rem;
    color: #6B7280;
    margin: 5px 0 0 0;
    font-weight: normal;
}

.final-coupon-content {
    text-align: center;
    padding: 25px;
}

.coupon-code-box {
    background: #F9FAFB;
    border: 2px dashed #10B981;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
}

.coupon-code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.coupon-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #10B981;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lock-icon {
    font-size: 0.8rem;
    color: #6B7280;
    display: flex;
    align-items: center;
    gap: 5px;
}

.coupon-code-display {
    font-family: 'Courier New', monospace;
    font-size: 1.4rem;
    font-weight: bold;
    color: #1F2937;
    letter-spacing: 3px;
    text-align: center;
    position: relative;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
}

.coupon-code-display.blurred {
    filter: blur(3px);
    background: linear-gradient(90deg, 
        rgba(255,255,255,0.8) 0%, 
        rgba(255,255,255,0.4) 25%, 
        rgba(255,255,255,0.8) 50%, 
        rgba(255,255,255,0.4) 75%, 
        rgba(255,255,255,0.8) 100%);
}

.rating-section {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #E5E7EB;
}

.rating-label {
    color: #6B7280;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.rating-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.rating-btn {
    width: 50px;
    height: 50px;
    border: 2px solid #E5E7EB;
    border-radius: 50%;
    background: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rating-btn:hover {
    border-color: #10B981;
    background: #F0FDF4;
    transform: scale(1.1);
}

.rating-btn.selected {
    border-color: #10B981;
    background: #10B981;
    color: white;
}

/* Mobile Responsive for Final Coupon Popup */
@media (max-width: 768px) {
    .final-coupon-modal {
        max-width: 380px;
    }
    
    .coupon-code-display {
        font-size: 1.2rem;
        letter-spacing: 2px;
        padding: 12px;
    }
    
    .coupon-code-header {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .rating-buttons {
        gap: 20px;
    }
    
    .rating-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}
