/* =============================================
   MOBILE-FIRST GEN-Z DESIGN - PINK & BLACK
   ============================================= */

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-pink: #ff006e;
    --neon-pink: #ff1493;
    --dark-pink: #c2185b;
    --light-pink: #ffb3d9;
    --very-light-pink: #ffe0f0;
    --white: #ffffff;
    --black: #000000;
    --dark-bg: #0a0a0a;
    --medium-gray: #1a1a1a;
    --top-header-height: 52px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #222;
    background: #f5f5f5;
    line-height: 1.6;
}

body.has-global-sticky-actions {
    padding-bottom: 84px;
}

html {
    scroll-behavior: smooth;
}

/* =============================================
   AGE GATE - MOBILE FIRST
   ============================================= */

.age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    padding: 16px;
    z-index: 9999;
}

.age-gate-modal {
    background: white;
    border-radius: 20px;
    padding: 25px;
    max-width: 95%;
    width: min(100%, 560px);
    max-height: calc(100vh - 32px);
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(255, 0, 110, 0.3);
    border: 2px solid var(--primary-pink);
    position: relative;
    overflow-x: hidden;
    animation: popIn 0.4s ease;
}

@keyframes popIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

body.age-popup-active {
    overflow: hidden;
}

.age-gate-header {
    margin-bottom: 14px;
    text-align: center;
}

.age-gate-logo {
    max-width: 110px;
    height: auto;
    margin-bottom: 10px;
}

.age-badge-modern {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 900;
    color: white;
    margin: 0 auto 15px;
    border: 3px solid var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.3);
}

.age-gate-title {
    font-size: 30px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2px;
    text-align: center;
}

.age-gate-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 18px;
    text-align: center;
}

.notice-text-modern {
    background: var(--very-light-pink);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid var(--light-pink);
    text-align: left;
}

.checkbox-container-modern {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    align-items: flex-start;
}

.custom-checkbox {
    appearance: none;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--primary-pink);
    border-radius: 4px;
    cursor: pointer;
    background: white;
    margin-top: 2px;
}

.custom-checkbox:checked {
    background: var(--primary-pink);
    border-color: var(--dark-pink);
}

.checkbox-label {
    font-size: 13px;
    color: #333;
    line-height: 1.4;
    font-weight: 500;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid var(--primary-pink);
}

.age-gate-buttons-modern {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.btn-accept-modern {
    background: var(--gradient-primary);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    font-size: 15px;
    text-transform: uppercase;
}

.btn-decline-modern {
    background: #f0f0f0;
    color: #333;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    font-size: 15px;
    text-transform: uppercase;
}

.age-gate-footer {
    font-size: 11px;
    color: #999;
    margin-top: 15px;
    text-align: center;
}

.agegate-error {
    display: none;
    margin: 0 0 12px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #f3c0d5;
    background: #fff1f7;
    color: #9f1249;
    font-size: 13px;
    font-weight: 600;
}

/* =============================================
   HEADER - MOBILE FIRST
   ============================================= */

:root {
    --gradient-primary: linear-gradient(135deg, #ff006e 0%, #c2185b 100%);
}

.top-header {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 15px;
    z-index: 130;
    box-shadow: 0 4px 15px rgba(255, 0, 110, 0.2);
    position: sticky;
    top: 0;
    overflow: hidden;
}

.top-header .container-fluid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    max-width: 1320px;
    margin: 0 auto;
}

.top-header h2 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
    flex: 1;
    min-width: 0;
    text-align: center;
}

.header-glow-layer {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.22) 0, rgba(255, 255, 255, 0) 38%),
                radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.18) 0, rgba(255, 255, 255, 0) 42%);
    animation: headerGlowMove 9s linear infinite;
    pointer-events: none;
}

@keyframes headerGlowMove {
    0% { transform: translateX(0); }
    50% { transform: translateX(18px); }
    100% { transform: translateX(0); }
}

.header-running-strip {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 22px;
    white-space: nowrap;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    opacity: 0.95;
    padding: 2px 12px 6px;
    animation: stripMove 8s linear infinite;
}

.header-running-strip span {
    position: relative;
    padding-left: 14px;
}

.header-running-strip span::before {
    content: '•';
    position: absolute;
    left: 0;
    top: -1px;
    color: #fff;
    font-size: 14px;
}

@keyframes stripMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-280px); }
}

.header-text-main.swap-anim {
    animation: tickerSwap 0.35s ease;
}

@keyframes tickerSwap {
    0% { opacity: 0.35; transform: translateY(4px); }
    100% { opacity: 1; transform: translateY(0); }
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.counter-section {
    flex: 1;
}

.counter-number-top {
    font-size: 20px;
    font-weight: 900;
}

.counter-title-top {
    font-size: 10px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-join-now {
    background: white;
    color: var(--primary-pink);
    font-weight: 800;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 11px;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

@media (max-width: 899px) {
    .top-header .container-fluid {
        justify-content: space-between;
        gap: 10px;
    }

    .top-header h2 {
        text-align: left;
    }
}

/* =============================================
   NAVIGATION - MOBILE FIRST
   ============================================= */

.navbar-container {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid var(--primary-pink);
    position: sticky;
    top: var(--top-header-height);
    z-index: 125;
}

.cusotm-nav-container {
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
}

.logo-header {
    font-size: 18px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    padding: 10px 6px;
    white-space: nowrap;
    min-width: max-content;
    flex-shrink: 0;
}

.nav-main-zone {
    flex: 1;
    min-width: 0;
    margin-left: 8px;
}

.nav-menu {
    display: flex;
    gap: 0;
    list-style: none;
    flex: 1;
    overflow-x: auto;
    padding: 0;
}

.nav-menu li {
    flex-shrink: 0;
}

.nav-menu li a {
    display: block;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 12px;
    padding: 12px 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-pink);
    border-bottom-color: var(--primary-pink);
}

.nav-icons-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 8px;
    flex-shrink: 0;
}

.nav-icons .signup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    color: #4a4a4a;
}

.nav-icons .signup svg {
    width: 22px;
    height: 22px;
}

/* Mobile nav: hide links until menu is opened */
@media (max-width: 899px) {
    .nav-main-zone {
        justify-content: flex-end;
    }

    .nav-menu {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 1px);
        background: #ffffff;
        border-top: 1px solid #ececec;
        border-bottom: 2px solid var(--primary-pink);
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
        z-index: 120;
        max-height: 70vh;
        overflow-y: auto;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
        padding: 14px 16px;
    }

    .nav-menu li a:hover,
    .nav-menu li a.active {
        border-bottom-color: #f0f0f0;
        background: #fff4fa;
    }

    .nav-icons.d-xl-none.d-lg-none {
        display: flex;
    }

    .nav-icons-container .nav-icons:first-child {
        display: flex;
    }
}

.new-ad {
    background: var(--primary-pink);
    color: white;
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    margin: 12px 10px;
    white-space: nowrap;
    cursor: pointer;
    flex-shrink: 0;
}

/* =============================================
   MAIN CONTENT - MOBILE FIRST
   ============================================= */

.main-content {
    min-height: calc(100vh - 300px);
    padding: 20px 15px;
}

/* =============================================
   CARDS GRID - MOBILE FIRST
   ============================================= */

.cards-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 15px 0;
}

.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 3px solid var(--primary-pink);
}

.card:active {
    transform: scale(0.98);
}

.card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    overflow: hidden;
}

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

.card-body {
    padding: 15px;
}

.card-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #000;
}

.card-text {
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
    line-height: 1.3;
}

.card-text-wrap {
    margin-bottom: 10px;
}

.card-more-btn {
    border: 0;
    background: transparent;
    color: #ff006e;
    padding: 0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.card-more-btn:hover {
    text-decoration: underline;
}

.card-rating {
    font-size: 12px;
    color: var(--primary-pink);
    font-weight: 600;
    margin-bottom: 12px;
}

.card-button {
    width: 100%;
    background: var(--primary-pink);
    color: white;
    padding: 11px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
}

/* =============================================
   BUTTONS - MOBILE FIRST
   ============================================= */

.btn-load-more {
    background: var(--primary-pink);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    text-transform: uppercase;
    width: 100%;
    margin-top: 15px;
}

.load-more-container {
    display: flex;
    justify-content: center;
    margin: 20px auto 14px;
}

#loadMoreBtn {
    width: min(100%, 320px);
}

.hero-home.new-year-banner {
    background: transparent;
    padding-top: 10px;
    padding-bottom: 20px;
}

.hero-home .container {
    max-width: 760px;
}

.card-search-home {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    border-radius: 14px;
    padding: 8px;
}

.btn-home-search {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 58px;
    border-radius: 30px;
    border: 1px solid #d1d7df;
    background: #fff;
    color: #2e3642;
    font-size: 22px;
    font-weight: 600;
    padding: 0 18px;
}

.insertadhome,
.insertadhome.w-100 {
    width: auto !important;
    min-width: 190px;
    max-width: 260px;
    margin: 0 auto 14px !important;
    justify-content: center;
}

body.modal-open {
    overflow: hidden;
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(0, 0, 0, 0.55);
    padding: 18px;
    overflow: hidden;
    align-items: flex-start;
    justify-content: center;
}

.modal.is-open {
    display: flex;
}

.modal-dialog {
    width: min(100%, 560px);
    margin: 12px auto;
    max-height: calc(100vh - 24px);
}

.modal-content {
    background: #f3f4f6;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #d8dde4;
    display: flex;
    flex-direction: column;
    max-height: 100%;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid #d9dce1;
}

.modal-header .close {
    border: 0;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    color: #7a7a7a;
    cursor: pointer;
}

.modal .form-select,
.modal .form-control {
    width: 100%;
    min-height: 44px;
    border: 1px solid #cfd5dc;
    border-radius: 6px;
    background: #fff;
    padding: 0 12px;
    color: #2f3640;
}

.modal-body {
    overflow-y: auto;
}

.search-filter-list {
    margin-top: 12px;
}

.search-filter-title {
    font-weight: 800;
    color: #323a45;
    margin-bottom: 6px;
}

.search-filter-toggle {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 12px 2px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #dde1e7;
    color: #333c48;
    text-align: left;
    font-weight: 700;
    cursor: pointer;
}

.search-filter-toggle span {
    color: #e0311e;
    font-size: 26px;
    line-height: 1;
    transform: rotate(0deg);
    transition: transform 0.2s ease;
}

.search-filter-toggle.active span {
    transform: rotate(90deg);
}

.search-filter-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px 0 14px;
    border-bottom: 1px solid #dde1e7;
}

.search-filter-panel.active {
    display: grid;
}

.search-filter-panel label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 7px 10px;
    border: 1px solid #d3d8df;
    border-radius: 10px;
    background: #fff;
    font-size: 14px;
    color: #2f3640;
}

.search-filter-panel input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.modal-footer.filters {
    position: sticky;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 12px;
    padding: 12px 16px;
    border-top: 1px solid #d9dce1;
}

.search-modal-footer {
    background: #fff;
    z-index: 2;
    position: static !important;
}

.search-action-btn {
    min-height: 44px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}

.search-action-clear {
    border: 1px solid #d0d5dd;
    background: #f8fafc;
    color: #334155;
}

.search-action-submit {
    border: 1px solid #dc2626;
    background: #e0311e;
    color: #fff;
}

.search-action-submit:hover {
    background: #c92616;
}

.template-city-grid {
    display: grid;
    gap: 14px;
}

.city-block-card {
    background: #f5f6f8;
    border: 1px solid #e4e8ee;
    border-radius: 12px;
    padding: 18px 14px;
    text-align: center;
}

.city-block-card h3 {
    font-size: 36px;
    font-weight: 800;
    color: #e0311e;
    margin: 0 0 12px;
}

.city-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.button-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 18px;
    border: 1px solid #e0311e;
    border-radius: 20px;
    color: #e0311e;
    text-decoration: none;
    font-weight: 700;
    background: #fff;
}

.button-pill:hover {
    background: #fff2f0;
}

.spinner {
    width: 14px;
    height: 14px;
    border: 2px solid var(--light-pink);
    border-top-color: var(--primary-pink);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* =============================================
   MOBILE QUICK ACTIONS
   ============================================= */

.mobile-quick-actions {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    z-index: 120;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: min(640px, calc(100% - 16px));
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.18);
}

.mobile-action-call,
.mobile-action-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

.mobile-action-call {
    background: linear-gradient(90deg, #d1005d 0%, #ff006e 100%);
}

.mobile-action-whatsapp {
    background: linear-gradient(90deg, #058d1f 0%, #00b629 100%);
}

/* Legacy promo bars in old page templates should not compete with global sticky actions. */
.challenge-details.fixed-bottom {
    position: static;
    bottom: auto;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.page-wrapper,
.main-content,
.footer {
    padding-bottom: 72px;
}

/* =============================================
   MAIN FOOTER - MOBILE FIRST
   ============================================= */

.footer {
    background: #f1f2f4;
    color: #4b5563;
    padding: 0;
    border-top: 1px solid #d7dbe0;
}

.footer-top-wrap {
    padding: 24px 16px 20px;
}

.footer-brand-col .logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
}

.footer-desc-col .text-muted {
    color: #5b6572;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 500;
}

.footer hr {
    border: 0;
    border-top: 1px solid #d7dbe0;
    margin: 0 0 16px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-section h4 {
    color: var(--primary-pink);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p {
    font-size: 12px;
    line-height: 1.6;
    color: #999;
}

.footer-section a {
    display: block;
    color: #999;
    text-decoration: none;
    font-size: 12px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-pink);
}

.footer-intro-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.footer-links-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.footer-links-row > .col-md {
    background: #f8f9fb;
    border: 1px solid #e4e8ee;
    border-radius: 12px;
    padding: 12px 14px;
}

.footer-links-row h5 {
    color: #2a3140;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 800;
    margin: 0 0 10px;
}

.footer .list-unstyled {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer .list-unstyled li {
    margin-bottom: 12px;
}

.footer .list-unstyled li:last-child {
    margin-bottom: 0;
}

.footer .list-unstyled a,
.footer a.text-muted,
.footer a.font-light,
.footer a.text-sm {
    color: #5f6b7a;
    text-decoration: none;
    font-size: 20px;
    line-height: 1.45;
    font-weight: 500;
}

.footer .copyright {
    padding-bottom: 4px;
}

.footer .list-unstyled a:hover,
.footer .list-unstyled a:focus-visible {
    color: var(--primary-pink);
    text-decoration: none;
}

.footer-cta-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.footer-boost-col,
.footer-country-col {
    background: #f8f9fb;
    border: 1px solid #e4e8ee;
    border-radius: 12px;
    padding: 12px 14px;
}

.footer-boost-col h6,
.footer-country-col h6 {
    color: #2a3140;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}

.footer-country-select-wrap {
    position: relative;
}

.footer-country-select {
    width: 100%;
    min-height: 48px;
    border: 1px solid #c8cdd5;
    border-radius: 14px;
    background: #f4f6f8;
    padding: 0 14px;
    color: #2f3542;
    font-weight: 600;
    font-size: 16px;
}

.footer-company-row {
    padding-top: 10px;
}

.footer-payment-options {
    align-items: center;
}

.footer-visa-text {
    color: #2444c7;
    font-size: 34px;
    font-style: italic;
    line-height: 1;
    letter-spacing: 0.5px;
}

.footer-company-meta {
    margin-top: 8px;
    color: #5b6572;
    font-size: 14px;
    line-height: 1.4;
}

.footer-company-row .text-muted {
    color: #5b6572;
}

.social-section {
    display: block;
    margin-top: 0;
    background: #3f4967;
    padding: 24px 0 18px;
    position: relative;
}

.social-section .container {
    padding-top: 18px;
    padding-bottom: 22px;
}

.social-icons {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    cursor: pointer;
}

.social-icons .js-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.14);
    text-decoration: none;
    pointer-events: auto;
    cursor: pointer;
}

.social-icons .js-link:hover {
    background: rgba(255, 255, 255, 0.24);
    transform: translateY(-2px);
}

.social-icons .js-link span {
    line-height: 1;
}

.social-section .text-white {
    color: #ffffff;
    text-decoration: none;
}

.social-icons:active {
    background: transparent;
}

.back-to-top {
    display: none;
    position: absolute;
    right: 12px;
    top: -18px;
    bottom: auto;
    width: auto;
    height: 36px;
    padding: 0 16px;
    background: #ffffff;
    color: #111;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    z-index: 90;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
    display: flex;
}

.floating-telegram {
    display: none;
    position: fixed;
    right: 18px;
    bottom: 136px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #2ca5e0;
    color: #fff;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    z-index: 92;
    box-shadow: 0 8px 20px rgba(44, 165, 224, 0.4);
    transform-origin: center;
    will-change: transform;
}

.floating-telegram.show {
    display: flex;
    animation: telegramBouncePulse 1.35s ease-in-out infinite;
}

@keyframes telegramBouncePulse {
    0% {
        transform: translateY(0) scale(0.8);
    }
    25% {
        transform: translateY(-8px) scale(1.2);
    }
    50% {
        transform: translateY(0) scale(0.95);
    }
    75% {
        transform: translateY(-4px) scale(1.08);
    }
    100% {
        transform: translateY(0) scale(0.8);
    }
}

.footer-bottom {
    border-top: 1px solid var(--medium-gray);
    padding-top: 15px;
    text-align: center;
    color: #fff;
    font-size: 18px;
}

.social-section .copyright {
    margin-top: 10px;
    padding-bottom: 4px;
}

/* =============================================
   FORMS - MOBILE FIRST
   ============================================= */

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
    font-size: 13px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 13px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 10px rgba(255, 0, 110, 0.15);
}

/* =============================================
   UTILITY CLASSES
   ============================================= */

.text-center { text-align: center; }
.text-white { color: white; }
.text-dark { color: #333; }
.mt-3 { margin-top: 20px; }
.mb-3 { margin-bottom: 20px; }
.p-3 { padding: 20px; }
.d-flex { display: flex; }
.d-none { display: none; }
.gap-2 { gap: 10px; }

/* =============================================
   TABLET - 600px+
   ============================================= */

@media (min-width: 600px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .nav-menu li a {
        font-size: 13px;
    }

    .age-gate-modal {
        padding: 35px;
        max-width: 540px;
    }

    .age-gate-title {
        font-size: 32px;
    }

    .age-badge-modern {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }

    .card-image {
        height: 220px;
    }

    .main-content {
        padding: 30px 20px;
    }
}

/* =============================================
   DESKTOP - 900px+
   ============================================= */

@media (min-width: 900px) {
    .cards-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .cusotm-nav-container {
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: center;
        gap: 14px;
        padding: 0 12px;
    }

    .nav-main-zone {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto auto;
        align-items: center;
        gap: 10px;
        margin-left: 0;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 2px;
    }

    .nav-menu li a {
        font-size: 14px;
        padding: 12px 14px;
    }

    .nav-icons.d-xl-none.d-lg-none {
        display: none;
    }

    .nav-icons-container .nav-icons:first-child {
        display: flex;
    }

    .new-ad {
        margin: 0;
        min-height: 36px;
        padding: 8px 12px;
    }

    .age-gate-modal {
        padding: 40px;
        max-width: 600px;
    }

    .age-gate-title {
        font-size: 36px;
    }

    .age-badge-modern {
        width: 90px;
        height: 90px;
        font-size: 36px;
    }

    .card-image {
        height: 250px;
    }

    .main-content {
        padding: 40px 30px;
    }

    .btn-load-more {
        width: auto;
    }

    .btn-home-search {
        font-size: 18px;
    }

    .insertadhome,
    .insertadhome.w-100 {
        min-width: 220px;
    }

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

    .city-block-card h3 {
        font-size: 28px;
    }

    body.has-global-sticky-actions {
        padding-bottom: 90px;
    }

    .footer-top-wrap {
        max-width: 980px;
        margin: 0 auto;
        padding: 26px 20px 24px;
    }

    .footer-intro-row {
        grid-template-columns: 260px 1fr;
        align-items: center;
    }

    .footer-links-row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 28px;
    }

    .footer-links-row > .col-md,
    .footer-boost-col,
    .footer-country-col {
        background: transparent;
        border: 0;
        border-radius: 0;
        padding: 0;
    }

    .footer-links-row h5 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .footer .list-unstyled a,
    .footer a.text-muted,
    .footer a.font-light,
    .footer a.text-sm {
        font-size: 14px;
        line-height: 1.55;
    }

    .footer-boost-col h6,
    .footer-country-col h6 {
        font-size: 16px;
    }

    .footer-desc-col .text-muted {
        font-size: 16px;
    }

    .footer-cta-row {
        grid-template-columns: 1fr 1fr;
        align-items: end;
        gap: 24px;
    }

    .social-section .container {
        max-width: 980px;
        margin: 0 auto;
    }

    .back-to-top {
        right: max(24px, calc((100vw - 980px) / 2));
    }

    .back-to-top {
        right: 18px;
        top: -20px;
        bottom: auto;
    }

    .floating-telegram {
        bottom: 76px;
    }
}

/* =============================================
   LARGE DESKTOP - 1200px+
   ============================================= */

@media (min-width: 1200px) {
    .cards-container {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }

    .main-content {
        max-width: 1400px;
        margin: 0 auto;
    }
}
