@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Update color scheme for minimalistic design */
:root {
    --primary: #007AFF;          /* Bleu principal */
    --primary-dark: #0056b3;     /* Bleu foncé */
    --primary-light: #3b95ff;    /* Bleu clair */
    --background: #000000;
    --surface: #1a1a1a;
    --text: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --border: rgba(255, 255, 255, 0.1);
    --glow: 0 0 20px rgba(0, 122, 255, 0.2);
}

/* Clean up body styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Lexend Deca', sans-serif;
    background: var(--background);
    color: var(--text);
}

/* Refined header */
header {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Update logo/title styling */
.cyber-text {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--text) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: subtle-float 4s ease-in-out infinite;
}

.cyber-glitch-2 {
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Refined button styling */
.btn-purple {
    background: var(--primary);
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    transition: all 0.3s ease;
    box-shadow: var(--glow);
}

.btn-purple:hover {
    transform: translateY(-2px);
    background: var(--primary-dark);
    box-shadow: 0 5px 15px rgba(0, 122, 255, 0.3);
}

/* Subtle floating animation */
@keyframes subtle-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Refined sparkle effect */
.sparkle {
    width: 2px;
    height: 2px;
    background-color: var(--primary);
    opacity: 0;
}

@keyframes sparkle-animation-1 {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1);
        opacity: 0.8;
        box-shadow: 0 0 10px var(--primary);
    }
    100% {
        transform: scale(0);
        opacity: 0;
    }
}

/* Update particles style */
#particles-js {
    opacity: 0.3;
}

/* Futuristic coupon styles */
.single-coupon {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(30, 30, 30, 0.9));
    border: 1px solid rgba(0, 122, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 122, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    margin: 15px 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.single-coupon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 122, 255, 0.1),
        transparent
    );
    transition: 0.5s;
}

.single-coupon:hover::before {
    left: 100%;
}

.single-coupon:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 122, 255, 0.2);
}

.single-coupon-image {
    border: 2px solid rgba(0, 122, 255, 0.3);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.single-coupon-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(0, 122, 255, 0.1), transparent);
}

.title-coupon {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2px !important;
    padding-left: 0;
    text-shadow: 0 0 10px rgba(0, 122, 255, 0.5);
}

.used {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.used::before {
    content: '⚡';
    color: var(--primary);
}

/* Simplified coupon button styles */
.coupon-left-trigger {
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.3);
    border-radius: 8px;
    width: 180px;
    height: 36px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}

.coupon-left-trigger span {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    color: var(--primary);
    font-family: 'Lexend Deca', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 14px;
    z-index: 1;
    white-space: nowrap;
}

.cover-coupon {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    z-index: 2;
}

.cover-coupon span {
    color: #fff;
    font-family: 'Lexend Deca', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Code display below button */
.code-scroll {
    margin-top: 8px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: var(--primary);
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

/* Show code on hover */
.coupon-left-trigger:hover .cover-coupon {
    transform: translateX(-40%);
}

.coupon-left-trigger:hover + .code-scroll {
    opacity: 1;
}

/* Mobile responsive */
@media screen and (max-width: 480px) {
    .coupon-left-trigger {
        width: 140px;
        height: 32px;
    }
    
    .coupon-left-trigger span,
    .cover-coupon span {
        font-size: 12px;
    }
    
    .code-scroll {
        font-size: 10px;
    }
}

/* Futuristic animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 122, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 122, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 122, 255, 0);
    }
}

.btn-purple {
    animation: pulse 2s infinite;
}

/* Featured coupons slider */
.slider.responsive {
    margin: 0 -10px;
    padding: 20px 10px;
}

.single-coupon-top {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin: 0 10px;
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.single-coupon-image-top {
    height: 160px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 1px solid var(--border);
}

.single-coupon-top .p-3 {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.single-coupon-top .title-coupon {
    font-size: 18px;
    margin-bottom: 8px;
}

.single-coupon-top .btn-purple {
    margin-top: auto;
}

/* Mobile responsive */
@media screen and (max-width: 480px) {
    .single-coupon {
        padding: 10px;
    }
    
    .single-coupon-image {
        width: 80px;
        height: 80px;
        min-width: 80px;
    }
    
    .content {
        padding-left: 15px;
    }
    
    .title-coupon {
        font-size: 14px;
    }
    
    .coupon-left-trigger {
        width: 120px;
        height: 40px;
        padding: 8px;
    }
    
    .single-coupon-top {
        min-height: 280px;
        margin: 0 5px;
    }
    
    .single-coupon-image-top {
        height: 140px;
    }
    
    .single-coupon-top .title-coupon {
        font-size: 16px;
    }
    
    .slick-prev,
    .slick-next {
        display: none !important;
    }
    
    .responsive {
        padding: 0 5px;
    }
    
    .single-coupon-top {
        margin: 0 3px;
    }

    .single-coupon .content {
        text-align: center;
        align-items: center !important;
    }

    .single-coupon .title-coupon {
        text-align: center;
        margin-bottom: 5px !important;
    }

    .single-coupon .rating-wrapp {
        justify-content: center;
        flex-direction: row !important;
        align-items: center !important;
        gap: 8px;
    }

    .single-coupon .font-weight-400.mb-lg-2.mb-0.one-line-small {
        text-align: center;
        justify-content: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
        padding: 0 5px;
    }

    .single-coupon .d-flex.w-75 {
        align-items: center;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #fff;
}

a {
    transition: all 0.3s ease;
    color: #fff;
    text-decoration: none !important;
}

a:hover, a:visited, a:focus, a:active,
button:hover, button:visited, button:active, button:focus {
    text-decoration: none !important;
    outline: none !important;
    color: var(--primary);
}

::selection {
    background: var(--primary);
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: var(--primary);
    color: #fff;
    text-shadow: none;
}

.bg-image {
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

#errorModal .modal-content,
.code {
    background-image: linear-gradient(45deg, #eaeffd, #dff1ec, #fffaec);
    height: auto;
    padding: 20px 25px;
    border-radius: 6px;
    border: 0;
}

.code {
    font-size: 24px;
}

.code {
    border-radius: 30px;
    border: 0;
    border: 1px solid #bdbdbd;
}

.rating-note {
    font-size: 11px;
}

.btn {
    border-radius: 50px;
    font-weight: 600;
    padding: 10px 25px;
}

.btn-warning {
    color: #000;
    background-color: #E9D175;
    border-color: #E9D175;
}

.logo {
    max-width: 220px;
    transition: transform 0.3s ease;
    margin-top: 20px;
    display: inline-block;
    filter: drop-shadow(0 0 10px #007AFF);
    animation: float 3s ease-in-out infinite;
}

.logo:hover {
    transform: scale(1.05);
}

.bg-purple {
    background-color: #007AFF;
}

.single-category {
    background-color: #007AFF;
    color: #fff;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 15px;
}

.progressbar-wrapp {
    height: 140px;
    width: 140px;
    position: relative;
}

.footer-text {
    font-size: 10px;
    color: #ccc;
    font-weight: 200;
    margin-bottom: 0;
}

.beat-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007AFF;
    text-align: center;
    animation: gentle-color 3s ease-in-out infinite;
    display: inline-block;
    padding: 0 10px;
    line-height: 1.2;
    margin: 0 auto;
    background: linear-gradient(135deg, #007AFF, #3b95ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes gentle-color {
    0%, 100% {
        color: #007AFF;
        opacity: 1;
    }
    50% {
        color: #3b95ff;
        opacity: 0.9;
    }
}

.title-short {
    font-size: 30px;
    line-height: 30px;
    text-align: center;
    font-weight: bold;
    color: var(--primary);
}

#searchInput {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    padding: 15px 20px;
    width: 100%;
    transition: all 0.3s ease;
}

#searchInput:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 122, 255, 0.2);
}

.slick-prev,
.slick-next {
    width: 40px;
    height: 40px;
    background: #007AFF;
    border-radius: 50%;
    z-index: 10;
}

.slick-prev {
    left: -20px;
}

.slick-next {
    right: -20px;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: 000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-next:before {
    content: '→';
}

.slick-prev:before {
    content: '←';
}

.slick-prev:hover,
.slick-next:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px #007AFF;
}

.one-line-small {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding-left: 0;
    margin-top: 5px;
}

@keyframes beat {
    0%,
    50%,
    100% {
        transform: scale(1, 1);
    }
    30%,
    80% {
        transform: scale(0.92, 0.95);
    }
}

.caca>a {
    padding-bottom: 10px;
}

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

.btn-purple:active {
    transform: scale(0.95);
}

/* Modal styling */
.modal-content {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.modal-body {
    padding: 30px;
}

.btn-unlock {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-unlock:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.code {
    font-family: 'Courier New', monospace;
    font-size: 18px;
    color: var(--primary);
    background: rgba(0, 122, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(0, 122, 255, 0.3);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.single-coupon {
    animation: fadeIn 0.5s ease forwards;
}

.single-coupon:nth-child(n) {
    animation-delay: calc(n * 0.1s);
}

/* Update the progress bar color */
.progressbar-text {
    color: var(--primary) !important;
}

.progressbar-wrapp svg path.path {
    stroke: var(--primary);
}

/* Remove any potential conflicting margins */
.row {
    margin: 0;
}

/* Futuristic animations */
@keyframes scanline {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

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

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

@keyframes glitch {
    0% {
        text-shadow: 2px 2px var(--primary), -2px -2px var(--primary-light);
    }
    25% {
        text-shadow: -2px 2px var(--primary), 2px -2px var(--primary-light);
    }
    50% {
        text-shadow: 2px -2px var(--primary), -2px 2px var(--primary-light);
    }
    75% {
        text-shadow: -2px -2px var(--primary), 2px 2px var(--primary-light);
    }
    100% {
        text-shadow: 2px 2px var(--primary), -2px -2px var(--primary-light);
    }
}

/* Enhanced sparkles with random directions */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--primary-light);
    opacity: 0;
}

/* Randomize sparkle positions and animations */
.sparkle:nth-child(1) { top: 5%; left: 10%; animation: sparkle-animation-1 2s ease-in-out infinite; }
.sparkle:nth-child(2) { top: 15%; right: 20%; animation: sparkle-animation-2 2.3s ease-in-out infinite; }
.sparkle:nth-child(3) { top: 25%; left: 15%; animation: sparkle-animation-3 1.8s ease-in-out infinite; }
.sparkle:nth-child(4) { bottom: 35%; left: 25%; animation: sparkle-animation-1 2.5s ease-in-out infinite; }
.sparkle:nth-child(5) { top: 45%; right: 30%; animation: sparkle-animation-2 2.1s ease-in-out infinite; }
.sparkle:nth-child(6) { bottom: 55%; left: 35%; animation: sparkle-animation-3 2.4s ease-in-out infinite; }
.sparkle:nth-child(7) { top: 65%; right: 40%; animation: sparkle-animation-1 1.9s ease-in-out infinite; }
.sparkle:nth-child(8) { bottom: 75%; left: 45%; animation: sparkle-animation-2 2.2s ease-in-out infinite; }
.sparkle:nth-child(9) { top: 85%; right: 50%; animation: sparkle-animation-3 2.6s ease-in-out infinite; }
.sparkle:nth-child(10) { bottom: 10%; left: 55%; animation: sparkle-animation-1 2.3s ease-in-out infinite; }
.sparkle:nth-child(11) { top: 20%; right: 60%; animation: sparkle-animation-2 1.7s ease-in-out infinite; }
.sparkle:nth-child(12) { bottom: 30%; left: 65%; animation: sparkle-animation-3 2.1s ease-in-out infinite; }
.sparkle:nth-child(13) { top: 40%; right: 70%; animation: sparkle-animation-1 2.4s ease-in-out infinite; }
.sparkle:nth-child(14) { bottom: 50%; left: 75%; animation: sparkle-animation-2 1.8s ease-in-out infinite; }
.sparkle:nth-child(15) { top: 60%; right: 80%; animation: sparkle-animation-3 2.2s ease-in-out infinite; }

/* Multiple animation variations */
@keyframes sparkle-animation-1 {
    0% {
        transform: scale(0) rotate(0deg) translateY(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(180deg) translateY(-20px);
        opacity: 1;
        box-shadow: 
            0 0 8px var(--primary-light),
            0 0 16px var(--primary),
            0 0 24px var(--primary-dark),
            0 0 32px var(--primary-light);
    }
    100% {
        transform: scale(0) rotate(360deg) translateY(-40px);
        opacity: 0;
    }
}

@keyframes sparkle-animation-2 {
    0% {
        transform: scale(0) rotate(0deg) translateX(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(-180deg) translateX(20px);
        opacity: 1;
        box-shadow: 
            0 0 8px var(--primary-light),
            0 0 16px var(--primary),
            0 0 24px var(--primary-dark),
            0 0 32px var(--primary-light);
    }
    100% {
        transform: scale(0) rotate(-360deg) translateX(40px);
        opacity: 0;
    }
}

@keyframes sparkle-animation-3 {
    0% {
        transform: scale(0) rotate(0deg) translate(-10px, -10px);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(180deg) translate(10px, 10px);
        opacity: 1;
        box-shadow: 
            0 0 8px var(--primary-light),
            0 0 16px var(--primary),
            0 0 24px var(--primary-dark),
            0 0 32px var(--primary-light);
    }
    100% {
        transform: scale(0) rotate(360deg) translate(30px, 30px);
        opacity: 0;
    }
}

/* Ensure other elements stay above sparkles */
.container, 
header, 
#particles-js,
.single-coupon,
.btn,
.modal-content {
    position: relative;
    z-index: 1;
}

#particles-js {
    z-index: 1;
}

.container, header {
    z-index: 3;
}

/* Add floating particles */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.7) 100%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23FF00FF' fill-opacity='0.1'%3E%3Ccircle cx='50' cy='50' r='1'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    animation: floatingBg 30s linear infinite;
}

@keyframes floatingBg {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

/* Add glow to particles */
#particles-js canvas {
    filter: blur(1px) brightness(1.2);
}

/* Update particle colors */
#particles-js .particle {
    box-shadow: 0 0 10px var(--primary-light);
}

/* Fix coupon images */
.single-coupon-image {
    width: 100px;
    height: 100px;
    min-width: 100px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background-color: var(--surface);
}

.single-coupon-image-top {
    width: 100%;
    height: 160px;
    min-height: 160px;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
    background-color: var(--surface);
}

.single-coupon-page-image {
    width: 100%;
    height: 350px;
}

/* Fix title styles */
.title-coupon {
    color: var(--text);
    font-weight: 600;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

/* Fix button styles */
.btn-search,
.btn-search-display {
    display: inline-block;
}

/* Restore essential display properties */
.btn-search,
.search-wrap,
#search-form,
.btn-search-display {
    display: block;
}

/* Fix card layout */
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

/* Loading screen styles */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    margin-bottom: 40px;
}

.loader-logo .cyber-text {
    font-size: 3rem;
    animation: none;
}

/* Spinning loader */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 122, 255, 0.1);
    border-radius: 50%;
    border-top: 3px solid var(--primary);
    animation: spin 1s linear infinite;
}

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

/* Prevent scrolling while loading */
body.loading {
    overflow: hidden;
}

/* Improve responsive layout */
@media screen and (max-width: 480px) {
    /* Header adjustments */
    .cyber-text {
        font-size: 2.5rem;
    }
    
    /* Main container spacing */
    .container {
        padding: 10px;
    }
    
    /* Coupon card layout */
    .single-coupon {
        padding: 10px;
        margin: 8px 0;
    }
    
    .single-coupon .d-flex.w-75 {
        width: 70% !important;
    }
    
    .single-coupon .w-25 {
        width: 30% !important;
    }
    
    /* Image sizing */
    .single-coupon-image {
        width: 80px;
        height: 80px;
        min-width: 80px;
    }
    
    /* Content spacing */
    .content {
        padding-left: 10px;
        padding-right: 5px;
        max-width: 100%;
        overflow: hidden;
    }
    
    .content h6 {
        font-size: 14px;
        margin-bottom: 4px;
    }
    
    .rating-wrapp {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 4px;
    }
    
    .text-warning {
        font-size: 12px;
        line-height: 1;
        margin-bottom: 2px;
    }
    
    .text-warning i {
        font-size: 12px;
    }
    
    .font-weight-200.used {
        font-size: 11px;
        line-height: 1;
        white-space: nowrap;
    }
    
    /* Coupon button */
    .coupon-left-trigger {
        width: 100%;
        min-width: 90px;
        height: 36px;
        margin-left: auto;
    }
    
    /* Slider adjustments */
    .responsive {
        padding: 0 15px;
    }
    
    .slick-prev {
        left: -5px;
    }
    
    .slick-next {
        right: -5px;
    }
    
    .slick-prev,
    .slick-next {
        width: 30px;
        height: 30px;
    }
    
    /* Title adjustments */
    .beat-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    /* Slider cards */
    .single-coupon-top {
        min-height: 260px;
        margin: 0 5px;
    }
    
    .single-coupon-image-top {
        height: 120px;
        min-height: 120px;
    }
    
    .single-coupon-top .title-coupon {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .single-coupon-top .p-3 {
        padding: 10px !important;
    }
    
    /* Modal adjustments */
    .modal-dialog {
        margin: 10px;
    }
    
    .modal-body {
        padding: 15px;
    }
    
    .code {
        font-size: 18px;
        padding: 15px;
    }
    
    /* Footer adjustments */
    footer {
        padding: 15px 0;
    }
    
    .footer-text {
        font-size: 9px;
        padding: 0 15px;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .single-coupon .d-flex.w-75 {
        width: 70% !important;
    }
    
    .single-coupon .w-25 {
        width: 30% !important;
    }
    
    .content h6 {
        font-size: 16px;
    }
    
    .beat-title {
        font-size: 2rem;
    }
    
    .responsive {
        padding: 0 20px;
    }
}

/* Fix slider on all devices */
.slider.responsive {
    margin: 0 -10px;
    padding: 20px 10px;
}

.single-coupon-top {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin: 0 10px;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.single-coupon-image-top {
    height: 160px;
    min-height: 160px;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    border-bottom: 1px solid var(--border);
}

.single-coupon-top .p-3 {
    background: var(--surface);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.single-coupon-top .title-coupon {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text);
}

.single-coupon-top .rating-wrapp {
    margin-bottom: 12px;
}

.single-coupon-top .btn-purple {
    margin-top: auto;
}

/* Mobile adjustments for slider */
@media screen and (max-width: 480px) {
    .single-coupon-top {
        min-height: 280px;
        margin: 0 5px;
    }
    
    .single-coupon-image-top {
        height: 140px;
    }
    
    .single-coupon-top .title-coupon {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .single-coupon-top .rating-wrapp {
        margin-bottom: 8px;
    }
    
    .single-coupon-top .btn-purple {
        padding: 8px 15px;
        font-size: 14px;
    }
}

/* Ensure buttons stay clickable */
.coupon-left-trigger {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

/* Improve touch targets */
.btn, 
.coupon-left-trigger,
.slick-prev,
.slick-next {
    touch-action: manipulation;
}

/* Update star color */
.text-warning {
    color: #007AFF !important;
}

.fas.fa-star {
    color: #007AFF;
}

/* Update title color */
.beat-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007AFF;
    text-align: center;
    animation: gentle-color 3s ease-in-out infinite;
    display: inline-block;
    padding: 0 10px;
    line-height: 1.2;
    margin: 0 auto;
}

/* Ajoutez ces styles à la fin du fichier */
.platform-tag {
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.3);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 0.8rem;
    color: #007AFF;
    margin-right: 5px;
    display: inline-block;
}

.cyber-corner {
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid #007AFF;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.cyber-corner.top-left {
    top: 5px;
    left: 5px;
    border-right: 0;
    border-bottom: 0;
}

.cyber-corner.top-right {
    top: 5px;
    right: 5px;
    border-left: 0;
    border-bottom: 0;
}

.cyber-corner.bottom-left {
    bottom: 5px;
    left: 5px;
    border-right: 0;
    border-top: 0;
}

.cyber-corner.bottom-right {
    bottom: 5px;
    right: 5px;
    border-left: 0;
    border-top: 0;
}

.single-coupon:hover .cyber-corner {
    opacity: 1;
    border-color: #007AFF;
    box-shadow: 0 0 10px rgba(0, 122, 255, 0.3);
}

/* Ajout des styles pour l'effet de code qui défile */
.coupon-left-trigger {
    position: relative;
}

.code-scroll {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: #007AFF;
    opacity: 0;
    transition: all 0.3s ease;
    text-align: center;
    pointer-events: none;
    text-shadow: 0 0 5px rgba(0, 122, 255, 0.5);
    white-space: nowrap;
}

.coupon-left-trigger:hover + .code-scroll {
    opacity: 1;
    transform: translateX(-50%) translateY(5px);
}

.code-scroll::after {
    content: none;
}

/* Ajouter un conteneur relatif autour */
.w-25.d-flex.flex-column.justify-content-center.pe-1.pe-lg-3 {
    position: relative;
    padding-bottom: 30px;
    padding-top: 10px;
    align-items: center;
}

/* FAQ Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 122, 255, 0.1);
    border-color: rgba(0, 122, 255, 0.3);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text);
    flex: 1;
}

.faq-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    background: #007AFF;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-bottom: 20px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-top: 0;
}

.faq-toggle {
    color: #007AFF;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

/* Responsive adjustments */
@media screen and (max-width: 480px) {
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
    
    .faq-icon {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
}

/* Cyber Unlock Modal Styles */
.cyber-unlock-container {
    position: relative;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 15px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cyber-corners .corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.corner.top-left {
    top: 10px;
    left: 10px;
    border-right: 0;
    border-bottom: 0;
}

.corner.top-right {
    top: 10px;
    right: 10px;
    border-left: 0;
    border-bottom: 0;
}

.corner.bottom-left {
    bottom: 10px;
    left: 10px;
    border-right: 0;
    border-top: 0;
}

.corner.bottom-right {
    bottom: 10px;
    right: 10px;
    border-left: 0;
    border-top: 0;
}

.coupon-status {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.status-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 122, 255, 0.1);
    border-radius: 50%;
}

.verification-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.code-display {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 122, 255, 0.3);
    border-radius: 10px;
    padding: 12px 16px;
    position: relative;
    overflow: hidden;
    margin: 3rem 0;
    z-index: 10;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 1px;
}

.code-segments {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.segment {
    font-size: 1.2rem;
    color: var(--primary);
}

.code-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    transform: translateY(0) !important;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.code-segments {
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.code-segments.reveal {
    transform: translateY(0);
    opacity: 1;
}

.code-overlay.reveal {
    transform: translateY(-100%) !important;
}

.cyber-loader {
    position: relative;
    width: 100%;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.scanner {
    width: 100%;
    height: 2px;
    background: var(--primary);
    position: absolute;
    animation: scan 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--primary);
}

.loading-text {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.8;
}

.loading-text span {
    display: inline-block;
    margin-top: 0.5rem;
}

.progress-container {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--primary);
    width: 0%;
    transition: width 0.3s ease;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 2s infinite;
}

.progress-text {
    position: absolute;
    top: -25px;
    right: 0;
    color: var(--primary);
    font-size: 0.9rem;
}

.btn-unlock-cyber {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid var(--primary);
    border-radius: 8px;
    color: var(--primary);
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-unlock-cyber:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 122, 255, 0.3);
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-unlock-cyber:hover .btn-glow {
    opacity: 1;
}

@keyframes scan {
    0%, 100% {
        top: 0;
    }
    50% {
        top: calc(100% - 2px);
    }
}

@keyframes shine {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(100%);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Styles pour le message de vérification */
.verification-message {
    text-align: center;
    padding: 20px;
    color: var(--text);
}

.verification-message .warning-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(0, 122, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verification-message .warning-icon i {
    font-size: 24px;
    color: var(--primary);
}

.verification-message h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.verification-message p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-verify-human {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, #007AFF, #3b95ff);
    border: none;
    border-radius: 8px;
    color: #fff !important;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-verify-human:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 122, 255, 0.3);
    color: #fff !important;
    text-decoration: none;
}

.verify-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-verify-human:hover .verify-glow {
    opacity: 1;
}

/* Animation de pulsation pour l'icône */
@keyframes shield-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.verification-message .warning-icon i {
    animation: shield-pulse 2s infinite;
}

/* Ajout des styles pour l'animation d'erreur */
@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-10px); }
    40% { transform: translateX(10px); }
    60% { transform: translateX(-10px); }
    80% { transform: translateX(10px); }
}

@keyframes glitchText {
    0% { 
        clip-path: inset(40% 0 61% 0);
        transform: translate(-20px, -10px);
    }
    20% { 
        clip-path: inset(92% 0 1% 0);
        transform: translate(20px, 10px);
    }
    40% { 
        clip-path: inset(43% 0 1% 0);
        transform: translate(-20px, 10px);
    }
    60% { 
        clip-path: inset(25% 0 58% 0);
        transform: translate(20px, -10px);
    }
    80% { 
        clip-path: inset(54% 0 7% 0);
        transform: translate(-20px, 10px);
    }
    100% { 
        clip-path: inset(58% 0 43% 0);
        transform: translate(20px, -10px);
    }
}

.error-state {
    display: none;
}

/* Ajouter ces styles pour les animations de transition */
@keyframes fadeOutUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-out-up {
    animation: fadeOutUp 0.5s ease forwards;
}

.fade-in-up {
    animation: fadeInUp 0.5s ease forwards;
}

/* Ajouter ces nouvelles animations */
@keyframes shieldExpand {
    0% {
        transform: scale(0) translateY(100px);
        opacity: 0;
    }
    50% {
        transform: scale(3) translateY(0);
        opacity: 1;
    }
    100% {
        transform: scale(1) translateY(-20px);
        opacity: 1;
    }
}

@keyframes textFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Styles pour l'animation du bouclier */
.shield-transition {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    text-align: center;
    z-index: 1;
}

.shield-transition .warning-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: rgba(0, 122, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: shieldExpand 1.5s ease forwards;
}

.shield-transition .warning-icon i {
    font-size: 40px;
    color: var(--primary);
}

.verification-message.with-animation h4,
.verification-message.with-animation p,
.verification-message.with-animation .btn-verify-human {
    opacity: 0;
    animation: textFadeIn 0.5s ease forwards;
}

.verification-message.with-animation h4 {
    animation-delay: 1.2s;
}

.verification-message.with-animation p {
    animation-delay: 1.4s;
}

.verification-message.with-animation .btn-verify-human {
    animation-delay: 1.6s;
}

/* Modifier l'animation du bouclier et l'espacement */
.verification-message.with-animation {
    padding-top: 120px;
    position: relative;
}

.shield-transition {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    text-align: center;
}

/* Ajuster l'affichage des étoiles et du texte sur mobile */
.rating-wrapp {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.text-warning {
    display: flex;
    align-items: center;
    white-space: nowrap;
    margin-right: 8px;
}

.text-warning i {
    font-size: 14px;
    margin-right: 2px;
}

.font-weight-200.used {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .content {
        padding-left: 0;
    }
    
    .rating-wrapp {
        flex-direction: column;
        align-items: flex-start;
    }

    .text-warning {
        margin-bottom: 3px;
    }

    .text-warning i {
        font-size: 12px;
    }
    
    .font-weight-200.used {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .one-line-small {
        margin-top: 5px;
    }

    .d-flex.w-75 {
        gap: 8px;
    }
}

/* Ajuster le conteneur du titre FAQ */
.faq-title-container {
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
}

/* Responsive adjustments pour le titre FAQ */
@media (max-width: 576px) {
    .faq-title-container {
        margin-bottom: 1.5rem;
    }
    
    .beat-title {
        font-size: 2rem;
    }
}

.amount-display {
    background: rgba(0, 122, 255, 0.1);
    border-radius: 8px;
    padding: 8px 15px;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0, 122, 255, 0.3);
    text-shadow: 0 0 10px rgba(0, 122, 255, 0.3);
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.amount-value {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.security-message {
    background-color: #0a0a0a !important;
    border: 1px solid #007AFF !important;
    border-radius: 8px !important;
    padding: 12px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
    margin-bottom: 15px !important;
    box-shadow: 0 0 15px rgba(0, 122, 255, 0.1) !important;
}

.security-icon {
    width: 32px !important;
    height: 32px !important;
    background-color: rgba(0, 122, 255, 0.1) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #007AFF !important;
    flex-shrink: 0 !important;
}

.security-text {
    font-size: 0.9rem !important;
    color: #007AFF !important;
    display: flex !important;
    flex-direction: column !important;
    font-weight: 500 !important;
}

.security-subtext {
    font-size: 0.8rem !important;
    color: #ffffff !important;
    opacity: 0.7 !important;
    margin-top: 2px !important;
}

.security-banner {
    background-color: #0a0a0a !important;
    border-bottom: 1px solid rgba(0, 122, 255, 0.2) !important;
    padding: 10px 0 !important;
    position: relative !important;
    z-index: 1001 !important;
    width: 100% !important;
}

.ssl-indicator {
    position: relative !important;
    width: 24px !important;
    height: 24px !important;
    flex-shrink: 0 !important;
}

.ssl-indicator i {
    color: #007AFF !important;
    font-size: 1.2rem !important;
    position: relative !important;
    z-index: 2 !important;
}

.ssl-pulse {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 20px !important;
    height: 20px !important;
    background-color: rgba(0, 122, 255, 0.1) !important;
    border-radius: 50% !important;
    animation: pulse 2s infinite !important;
}

.security-info {
    display: flex !important;
    flex-direction: column !important;
}

.security-status {
    color: #007AFF !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
}

.security-badge {
    background-color: rgba(0, 122, 255, 0.1) !important;
    color: #007AFF !important;
    padding: 2px 6px !important;
    border-radius: 4px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
}

.security-details {
    color: #ffffff !important;
    opacity: 0.7 !important;
    font-size: 0.8rem !important;
}

/* Toast style */
.coming-soon-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 122, 255, 0.95);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    z-index: 9999;
    display: none;
    animation: slideIn 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-content i {
    font-size: 1.2rem;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.toast-hide {
    animation: slideOut 0.3s ease forwards;
}

/* Ajouter un mode sombre automatique */
@media (prefers-color-scheme: dark) {
    :root {
        --background: #000000;
        --surface: #1a1a1a;
        --text: #ffffff;
    }
}

/* Améliorer les animations de chargement */
.loader-container {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Améliorer la lisibilité des codes */
.code-display {
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 1px;
    padding: 12px 16px;
    background: rgba(0, 122, 255, 0.1);
    border-radius: 8px;
}

/* Améliorer le responsive design */
@media (max-width: 768px) {
    .single-coupon {
        margin: 10px 5px;
        padding: 15px;
    }

    .beat-title {
        font-size: 2rem;
    }

    .security-banner {
        padding: 8px 0;
    }

    .security-info {
        font-size: 0.9rem;
    }
}