/* ===== MODERN LANGUAGE DROPDOWN ===== */
.lang-currency-wrapper {
    position: relative;
}

.lang-toggle-modern {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-toggle-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.lang-toggle-modern #langFlag {
    font-size: 1.3em;
}

.dropdown-arrow-small {
    width: 14px;
    height: 14px;
    color: #8b8d98;
    transition: transform 0.3s ease;
}

.lang-dropdown-modern {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: #2a2d3a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    min-width: 160px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow: hidden;
    padding: 0.5rem 0;
}

.lang-option-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #8b8d98;
}

.lang-option-modern:hover {
    background: rgba(99, 102, 241, 0.1);
    color: white;
}

.lang-option-modern.active {
    background: rgba(99, 102, 241, 0.15);
    color: white;
}

.lang-flag-option {
    font-size: 1.2em;
}

.lang-name {
    font-size: 0.95rem;
    font-weight: 500;
}

/* ===== CS.MONEY STYLE HERO ===== */
.hero-csmoney {
    background: #2a2d3a;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero-switch-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.hero-switch-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://cs.money/assets/rs:fit:0:0:0/q:100/f:webp/dpr:0.25/plain/https://cs.money/reborn/images/landing/tryOnBanner/background-image.png');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 0;
}

.hero-csmoney .csmoney-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    max-width: 550px;
}

/* Trustpilot Widget */
.trustpilot-widget {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.trustpilot-star-icon {
    width: 24px;
    height: 24px;
}

.trustpilot-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.trustpilot-logo-text {
    display: none;
}

.trustpilot-stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #dcdce6;
    font-size: 1.2rem;
}

.star.filled {
    color: #00B67A;
}

.star.half {
    background: linear-gradient(90deg, #00B67A 50%, #dcdce6 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trustpilot-score {
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
}

.trustpilot-reviews {
    color: #8b8d98;
    font-size: 0.9rem;
}

/* Hero Title */
.hero-main-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.1rem;
    color: #8b8d98;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.btn-hero-try {
    background: #6366f1;
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.btn-hero-try:hover {
    background: #5558e3;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.6);
}

/* Hero Right - Skins Showcase */
.hero-right {
    position: relative;
    height: 550px;
}

.hero-skins-showcase {
    position: relative;
    width: 100%;
    height: 100%;
}

.showcase-skin {
    position: absolute;
    transition: transform 0.3s ease;
}

.skin-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.7));
}

.showcase-skin.skin-ak47 {
    top: -30px;
    right: -80px;
    width: 650px;
    z-index: 2;
}

.showcase-skin.skin-karambit {
    bottom: -80px;
    left: 50px;
    width: 450px;
    z-index: 1;
}

.showcase-skin:hover {
    transform: scale(1.02);
    z-index: 10;
}

/* Skin Info Blocks with Pointers */
.skin-info-block {
    position: absolute;
    display: flex;
    align-items: center;
}

.showcase-skin.skin-ak47 .skin-info-block {
    top: 20%;
    left: -180px;
    flex-direction: row;
    gap: 0;
}

.showcase-skin.skin-karambit .skin-info-block.karambit-info {
    bottom: 25%;
    right: 100px;
    flex-direction: row;
    gap: 0;
}

.pointer-image {
    width: 90px;
    height: auto;
    display: block;
}

.skin-label {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: rgba(30, 32, 40, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.skin-weapon {
    font-size: 0.85rem;
    color: #6366f1;
    font-weight: 500;
}

.skin-weapon::before {
    content: '●';
    margin-right: 0.5rem;
}

.skin-name {
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
}

.skin-info-card {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: rgba(30, 32, 40, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.skin-info-card .skin-name {
    font-size: 1rem;
    color: white;
    font-weight: 600;
    margin: 0;
}

.skin-info-card .skin-price {
    font-size: 0.9rem;
    color: #6366f1;
    font-weight: 600;
}

/* ===== POPULAR SKINS SECTION ===== */
.popular-skins {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.section-header.centered {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.title-icon {
    width: 32px;
    height: 32px;
    color: #f59e0b;
    stroke-width: 2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
}

.view-all-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.view-all-link:hover {
    gap: 1rem;
}

.skins-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.skin-card-modern {
    background: var(--bg-card);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.skin-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.skin-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.skin-badge.covert {
    background: rgba(235, 75, 75, 0.9);
    color: white;
}

.skin-badge.classified {
    background: rgba(211, 44, 230, 0.9);
    color: white;
}

.skin-badge.extraordinary {
    background: rgba(255, 215, 0, 0.9);
    color: #1a1d29;
}

.skin-image-wrapper {
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.skin-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.skin-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    filter: blur(30px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skin-card-modern:hover .skin-glow {
    opacity: 1;
}

.skin-info {
    padding: 1.5rem;
}

.skin-name-modern {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.skin-wear {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.skin-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skin-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-buy-quick {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-buy-quick:hover {
    background: var(--accent-color);
    transform: scale(1.05);
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-svg {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    stroke-width: 2;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--card-border);
}

.stat-number-large {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label-small {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-csmoney .csmoney-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-right {
        height: 400px;
    }

    .hero-main-title {
        font-size: 3.5rem;
    }

    .showcase-skin.skin-ak47 {
        width: 550px;
        right: -50px;
    }

    .showcase-skin.skin-karambit {
        width: 400px;
        left: 30px;
    }

    .skin-label-wrapper {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-csmoney {
        padding: 3rem 0 2rem;
        min-height: auto;
    }

    .hero-main-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn-hero-try {
        width: 100%;
    }

    .hero-right {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .skins-grid-modern {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .trustpilot-widget {
        font-size: 0.85rem;
    }
}

/* ===== STATS BANNER ===== */
.stats-banner {
    background: var(--bg-card);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    padding: 3rem 0;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.stat-item-banner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.stat-value-banner {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
}

.stat-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    margin: 0 auto;
    width: 60%;
}

.stat-label-banner {
    font-size: 0.95rem;
    color: #8b8d98;
    line-height: 1.5;
    max-width: 300px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .stats-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-value-banner {
        font-size: 2.5rem;
    }
}

/* ===== CASHOUT LAYOUT (новый блок) ===== */
.cashout_main__bdEOg {
    max-width: 1180px;
    margin: 0 auto;
    padding: 48px 20px 32px;
    display: grid;
    grid-template-columns: minmax(480px, 1fr) minmax(420px, 1fr);
    gap: 20px;
}

@media (max-width: 1100px) {
    .cashout_main__bdEOg {
        grid-template-columns: 1fr;
    }
}

.tradeLinkform_wrapper__ltzP3 {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tradeLinkform_header__F_MgF h1 {
    font-size: 28px;
    margin: 6px 0;
}

.tradeLinkform_header__F_MgF p {
    color: var(--text-muted);
}

.tradeLinkform_clients__R4pDI {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
    font-weight: 600;
}

.pill-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
}

.tradeLinkform_form__U7rqY {
    background: linear-gradient(135deg, #141725, #0d0f18);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tradeLinkform_textBox__7Bg4W {
    color: #cbd5e1;
    font-weight: 600;
}

.appInput_input__sV5ew {
    width: 100%;
    background: #0f1118;
    border: 1px solid #2f3440;
    color: #fff;
    border-radius: 10px;
    padding: 12px 14px;
    outline: none;
}

.tradeLinkform_inputWrapper__FG5Ij {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.tradeLinkform_findLink__QQd95 {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
}

.tradeLinkform_saveButton__QxHWE {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #f97745, #6c4bff);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.tradeLinkform_saveButton__QxHWE:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(105, 90, 255, 0.35);
}

.tradeLinkform_methods__6Xuzg {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
}

.tradeLinkform_method__5fxZr {
    background: #0f1118;
    border: 1px solid #2f3440;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    font-weight: 700;
    color: #fff;
}

.cashout_right__col {
    display: grid;
    gap: 16px;
}

.inventory_inventory__qVf3e {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.inventoryHeader_header__WFSyY {
    margin-bottom: 12px;
}

.inventoryHeader_title__YklPs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.gameSelector_selector__WLiJW {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gameSelector_game__xuNgF {
    padding: 10px 12px;
    border: 1px solid #2f3440;
    border-radius: 10px;
    color: #cbd5e1;
    text-decoration: none;
    background: #11151f;
    transition: all 0.2s ease;
}

.gameSelector_selected__TjmrI {
    border-color: #5E47D1;
    box-shadow: 0 0 0 1px #5E47D1 inset;
    color: #fff;
}

.inventory_filtersContainer__Ze961 {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 12px;
}

.searchInput_searchWrapper__x_mpW {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #2f3440;
    background: #0f1118;
    flex: 1;
    min-width: 220px;
}

.searchInput_searchWrapperBorder__03RPq {
    border-color: #5E47D1;
}

.searchInput_searchInput__IGlbf {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    outline: none;
}

.priceFilter_button__3cnNl,
.refreshButton_button__mPauS {
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #2f3440;
    background: #11151f;
    color: #fff;
    cursor: pointer;
}

.SelectAllButton_selectAll__KhI6K {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border: 1px solid #2f3440;
    border-radius: 10px;
    background: #11151f;
}

.select-all-checkbox {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid #5E47D1;
    background: #0f1118;
}

.inventory_items__78Mzh {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.cardSkeleton_card__YVRa0 {
    background: #0f1118;
    border: 1px solid #2f3440;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cardSkeleton_skeleton1__ZYGQy,
.cardSkeleton_skeleton2__2Tstp,
.cardSkeleton_skeleton3__ghnQd {
    height: 16px;
    border-radius: 8px;
    background: linear-gradient(90deg, #1b2030 0%, #252c3f 50%, #1b2030 100%);
    background-size: 200% 100%;
}

.cardSkeleton_skeleton2__2Tstp {
    height: 12px;
}

.cardSkeleton_skeleton3__ghnQd {
    height: 10px;
}

.cardSkeleton_skeletonsWrapper__ACQsn {
    display: flex;
    gap: 6px;
}

@keyframes pulse-skel {
    0% { background-position: 0 0; }
    50% { background-position: 100% 0; }
    100% { background-position: 0 0; }
}

.animate-pulse {
    animation: pulse-skel 1.4s ease-in-out infinite;
}

.calculator_calculator__qHT3y {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.step_step__Ai6of {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 10px;
}

.step_main__6vN_I {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #fff;
}

.step_secondary__wl6Ao {
    margin: 6px 0 0;
    color: var(--text-muted);
}

.emptyState_footer__0z67N {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.emptyState_footerItem__nOlwo {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.03);
}

/* ===== LANGUAGE DROPDOWN ===== */
.lang-toggle {
    position: relative;
}

.dropdown-arrow {
    width: 16px;
    height: 16px;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    min-width: 180px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    overflow: hidden;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
    color: var(--text-primary);
}

.lang-option:hover {
    background: rgba(99, 102, 241, 0.1);
}

.lang-option .lang-flag {
    font-size: 1.2em;
}

/* === ALT HERO (cashout style) === */
.alt-hero {
    position: relative;
    padding: 72px 0;
    overflow: hidden;
}

.alt-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(104, 90, 255, 0.15), transparent 45%), radial-gradient(circle at 80% 0%, rgba(255, 120, 60, 0.15), transparent 40%), #0f1218;
    opacity: 0.9;
    z-index: 0;
}

.alt-hero-container {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.alt-hero-card {
    background: #0f1218;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.alt-hero-left h1 {
    font-size: clamp(1.9rem, 2.8vw, 2.6rem);
    margin: 0.5rem 0;
}

.alt-hero-left p {
    color: var(--text-muted);
    margin: 0.35rem 0 1rem;
}

.alt-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    font-weight: 600;
    color: #fff;
}

.alt-hero-badge img {
    width: 56px;
    height: 28px;
    object-fit: contain;
}

.alt-hero-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 1rem;
}

.alt-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 0.65rem 0.75rem;
}

.alt-input-wrap input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    outline: none;
    font-size: 0.95rem;
}

.alt-input-icon {
    width: 20px;
    height: 20px;
    color: #9da4b5;
    flex-shrink: 0;
}

.alt-find-link {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

.alt-cta {
    padding: 0.75rem 1.1rem;
    background: linear-gradient(135deg, #f97745, #6c4bff);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.alt-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(105, 90, 255, 0.35);
}

.alt-cta.ghost {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.12);
}

.alt-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.alt-payment-chip {
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    font-weight: 600;
    color: #fff;
}

.alt-hero-right {
    display: none;
}

.alt-hero-steps-card {
    background: #0f1218;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.alt-hero-steps-icon {
    width: 90px;
    height: 90px;
    border-radius: 22px;
    background: radial-gradient(circle at 50% 30%, rgba(120, 99, 255, 0.4), rgba(120, 99, 255, 0.05));
    border: 1px solid rgba(255,255,255,0.08);
    display: grid;
    place-items: center;
    font-size: 2.2rem;
    color: #fff;
    margin: 0 auto;
}

.alt-steps-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.alt-step-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.65rem;
    align-items: start;
    padding: 0.75rem;
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
}

.alt-step-icon-badge {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, #6c4bff, #f97745);
    color: #fff;
    font-weight: 800;
    display: grid;
    place-items: center;
    font-size: 0.95rem;
}

.alt-hero-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 0.75rem;
}

.alt-hero-perk {
    padding: 0.45rem 0.75rem;
    border-radius: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

.alt-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
}

.alt-step {
    display: flex;
    gap: 0.75rem;
    padding: 0.85rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
}

.alt-step-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #6c4bff, #f97745);
    display: grid;
    place-items: center;
    font-weight: 800;
    color: #fff;
}

.alt-step-title {
    margin: 0;
    font-weight: 700;
}

.alt-step-sub {
    margin: 2px 0 0;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.alt-hero-cta-card {
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    border-radius: 14px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.alt-hero-cta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}

.alt-hero-cta-row strong {
    font-size: 1.15rem;
}
