/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Apr 15 2026 | 22:46:56 */
/* Auto-generated from style.css: liste-chaines.html specific rules */

.logo-light {
    display: none;
}

.logo-dark {
    display: block;
}

/* ===== PROMO BANNER ===== */
.promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: linear-gradient(135deg, #cf1734 0%, #e11d2e 100%);
    box-shadow: 0 4px 20px rgba(210, 15, 42, 0.4);
    transform: translateY(0);
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 12px 60px 12px 20px;
    position: relative;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #fbbf24;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(251, 191, 36, 0.8);
    animation: pulse 2s infinite;
}

.promo-text {
    font-size: 14px;
    color: white;
    font-weight: 500;
}

.promo-text strong {
    font-weight: 800;
}

.promo-btn {
    padding: 8px 18px;
    background: white;
    border-radius: 8px;
    color: var(--primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.promo-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.promo-close {
    position: absolute;
    padding: 0;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.promo-close:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) rotate(90deg);
}

.promo-close svg {
    display: block;
}

.beauty-links {
  position: relative;
  z-index: 2; 
  color: rgb(244, 245, 247) !important;
  text-decoration: none !important;
}

.beauty-links::after {
  content:"";
  position: absolute;
  width: 100%;
  height: 8px;
  border-radius: 0px;
  left: -4px;
  bottom: 2px;
  padding: 0 4px;
  z-index: -1;
  background: var(--secondary);
  opacity: 0.9;
}

.beauty-links:hover {
    color: white;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 15, 0);
    backdrop-filter: blur(0px) saturate(100%);
    -webkit-backdrop-filter: blur(0px) saturate(100%);
    border-bottom: 1px solid rgba(210, 15, 42, 0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    position: relative;
    z-index: 1;
    transition: padding 0.4s ease;
}

/* ===== LOGO ===== */
.logo {
    width: 100%;
    max-width: 180px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo img{
    
    max-width: 180px;
}

.logo:hover {
    transform: scale(1.02);
}

/* ===== NAVIGATION ===== */
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    padding: 10px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}


.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::before {
    transform: scaleX(1);
}

/* ===== ACTIONS ===== */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-icon {
    padding: 0;
    width: 44px;
    height: 44px;
    background: rgba(26, 26, 36, 0.6);
    border: 1px solid rgba(210, 15, 42, 0.25);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

.btn-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(210, 15, 42, 0.3), rgba(225, 29, 46, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-icon:hover {
    background: rgba(210, 15, 42, 0.15);
    border-color: rgba(210, 15, 42, 0.4);
}

.btn-icon:hover::before {
    opacity: 1;
}

.icon-sun,
.icon-moon {
    position: absolute;
    color: var(--text-secondary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-sun {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.icon-moon {
    opacity: 0;
    transform: rotate(180deg) scale(0);
}

.btn-icon:hover .icon-sun,
.btn-icon:hover .icon-moon {
    color: var(--primary);
}

/* ===== MOBILE MENU BUTTON ===== */
.btn-mobile {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: rgba(26, 26, 36, 0.6);
    border: 1px solid rgba(210, 15, 42, 0.25);
    border-radius: 11px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
}

.btn-mobile::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 11px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(210, 15, 42, 0.3), rgba(225, 29, 46, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-mobile:hover {
    background: rgba(210, 15, 42, 0.15);
    border-color: rgba(210, 15, 42, 0.4);
    transform: translateY(-2px);
}

.btn-mobile:hover::before {
    opacity: 1;
}

.btn-mobile span {
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(210, 15, 42, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

@media (max-width: 768px) {

    .promo-banner {
        height: 64px;
    }

    .promo-content {
        padding: 10px 44px 10px 16px;
        gap: 10px;
    }

    .promo-text {
        font-size: 11px;
        line-height: 1.3;
    }

    .header {
        top: 64px;
    }

    .header::before {
        background: rgba(10, 10, 15, 0.7);
        backdrop-filter: blur(16px) saturate(160%);
        -webkit-backdrop-filter: blur(16px) saturate(160%);
        border-bottom-color: rgba(210, 15, 42, 0.2);
    }

    .nav {
        padding: 12px 0;
    }

    .nav-actions {
        gap: 8px;
    }

    .logo {
        max-width: 140px;
    }

    .logo img {
        max-width: 140px;
    }

    .btn-icon,
    .btn-mobile {
        width: 40px;
        height: 40px;
    }

    .promo-text {
        font-size: 12px;
    }

    .promo-btn {
        display: none;
    }}

@media (max-width: 480px) {
    .promo-badge {
        font-size: 10px;
        padding: 5px 12px;
    }

    .promo-text {
        font-size: 11px;
    }}
.bg-dark{
    background: var(--bg-primary);

    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    
}
.bg-gradient {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: radial-gradient(circle at 20% 30%, rgba(210, 15, 42, 0.15) 0%, transparent 50%),*/
    /*            radial-gradient(circle at 80% 70%, rgba(225, 29, 46, 0.15) 0%, transparent 50%);*/
                
                
        background: radial-gradient(circle at 20% 30%, rgba(210, 15, 42, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(210, 15, 42, 0.20) 0%, transparent 50%);
}
.bg-grid {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(135deg, rgba(210, 15, 42, 0.06) 0 1px, transparent 1px 14px),
        repeating-linear-gradient(45deg, rgba(5, 183, 253, 0.04) 0 1px, transparent 1px 18px),
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px);
    background-size: auto, auto, 32px 32px;
}

.bg-circles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.circle-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.circle-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    top: 50%;
    right: -100px;
    animation-delay: 5s;
}

.circle-3 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    bottom: -100px;
    left: 30%;
    animation-delay: 10s;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 120px 0;
    position: relative;
    background: transparent;
}

.faq-section::before {
    display: none;
}

/* FAQ Header */
.faq-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 1;
}

.faq-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.faq-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    position: relative;
    z-index: 1;
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    counter-reset: faq-counter;
}

.faq-grid.faq-contact {
    grid-template-columns: 1fr;
}
.contact-page .faq-support-card{
    height: auto;
}



/* FAQ Icon Wrapper */
.faq-icon-wrapper {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(210, 15, 42, 0.12);
    border: 1px solid rgba(210, 15, 42, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.faq-icon {
    color: var(--primary);
    transition: color 0.3s ease;
}

/* FAQ Chevron */
.faq-chevron {
    flex-shrink: 0;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease, opacity 0.35s ease;
    opacity: 0;
}

.faq-answer p {
    padding: 0 28px 0 88px;
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.faq-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 14px 0 0 88px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(210, 15, 42, 0.35);
    background: linear-gradient(135deg, rgba(210, 15, 42, 0.2), rgba(225, 29, 46, 0.14));
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(2, 8, 23, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-read-more::after {
    content: '->';
    transition: transform 0.25s ease;
}

.faq-read-more:hover {
    transform: translateY(-2px);
    border-color: rgba(225, 29, 46, 0.45);
    box-shadow: 0 12px 24px rgba(2, 8, 23, 0.4);
}

.faq-read-more:hover::after {
    transform: translateX(3px);
}

.faq-read-more:focus-visible {
    outline: 2px solid rgba(210, 15, 42, 0.55);
    outline-offset: 2px;
}

/* FAQ Support Card */
.faq-support-card {
    background:
        linear-gradient(180deg, rgba(23, 8, 15, 0.98) 0%, rgba(12, 7, 14, 0.96) 100%),
        linear-gradient(135deg, rgba(210, 15, 42, 0.08) 0%, rgba(255, 255, 255, 0) 60%);
    border: 1px solid rgba(225, 57, 90, 0.24);
    border-radius: 30px;
    padding: 34px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    position: sticky;
    top: 100px;
    height: fit-content;
    overflow: hidden;
    gap: 18px;
    box-shadow:
        0 28px 56px rgba(8, 3, 9, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.faq-support-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 104, 130, 0.18), transparent 34%),
        radial-gradient(circle at 100% 100%, rgba(225, 29, 46, 0.14), transparent 32%);
    pointer-events: none;
}

.faq-support-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 29px;
    background: linear-gradient(180deg, rgba(34, 10, 19, 0.74) 0%, rgba(15, 8, 15, 0.92) 100%);
    z-index: 0;
}

.faq-support-card > * {
    position: relative;
    z-index: 2;
}

/* Support Status */
.support-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    padding: 9px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 4px;
}

/* Support Icon */
.support-icon {
    width: 92px;
    height: 92px;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.16), transparent 38%),
        linear-gradient(145deg, rgba(224, 33, 65, 0.28), rgba(104, 13, 29, 0.12));
    border: 1px solid rgba(255, 118, 143, 0.25);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 2px;
    position: relative;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 20px 35px rgba(120, 12, 31, 0.28);
}

.support-icon-ring {
    position: absolute;
    inset: 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.support-copy {
    display: grid;
    gap: 10px;
}

.support-eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 130, 149, 0.82);
}

.support-title {
    font-size: 31px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.support-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
}

.support-description {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.58);
    margin: 0;
}

.support-points {
    display: grid;
    gap: 10px;
}

.support-point {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(225, 57, 90, 0.14);
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
    font-weight: 600;
}

.support-point svg {
    flex: 0 0 auto;
    color: #ff5b77;
}

/* Support Stats */
.support-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    width: 100%;
}

.stat-item-small {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(225, 57, 90, 0.18);
    border-radius: 18px;
    padding: 14px 14px 13px;
}

.stat-label-small {
    font-size: 10px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.48);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 8px;
}

.stat-value-small {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-value-small svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    padding: 16px 18px;
    background: linear-gradient(135deg, #d20f2a 0%, #f03a5f 100%) ;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 120, 145, 0.3);
    box-shadow: 0 18px 34px rgba(125, 8, 29, 0.28);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 38px rgba(125, 8, 29, 0.34);
}

.whatsapp-btn-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    flex: 0 0 auto;
}

.whatsapp-btn-copy {
    display: grid;
    gap: 2px;
    flex: 1;
}

.whatsapp-btn-copy strong,
.whatsapp-btn-copy small {
    display: block;
}

.whatsapp-btn-copy strong {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
}

.whatsapp-btn-copy small {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.35;
}

.whatsapp-btn-arrow {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    flex: 0 0 auto;
}

.support-meta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Support Hours */
.support-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    padding: 0 14px;
    border: 1px solid rgba(225, 57, 90, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.025);
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.68);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.support-hours svg {
    color: var(--primary);
}

/* Support Badge */
.support-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    padding: 0 14px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.68);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 16px;
    border: 1px solid rgba(225, 57, 90, 0.16);
    background: rgba(255, 255, 255, 0.025);
}

.support-badge svg {
    color: var(--primary);
}

.support-guide-link {
    display: inline-flex;
    align-items: center;
    align-self: center;
    justify-content: center;
    padding-bottom: 2px;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }

    .faq-title {
        font-size: 36px;
    }

    .faq-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
    }

    .faq-answer p {
        padding: 0 20px 0 68px;
        font-size: 14px;
    }

    .faq-read-more {
        margin-left: 68px;
    }

    .faq-support-card {
        padding: 32px 24px;
    }

    .support-title {
        font-size: 24px;
    }

    .support-icon {
        width: 80px;
        height: 80px;
    }

    .support-meta-row,
    .support-stats {
        grid-template-columns: 1fr;
    }

    .whatsapp-btn {
        padding: 15px 16px;
    }}

@media (max-width: 480px) {
    .faq-title {
        font-size: 28px;
    }

    .faq-answer p {
        padding: 0 20px 0 20px;
    }

    .faq-read-more {
        margin-left: 20px;
    }

    .faq-support-card {
        padding: 26px 18px 20px;
        border-radius: 24px;
    }

    .support-title {
        font-size: 22px;
    }

    .support-point {
        padding: 11px 12px;
        font-size: 13px;
    }

    .support-stats {
        grid-template-columns: 1fr;
    }

    .whatsapp-btn {
        gap: 10px;
        border-radius: 18px;
    }

    .whatsapp-btn-icon {
        width: 42px;
        height: 42px;
    }

    .whatsapp-btn-copy strong {
        font-size: 15px;
    }

    .whatsapp-btn-copy small {
        font-size: 11px;
    }}

.whatsapp-button .btn-icon {
    position: static;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    padding: 0;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(7, 18, 12, 0.22);
    color: #ffffff;
    box-shadow: none !important;
    backdrop-filter: none;
}

.whatsapp-button .btn-icon::before {
    display: none !important;
}

.installation-whatsapp-btn .whatsapp-btn-copy strong,
.installation-whatsapp-btn .whatsapp-btn-copy small,
.installation-whatsapp-btn .whatsapp-btn-icon,
.installation-whatsapp-btn .whatsapp-btn-arrow {
    color: #ffffff;
}

.installation-whatsapp-btn .whatsapp-btn-copy strong {
    font-size: 15px;
}

.installation-whatsapp-btn .whatsapp-btn-copy small {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1024px) {

    .installation-head .section-badge-purple {
        margin-inline: auto;
    }}
/* ===== DOWNLOADS PAGE ===== */
.downloads-page {
    position: relative;
    padding-top: 120px;
    overflow: hidden;
}

.downloads-hero {
    position: relative;
    padding: 80px 0 120px;
}

.downloads-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
    position: relative;
    z-index: 1;
}

.downloads-head h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.downloads-head p {
    color: var(--text-secondary);
    font-size: 18px;
}

body .downloads-page .download-app-card {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 100% 0%, rgba(239, 64, 90, 0.16), transparent 38%),
        linear-gradient(165deg, rgba(13, 18, 32, 0.96), rgba(9, 13, 24, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 22px 48px rgba(2, 10, 24, 0.5);
    min-height: 260px;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

body .downloads-page .download-app-card::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgba(239, 64, 90, 0.88), rgba(255, 169, 186, 0.4), rgba(255, 255, 255, 0));
    pointer-events: none;
}

body .downloads-page .download-app-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 26px 56px rgba(2, 10, 24, 0.56);
}

body .downloads-page .download-app-btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-align: center;
    line-height: 1;
}

@media (max-width: 768px) {
    .downloads-page {
        padding-top: 100px;
    }

    .downloads-head h1 {
        font-size: 36px;
    }}

body .downloads-page .download-modal {
    position: relative;
    overflow: hidden;
    width: min(92vw, 560px);
    max-width: 560px;
    max-height: 88vh;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        radial-gradient(circle at 95% 0%, rgba(239, 64, 90, 0.16), transparent 42%),
        linear-gradient(162deg, rgba(12, 17, 32, 0.98), rgba(9, 14, 27, 0.96) 48%, rgba(16, 10, 21, 0.94) 100%);
    box-shadow:
        0 32px 84px rgba(2, 10, 24, 0.64),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body .downloads-page .download-modal::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 36%);
}

body .downloads-page .download-modal-head {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 2px;
    margin-bottom: 10px;
    padding-right: 36px;
}

body .downloads-page .download-modal-logo {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

body .downloads-page .download-modal-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

body .downloads-page .download-modal-head-main {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

body .downloads-page .download-modal-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

body .downloads-page .download-modal-rating .stars {
    color: #f9c74f;
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 1;
}

body .downloads-page .download-modal-rating .rating-text {
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    color: rgba(241, 245, 249, 0.94);
}

body .downloads-page .download-modal-meta {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
}

body .downloads-page .download-modal-meta span {
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(226, 232, 240, 0.92);
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0;
    white-space: nowrap;
}

body .downloads-page .download-modal-desc {
    margin: 10px 0 12px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(226, 232, 240, 0.9);
    line-height: 1.45;
    font-size: 13px;
}

body .downloads-page .download-modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

body .downloads-page .download-modal-tags span {
    padding: 5px 9px;
    border-radius: 999px;
    border: 1px solid rgba(225, 29, 46, 0.42);
    background: rgba(225, 29, 46, 0.16);
    color: rgba(255, 236, 240, 0.96);
    font-size: 11px;
    font-weight: 600;
}

body .downloads-page .download-modal-downloader {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    margin-bottom: 12px;
}

body .downloads-page .download-modal-downloader .downloader-logo {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

body .downloads-page .download-modal-downloader .downloader-logo img {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    object-fit: contain;
}

body .downloads-page .download-modal-downloader .downloader-content {
    min-width: 0;
    display: grid;
    gap: 4px;
}

body .downloads-page .download-modal-downloader .downloader-content strong {
    margin: 0;
    color: rgba(248, 250, 252, 0.95);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.02em;
}

body .downloads-page .download-modal-downloader span {
    display: block;
    color: rgba(203, 213, 225, 0.86);
    font-size: 11px;
}

body .downloads-page .downloader-code-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 0;
}

body .downloads-page .download-modal-shots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 8px;
    margin: 10px 0 12px;
}

body .downloads-page .download-modal-shots img {
    width: 100%;
    height: 82px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: block;
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

body .downloads-page .download-modal-shots img:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 14px 26px rgba(2, 10, 24, 0.38);
}

body .downloads-page .download-modal-links-title {
    margin: 0 0 8px;
    color: rgba(203, 213, 225, 0.8);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

body .downloads-page .download-modal-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

body .downloads-page .download-modal-actions a {
    flex: 0 0 68px;
    width: 68px;
    height: 52px;
    border-radius: 10px;
    border: 1px solid rgba(15, 23, 42, 0.16);
    background: #ffffff;
    display: grid;
    place-items: center;
    transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

body .downloads-page .download-modal-actions a:hover {
    transform: translateY(-2px);
    border-color: rgba(15, 23, 42, 0.28);
    background: #ffffff;
}

body .downloads-page .download-modal-actions a img {
    max-height: 28px;
    max-width: 72%;
    object-fit: contain;
}

@media (max-width: 768px) {
    body .downloads-page .download-modal {
        width: min(95vw, 520px);
        padding: 16px 12px 12px;
        border-radius: 18px;
    }

    body .downloads-page .download-modal-head {
        align-items: flex-start;
        gap: 10px;
        padding-right: 34px;
    }

    body .downloads-page .download-modal-logo {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    body .downloads-page .download-modal-rating .rating-text {
        font-size: 12px;
    }

    body .downloads-page .download-modal-meta {
        flex-wrap: wrap;
    }

    body .downloads-page .download-modal-meta span {
        font-size: 11px;
        padding: 5px 8px;
    }

    body .downloads-page .download-modal-shots {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body .downloads-page .download-modal-shots img {
        height: 78px;
    }

    body .downloads-page .download-modal-downloader .downloader-logo {
        width: 40px;
        height: 40px;
    }

    body .downloads-page .download-modal-downloader .downloader-logo img {
        width: 24px;
        height: 24px;
    }

    body .downloads-page .download-modal-actions {
        gap: 7px;
    }

    body .downloads-page .download-modal-actions a {
        flex-basis: 64px;
        width: 64px;
        height: 50px;
    }}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 16px 30px rgba(16, 185, 129, 0.35);
}

.promo-banner {
    background: linear-gradient(135deg, #b30f2c 0%, #e11d2e 100%);
    box-shadow: 0 8px 28px rgba(210, 15, 42, 0.35);
}

.header::before {
    background: rgba(10, 15, 31, 0.7);
    backdrop-filter: blur(24px) saturate(180%);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nav-links a::before {
    background: linear-gradient(135deg, #b30f2c 0%, #e11d2e 100%);
}

.features-section::before,
.pricing-section::before,
.faq-section::before {
    background: linear-gradient(to bottom, rgba(210, 15, 42, 0.2), transparent);
}

.pricing-title,
.features-title,
.faq-title,
.downloads-head h1,
.blog-head h1,
.contact-head h1 {
    letter-spacing: -0.6px;
}

.highlight-content .beauty-links {
    display: inline-block;
    margin-top: 3px;
    font-size: 12px;
}

.btn-icon,
.btn-mobile {
    border-color: var(--btn-border);
}

.btn-icon:hover,
.btn-mobile:hover {
    border-color: var(--btn-border-strong);
}

.btn-icon::before,
.btn-mobile::before {
    background: linear-gradient(135deg, var(--btn-border-gradient-start), var(--btn-border-gradient-end));
}

        .channels-container {
            max-width: 1360px;
            margin: 0 auto;
            padding: clamp(56px, 7vw, 88px) clamp(18px, 4vw, 42px);
        }

        /* Search & Filter */
        .channels-filter {
            margin-bottom: clamp(34px, 5vw, 56px);
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .search-box {
            position: relative;
            max-width: 720px;
            margin: 0 auto;
            width: 100%;
        }

        .search-box input {
            width: 100%;
            height: 58px;
            padding: 0 56px 0 20px;
            background: linear-gradient(145deg, rgba(22, 9, 14, 0.9), rgba(14, 7, 11, 0.86));
            border: 1px solid rgba(225, 29, 46, 0.34);
            border-radius: 14px;
            color: var(--text-primary);
            font-size: 0.98rem;
            transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
        }

        .search-box input::placeholder {
            color: #c7a2ab;
        }

        .search-box input:focus {
            outline: none;
            border-color: rgba(239, 68, 95, 0.95);
            box-shadow: 0 0 0 4px rgba(225, 29, 46, 0.18);
            transform: translateY(-1px);
        }

        .search-icon {
            position: absolute;
            right: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: #d0a6af;
        }

        .filter-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .category-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 20px;
            padding-bottom: 16px;
            border-bottom: 1px dashed rgba(255, 170, 184, 0.32);
        }

        .category-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #c51131, #e11d2e);
            box-shadow: 0 12px 28px rgba(191, 18, 48, 0.34);
            flex-shrink: 0;
        }

        [data-category="sport"] .category-icon {
            background: linear-gradient(135deg, #b30f2c, #e11d2e);
        }

        [data-category="cinema"] .category-icon {
            background: linear-gradient(135deg, #8f1226, #cf1734);
        }

        [data-category="series"] .category-icon {
            background: linear-gradient(135deg, #9f1239, #e11d48);
        }

        [data-category="kids"] .category-icon {
            background: linear-gradient(135deg, #cf1734, #f97316);
        }

        [data-category="docs"] .category-icon {
            background: linear-gradient(135deg, #aa102a, #dc2626);
        }

        [data-category="news"] .category-icon {
            background: linear-gradient(135deg, #991b1b, #ef4444);
        }

        .category-icon svg {
            width: 29px;
            height: 29px;
            stroke: #fff;
            fill: none;
        }

        .category-info h2 {
            margin: 0;
            font-size: clamp(1.24rem, 1.9vw, 1.72rem);
            line-height: 1.25;
            color: var(--text-primary);
        }

        .category-count {
            margin-top: 3px;
            font-size: 0.9rem;
            color: #e7bac2;
        }

        .channels-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 10px;
        }

        .channel-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
        }

        .channel-header > div:last-child {
            min-width: 0;
        }

        .channel-logo {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(225, 29, 46, 0.18), rgba(185, 28, 28, 0.16));
            color: #ffb5c2;
            flex-shrink: 0;
        }

        .channel-logo svg {
            width: 23px;
            height: 23px;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .channel-logo svg path,
        .channel-logo svg circle,
        .channel-logo svg rect,
        .channel-logo svg line,
        .channel-logo svg polyline,
        .channel-logo svg polygon,
        .channel-logo svg ellipse {
            stroke: currentColor;
        }

        .channel-logo svg [fill]:not([fill="none"]) {
            fill: currentColor;
        }

        .channel-quality {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 4px 10px;
            border-radius: 999px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.45px;
            text-transform: uppercase;
            margin-top: 2px;
            border: 1px solid rgba(239, 68, 95, 0.46);
            color: #ffd0d8;
            background: rgba(127, 29, 29, 0.25);
        }

        .channel-quality.quality-4k {
            border-color: rgba(251, 191, 36, 0.48);
            color: #ffe7ae;
            background: rgba(146, 64, 14, 0.22);
        }

        .channel-quality.quality-hd {
            border-color: rgba(248, 113, 113, 0.46);
            color: #ffe2e2;
            background: rgba(153, 27, 27, 0.25);
        }

        .channel-features {
            display: flex;
            flex-wrap: wrap;
            gap: 7px;
            margin-top: 8px;
        }

        @media (max-width: 768px) {

            .channels-grid {
                grid-template-columns: 1fr;
            }

            .category-header {
                align-items: flex-start;
            }

            .category-icon {
                width: 50px;
                height: 50px;
                border-radius: 12px;
            }

            .category-icon svg {
                width: 25px;
                height: 25px;
            }

            .filter-tabs {
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 8px;
                flex-wrap: nowrap;
                -webkit-overflow-scrolling: touch;
            }}

.promo-banner {
    background: linear-gradient(96deg, #a1021c 0%, #d20f2a 48%, #f73d54 100%);
    box-shadow: 0 8px 30px rgba(210, 15, 42, 0.48);
}

.promo-badge {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.36);
}

.section-badge-purple {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: fit-content !important;
    max-width: 100% !important;
    padding: 10px 18px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)) !important;
    color: #ffd6de !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 10px 26px rgba(0, 0, 0, 0.18) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 0.14em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
}

.section-badge-purple::before {
    content: '' !important;
    width: 7px !important;
    height: 7px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #ff9aae 0%, #f4c95d 100%) !important;
    box-shadow: 0 0 12px rgba(255, 154, 174, 0.5) !important;
    flex-shrink: 0 !important;
}

.status-dot,
.badge-dot,
.feature-check,
.trust-icon,
.step-number {
    background: linear-gradient(135deg, #ff6a79, #d20f2a);
    box-shadow: 0 0 0 4px rgba(210, 15, 42, 0.2);
}

.bg-grid {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.32;
}

body .bg-dark {
    background: #0e090a;
}

.bg-grid {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
}

body .beauty-links {
    color: #f8fafc !important;
}

body .review-verified-v2 svg path,
body .faq-icon-wrapper svg,
body .feature-check svg,
body .feature-icon svg {
    stroke: #d20f2a !important;
    fill: transparent !important;
}

.bg-grid {
    display: none !important;
}

.header .nav {
    min-height: 84px;
    gap: 20px;
}

.header .nav-links {
    gap: 10px;
}

.header .nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border-radius: 999px;
    color: rgba(248, 250, 252, 0.86) !important;
    font-weight: 700;
    letter-spacing: 0.2px;
    position: relative;
    transition: color 0.25s ease, transform 0.25s ease;
    z-index: 0;
}

.header .nav-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(210, 15, 42, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: scale(0.86);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
    z-index: -1;
}

.header .nav-links a::after {
    content: '';
    position: absolute;
    left: 22%;
    right: 22%;
    bottom: 5px;
    height: 2px;
    border-radius: 999px;
    background: #ef405a;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

@media (max-width: 1024px) {

    .header .nav {
        min-height: 72px;
    }}

.header .nav-links a {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 10px 14px !important;
    color: rgba(248, 250, 252, 0.84) !important;
    transition: color 0.22s ease, padding-left 0.22s ease;
}

.header .nav-links a::after {
    display: none !important;
}

.header .nav-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 11px;
    height: 11px;
    background-color: #d20f2a;
    -webkit-mask-image: var(--maple-link-mask);
    mask-image: var(--maple-link-mask);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transform: translateY(-50%) scale(0.5);
    transform-origin: center;
    opacity: 0;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

/* ===== STEP 19: PROMO BANNER V2 (CLEAN STRIP) ===== */
body .promo-banner {
    padding: 0 !important;
    background: linear-gradient(120deg, var(--canada-red-strong), var(--canada-red) 52%, var(--canada-red-soft)) !important;
    box-shadow: 0 12px 30px rgba(210, 15, 42, 0.4) !important;
    border-bottom: 1px solid rgba(255, 210, 219, 0.22);
}

body .promo-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 50%, rgba(255, 180, 194, 0.28), transparent 30%),
        radial-gradient(circle at 88% 38%, rgba(255, 122, 149, 0.2), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
    pointer-events: none;
}

body .promo-banner::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 236, 241, 0.92), transparent);
    opacity: 0.8;
    pointer-events: none;
}

body .promo-content {
    width: 100%;
    min-height: 56px;
    padding: 9px 50px 9px 0 !important;
    gap: 12px;
    justify-content: flex-start;
    position: relative;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

body .promo-badge {
    padding: 6px 10px;
    border-radius: 7px;
    border: 1px solid rgba(255, 182, 198, 0.4);
    background: rgba(255, 255, 255, 0.11);
    color: #ffe7ed;
    font-size: 10px;
    letter-spacing: 0.8px;
    font-weight: 800;
}

body .badge-dot {
    width: 6px;
    height: 6px;
    background: #ffd7e1;
    box-shadow: 0 0 8px rgba(255, 215, 225, 0.8);
}

body .promo-text {
    font-size: 15px;
    font-weight: 650;
    color: #fff;
    letter-spacing: 0.1px;
}

body .promo-text strong {
    color: #ffe9ee;
}

body .promo-btn {
    margin-left: auto;
    padding: 8px 14px !important;
    border-radius: 8px;
    border: 1px solid rgba(255, 198, 211, 0.42) !important;
    background: rgba(255, 255, 255, 0.14) !important;
    color: #ffffff !important;
    font-size: 12.5px;
    font-weight: 800;
    box-shadow: none !important;
}

body .promo-btn:hover {
    background: rgba(255, 255, 255, 0.22) !important;
    transform: translateY(-1px);
    box-shadow: none !important;
}

body .promo-close {
    right: 10px;
    width: 28px;
    height: 28px;
    border-radius: 7px;
    border: 1px solid rgba(255, 180, 197, 0.34);
    background: rgba(255, 255, 255, 0.14);
    color: #ffe8ee;
}

body .promo-close:hover {
    background: rgba(255, 255, 255, 0.24);
    border-color: rgba(255, 214, 223, 0.46);
}

@media (max-width: 760px) {
    body .promo-content {
        min-height: 64px;
        padding: 8px 42px 8px 0 !important;
        gap: 8px;
        flex-wrap: wrap;
    }

    body .promo-badge {
        font-size: 9px;
        padding: 5px 8px;
    }

    body .promo-text {
        font-size: 11px;
        line-height: 1.25;
        flex: 1 1 calc(100% - 96px);
    }

    body .promo-btn {
        margin-left: 0;
        padding: 6px 10px !important;
        font-size: 11px;
    }}

body .apps-header-special .section-badge-purple {
    margin-bottom: 18px;
}

body .how-header-maple .section-badge-purple {
    margin-bottom: 18px;
}

.footer.footer-maple .logo-dark {
    display: none;
}

@media (max-width: 768px) {

    body .nav {
        min-height: 64px;
        gap: 10px;
    }

    body .logo,
    body .logo img {
        max-width: 122px;
    }

    body .nav-actions {
        flex: 0 0 auto;
        gap: 8px;
    }

    body .btn-icon,
    body .btn-mobile {
        width: 42px;
        height: 42px;
    }

    body .mobile-menu {
        top: calc(100% - 1px);
    }}
