:root {
    --bg-primary: #0d0d0d;
    --bg-secondary: #121212;
    --card-bg: #1a1a1a;
    --surface-elevated: #222222;
    --border: #2a2a2a;
    --gold: #ffd700;
    --gold-soft: #c9a227;
    --gold-dark: #a67c00;
    --gold-light: #ffe680;
    --gold-hover: #ffdf33;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #707070;
    --cta-red: #ff3b3b;
    --cta-red-hover: #ff5252;
    --success-green: #00c853;
    --success-green-light: #00e676;
    --gold-gradient: linear-gradient(90deg, #ffd700, #c9a227);
    --gold-shine: linear-gradient(90deg, #fff3b0, #ffd700, #c9a227);
    --shadow-gold: 0 0 10px rgba(255, 215, 0, 0.2);
    --shadow-gold-strong: 0 14px 34px rgba(255, 215, 0, 0.18);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
}

a {
    color: var(--gold);
}

a:hover {
    color: var(--gold-light);
}

.bg-dark {
    background-color: var(--bg-secondary) !important;
}

.bg-black {
    background-color: var(--bg-primary) !important;
}

.text-pink {
    color: var(--cta-red) !important;
}

.text-gold {
    color: var(--gold) !important;
}

.text-white-50 {
    color: var(--text-secondary) !important;
}

.navbar {
    background: rgba(13, 13, 13, 0.96) !important;
    border-bottom: 1px solid rgba(255, 215, 0, 0.12);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    z-index: 1050;
}

.navbar-toggler {
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.16);
}

.navbar-nav .nav-link {
    padding: 10px 15px;
    font-weight: 600;
    color: var(--text-primary) !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
    color: var(--gold) !important;
}

.hero {
    min-height: 650px;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(13, 13, 13, 0.55), rgba(13, 13, 13, 0.72)),
        radial-gradient(circle at top, rgba(255, 215, 0, 0.12), transparent 45%),
        url('../images/banner.webp') center/cover no-repeat;
    background-attachment: fixed;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.05), transparent 35%, rgba(0, 0, 0, 0.35));
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
}

.hero-subtitle {
    max-width: 780px;
    margin: 0 auto 30px;
    line-height: 1.5;
    color: var(--gold-light) !important;
}

.hero-bottom-text {
    color: var(--text-secondary) !important;
}

.btn-pink {
    background: var(--gold-gradient);
    color: #000;
    border: 1px solid rgba(255, 230, 128, 0.45);
    box-shadow: var(--shadow-gold);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn-pink:hover,
.btn-pink:focus {
    background: linear-gradient(90deg, #ffdf33, #ffd700);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 0 22px rgba(255, 215, 0, 0.28);
    filter: brightness(1.02);
}

.btn-outline-light {
    border-color: rgba(255, 215, 0, 0.5);
    color: var(--text-primary);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background: rgba(255, 215, 0, 0.12);
    border-color: var(--gold);
    color: var(--gold-light);
}

.card,
.girl-card,
.service-card,
.category-card,
.review-card,
.gallery-card,
.related-girl-card,
.map-wrapper,
.contact-form-wrapper,
.tag-item,
.stylish-rate-table,
.stylish-accordion .accordion-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    box-shadow: none;
}

.card {
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: var(--shadow-gold-strong);
}

.section-title {
    position: relative;
}

.section-title:after {
    content: "";
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.girl-card {
    background: linear-gradient(145deg, var(--card-bg), var(--surface-elevated));
    overflow: hidden;
    transition: all 0.4s ease;
}

.girl-card:hover {
    transform: translateY(-15px);
    border-color: var(--gold-soft);
    box-shadow: var(--shadow-gold-strong);
}

.girl-card img,
.gallery-card img,
.related-girl-card img {
    height: 280px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.girl-card:hover img,
.gallery-card:hover img {
    transform: scale(1.08);
}

.girl-info,
.related-girl-info,
.gallery-info {
    padding: 18px;
    text-align: center;
}

.girl-name,
.related-girl-name,
.gallery-name,
.service-title,
.category-title,
.review-name {
    color: var(--gold);
    font-weight: 700;
}

.girl-name {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.girl-age,
.gallery-category {
    color: var(--cta-red);
    font-weight: 600;
}

.girl-desc,
.service-desc,
.category-desc,
.review-text,
.review-location {
    color: var(--text-secondary);
}

.girl-desc {
    margin: 10px 0 15px 0;
    min-height: 48px;
    line-height: 1.5;
}

.btn-book {
    background: linear-gradient(90deg, var(--cta-red), var(--cta-red-hover));
    color: var(--text-primary);
    font-size: 0.9rem;
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-book:hover {
    background: linear-gradient(90deg, var(--cta-red-hover), #ff6b6b);
    color: var(--text-primary);
    transform: scale(1.05);
}

.btn-view {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    font-weight: 600;
    padding: 10px 0;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-view:hover {
    background: var(--gold);
    color: #000;
    transform: scale(1.05);
}

.service-card,
.category-card,
.gallery-card,
.related-girl-card {
    border-radius: 16px;
    transition: all 0.4s ease;
}

.service-card {
    padding: 30px 20px;
    text-align: center;
    height: 100%;
}

.service-card:hover,
.category-card:hover,
.gallery-card:hover,
.related-girl-card:hover {
    transform: translateY(-12px);
    border-color: var(--gold-soft);
    box-shadow: var(--shadow-gold-strong);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gold-shine);
    color: #111;
    font-size: 2.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.24);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.12) rotate(8deg);
}

.category-card {
    padding: 25px 20px;
    text-align: center;
    height: 100%;
    overflow: hidden;
}

.category-image {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--gold-soft);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.18);
    margin: 0 auto 20px;
    transition: all 0.5s ease;
}

.category-card:hover .category-image {
    transform: scale(1.08);
    border-color: var(--gold);
    box-shadow: 0 0 35px rgba(255, 215, 0, 0.32);
}

.stylish-rate-table {
    border-radius: 15px;
    overflow: hidden;
}

.stylish-rate-table th {
    background: var(--gold-gradient);
    color: #000;
    font-weight: 700;
    padding: 18px 15px;
    text-align: center;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.stylish-rate-table td {
    padding: 18px 15px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.stylish-rate-table tr:hover {
    background: rgba(255, 215, 0, 0.06);
}

.stylish-rate-table strong {
    color: var(--gold);
    font-size: 1.15rem;
}

.stylish-rate-table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
}

.stylish-accordion .accordion-item {
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
}

.stylish-accordion .accordion-button {
    background: var(--surface-elevated);
    color: var(--gold);
    font-weight: 600;
    padding: 18px 25px;
    font-size: 1.05rem;
}

.stylish-accordion .accordion-button:not(.collapsed) {
    background: var(--gold-gradient);
    color: #000;
    box-shadow: none;
}

.stylish-accordion .accordion-button:hover {
    background: #2b2b2b;
}

.stylish-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(255, 215, 0, 0.35);
}

.stylish-accordion .accordion-body {
    background: var(--card-bg);
    color: var(--text-secondary);
    padding: 20px 25px;
    line-height: 1.7;
    font-size: 1rem;
}

.review-card {
    background: linear-gradient(145deg, #1f1f1f, #262626);
    border-radius: 16px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: var(--gold-soft);
    transform: translateY(-5px);
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
}

.review-author {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid var(--gold-soft);
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.82);
    border-radius: 50%;
    top: 45%;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--gold-hover);
}

.contact-section {
    position: relative;
    overflow: hidden;
}

.bg-fixed {
    position: absolute;
    inset: 0;
    background: url('../images/bustychennaiescort-banner.webp') center/cover no-repeat;
    background-attachment: fixed;
    filter: brightness(0.55);
    z-index: 1;
}

.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(13, 13, 13, 0.88), rgba(13, 13, 13, 0.76));
    z-index: 2;
}

.map-wrapper,
.contact-form-wrapper {
    position: relative;
    z-index: 3;
    padding: 35px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.contact-form-wrapper {
    height: 100%;
}

.form-control,
.form-select {
    background: var(--surface-elevated);
    border: 1px solid #3a3a3a;
    color: var(--text-primary);
    padding: 12px 18px;
}

.form-control:focus,
.form-select:focus {
    background: #2a2a2a;
    border-color: var(--gold-soft);
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.18);
    color: var(--text-primary);
}

.form-control::placeholder {
    color: var(--text-muted);
}

footer {
    background: var(--bg-primary);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.footer-disclaimer {
    background: rgba(255, 215, 0, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.18);
}

.smallest {
    font-size: 0.78rem;
}

.border-pink {
    border-color: rgba(255, 215, 0, 0.26) !important;
}

.tag-item {
    border-radius: 50px;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    color: var(--text-secondary);
}

.tag-item:hover {
    background: var(--surface-elevated);
    border-color: var(--gold-soft);
    color: var(--text-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.12);
}

.tag-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 215, 0, 0.12);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.tag-text {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

.quick-picks-strip {
    position: fixed;
    top: 92px;
    left: 0;
    width: 236px;
    height: calc(100vh - 100px);
    background: linear-gradient(180deg, #121212 0%, #131313 38%, #0d0d0d 100%);
    border-right: 1px solid rgba(255, 215, 0, 0.22);
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    z-index: 1040;
    overflow: hidden;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.36);
}

.quick-picks-header {
    margin: 14px 10px 12px;
    padding: 10px 12px;
    border-radius: 14px;
    background: var(--gold-gradient);
    color: #111;
    text-align: center;
    letter-spacing: 1.6px;
    font-weight: 900;
    font-size: 0.95rem;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(255, 215, 0, 0.24);
}

.quick-picks-viewport {
    height: calc(100% - 76px);
    overflow: hidden;
    padding: 0 10px 14px;
}

.quick-picks-track {
    display: flex;
    flex-direction: column;
    animation: quickPicksScroll 24s linear infinite;
}

.quick-picks-strip:hover .quick-picks-track {
    animation-play-state: paused;
}

.quick-picks-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-picks-list li + li {
    margin-top: 4px;
}

.quick-picks-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 8px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 10px;
    transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    border: 1px solid transparent;
}

.quick-picks-list a:hover {
    color: var(--gold-light);
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.22);
    transform: translateX(4px);
}

.quick-icon {
    min-width: 40px;
    width: 40px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, rgba(255, 215, 0, 0.2), rgba(166, 124, 0, 0.2));
    border: 1px solid rgba(255, 215, 0, 0.34);
    border-radius: 999px;
    font-size: 1rem;
}

@keyframes quickPicksScroll {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-50%);
    }
}

/* ===== BETTING REVIEW CARD ENHANCEMENTS ===== */
.review-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.review-card-top {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.review-sport-badge {
    background: rgba(255, 215, 0, 0.12);
    border: 1px solid rgba(255, 215, 0, 0.34);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
    letter-spacing: 0.5px;
}

.review-win-badge {
    background: rgba(0, 200, 83, 0.12);
    border: 1px solid rgba(0, 200, 83, 0.3);
    color: var(--success-green);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
}

.review-stars {
    display: flex;
    gap: 3px;
}

.review-stars .fa-star {
    color: var(--gold);
    font-size: 0.9rem;
}

.review-stars .fa-star.text-muted {
    color: #3a3a3a !important;
}

.review-avatar {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #111;
    font-weight: 900;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.22);
}

.review-stat {
    text-align: center;
    padding: 10px 20px;
    background: rgba(255, 215, 0, 0.06);
    border: 1px solid rgba(255, 215, 0, 0.16);
    border-radius: 12px;
    line-height: 1.5;
}

.review-location {
    font-size: 0.82rem;
}
/* ===== END BETTING REVIEW CARD ===== */

/* ===== GAME CARDS ===== */
.game-cards-section {
    background: linear-gradient(180deg, #0d0d0d, #121212);
}

.game-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.game-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 215, 0, 0.45);
    box-shadow: 0 12px 36px rgba(255, 215, 0, 0.12);
}

.game-card-img-wrap {
    position: relative;
    overflow: hidden;
}

.game-card-img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 215, 0, 0.08) 0%,
        rgba(166, 124, 0, 0.18) 60%,
        rgba(13, 13, 13, 0.72) 100%
    );
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-card-img-wrap::after {
    background: linear-gradient(
        180deg,
        rgba(255, 215, 0, 0.14) 0%,
        rgba(166, 124, 0, 0.28) 60%,
        rgba(13, 13, 13, 0.55) 100%
    );
}

.game-card-img-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 215, 0, 0);
    border-radius: 0;
    z-index: 2;
    transition: border-color 0.3s ease;
    pointer-events: none;
}

.game-card:hover .game-card-img-wrap::before {
    border-color: rgba(255, 215, 0, 0.35);
}

.game-card-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.game-card:hover .game-card-img {
    transform: scale(1.04);
}

.game-live-badge,
.game-hot-badge,
.game-new-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    padding: 4px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    z-index: 3;
}

.game-live-badge {
    background: var(--cta-red);
    color: #fff;
}

.game-hot-badge {
    background: linear-gradient(90deg, #ff6f00, #ff3b3b);
    color: #fff;
}

.game-new-badge {
    background: var(--gold-gradient);
    color: #111;
}

.game-card-body {
    padding: 20px 22px 24px;
}

.game-title {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.game-desc {
    color: var(--text-secondary);
    font-size: 0.82rem;
    margin-bottom: 0;
}
/* ===== END GAME CARDS ===== */

/* ===== PREMIUM EXCHANGE CARDS ===== */
.exchange-cards-section {
    background:
        radial-gradient(circle at 12% 0%, rgba(255, 215, 0, 0.12), transparent 34%),
        radial-gradient(circle at 90% 20%, rgba(255, 59, 59, 0.08), transparent 36%),
        linear-gradient(180deg, #101010, #0c0c0c);
}

.exchange-card {
    position: relative;
    height: 100%;
    background: linear-gradient(160deg, rgba(26, 26, 26, 0.98), rgba(15, 15, 15, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    padding: 18px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.exchange-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    pointer-events: none;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.06), transparent 35%, transparent 70%, rgba(255, 255, 255, 0.05));
}

.exchange-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid color-mix(in srgb, var(--brand-accent) 42%, transparent);
    opacity: 0.7;
    pointer-events: none;
}

.exchange-card:hover {
    transform: translateY(-8px);
    border-color: color-mix(in srgb, var(--brand-accent) 50%, #ffffff 10%);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55), 0 0 28px var(--brand-glow);
}

/* Women's T20 WC Match Cards */
.match-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.55), 0 0 22px rgba(255, 215, 0, 0.18) !important;
    border-color: rgba(255, 215, 0, 0.45) !important;
}

.exchange-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-weight: 800;
    color: #0c0c0c;
    background: var(--brand-accent);
    border-radius: 999px;
    padding: 4px 10px;
    margin-bottom: 14px;
}

.exchange-logo-wrap {
    height: 80px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-bottom: 14px;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.03);
}

.exchange-logo {
    max-width: 100%;
    max-height: 58px;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45));
}

.exchange-name {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 3px;
}

.exchange-url {
    color: color-mix(in srgb, var(--brand-accent) 75%, #ffffff 25%);
    margin-bottom: 10px;
    font-size: 0.95rem;
    font-weight: 600;
}

.exchange-offer {
    color: var(--text-secondary);
    margin-bottom: 14px;
    min-height: 24px;
}

.exchange-btn {
    background: transparent;
    border: 1px solid color-mix(in srgb, var(--brand-accent) 65%, #ffffff 15%);
    color: color-mix(in srgb, var(--brand-accent) 85%, #ffffff 15%);
    font-weight: 700;
    border-radius: 12px;
    padding: 10px 14px;
    letter-spacing: 0.5px;
}

.exchange-btn:hover,
.exchange-btn:focus {
    background: var(--brand-accent);
    color: #101010;
    box-shadow: 0 8px 18px var(--brand-glow);
}
/* ===== END PREMIUM EXCHANGE CARDS ===== */

.related-girl-card {
    overflow: hidden;
}

.animate-fadeInUp {
    animation: fadeInUp 1s ease forwards;
}

.animate-scale {
    animation: scaleIn 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 991px) {
    .quick-picks-strip {
        display: none;
    }

    .navbar-collapse {
        background: rgba(18, 18, 18, 0.98);
        padding: 20px;
        border-radius: 12px;
        margin-top: 10px;
        border: 1px solid rgba(255, 215, 0, 0.12);
    }

    .navbar-nav {
        text-align: center;
    }

    .btn-pink {
        width: 100%;
        margin-top: 10px;
    }
}

@media (min-width: 1200px) {
    body {
        padding-left: 236px;
    }
}

@media (max-width: 576px) {
    .exchange-card {
        padding: 16px;
    }

    .exchange-logo-wrap {
        height: 76px;
    }

    .hero {
        min-height: 580px;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .btn-lg {
        padding: 14px 30px;
        font-size: 1.05rem;
        width: 100%;
        margin-bottom: 12px;
    }
}