:root {
            --bg-main: #0B0E14;
            --bg-card: #151A22;
            --bg-card-hover: #1C222D;
            --primary: #F3BA2F;
            --primary-hover: #F0B90B;
            --text-main: #EAECEF;
            --text-muted: #848E9C;
            --border: #2B3139;
            --success: #0ECB81;
            --danger: #F6465D;
            --glass-bg: rgba(21, 26, 34, 0.7);
            --glass-border: rgba(43, 49, 57, 0.5);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        body {
            background-color: var(--bg-main);
            background-image:
                radial-gradient(circle at 15% 50%, rgba(243, 186, 47, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 85% 30%, rgba(14, 203, 129, 0.03) 0%, transparent 50%);
            color: var(--text-main);
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Nav Bar */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            background: rgba(21, 26, 34, 0.4);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% - 40px);
            max-width: 1100px;
            border-radius: 24px;
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .navbar.scrolled {
            top: 10px;
            padding: 12px 30px;
            background: rgba(21, 26, 34, 0.7);
            border-radius: 100px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            max-width: 900px;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .navbar-logo-icon {
            width: 38px;
            height: 38px;
            object-fit: contain;
        }

        .navbar-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-main);
            letter-spacing: -0.5px;
        }

        .nav-links {
            display: flex;
            gap: 24px;
            align-items: center;
        }

        .nav-link {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav-link:hover {
            color: var(--text-main);
        }

        .connect-btn {
            background: var(--primary);
            color: #000;
            border: none;
            padding: 10px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s;
            box-shadow: 0 4px 12px rgba(243, 186, 47, 0.2);
        }

        .connect-btn:hover {
            background: var(--primary-hover);
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(243, 186, 47, 0.3);
        }

        .connect-btn:disabled {
            background: rgba(14, 203, 129, 0.1);
            color: var(--success);
            border: 1px solid rgba(14, 203, 129, 0.2);
            cursor: default;
            box-shadow: none;
            transform: none;
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: 'Courier New', Courier, monospace;
            letter-spacing: 0.5px;
        }

        .connect-btn.connected {
            background: linear-gradient(135deg, rgba(14, 203, 129, 0.15) 0%, rgba(14, 203, 129, 0.05) 100%);
            border: 1px solid rgba(14, 203, 129, 0.3);
            color: var(--success);
            padding: 8px 16px;
            border-radius: 12px;
            font-weight: 700;
            box-shadow: 0 4px 12px rgba(14, 203, 129, 0.1);
        }

        .connect-btn.connected::before {
            content: "";
            width: 8px;
            height: 8px;
            background: var(--success);
            border-radius: 50%;
            display: inline-block;
            box-shadow: 0 0 8px var(--success);
        }

        .main-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 120px 20px 60px;
            flex: 1;
            width: 100%;
        }

        /* Hero Section */
        .hero {
            text-align: center;
            margin-bottom: 32px;
            margin-top: 40px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(14, 203, 129, 0.1);
            color: var(--success);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 24px;
            border: 1px solid rgba(14, 203, 129, 0.2);
        }

        .hero h1 {
            font-size: 56px;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 16px;
            letter-spacing: -1.5px;
            line-height: 1.1;
        }

        .hero h1 span {
            color: var(--primary);
        }

        .hero p {
            font-size: 18px;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
            font-weight: 400;
        }

        /* Stats Row */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 60px;
        }

        .stat-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 24px;
            text-align: center;
            transition: transform 0.2s, border-color 0.2s;
        }

        .stat-card:hover {
            border-color: var(--primary);
            transform: translateY(-2px);
        }

        .stat-label {
            color: var(--text-muted);
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 8px;
        }

        .stat-value {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-main);
        }

        .stat-value.highlight {
            color: var(--success);
        }

        /* Content Grid */
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 450px;
            gap: 40px;
            align-items: flex-start;
        }

        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Ticker styling */
        .live-ticker {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 30px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), inset 0 0 20px rgba(14, 203, 129, 0.03);
            position: relative;
            overflow: hidden;
        }

        .live-ticker::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--success), transparent);
            opacity: 0.3;
        }

        .ticker-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 16px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--border);
        }

        .pulse-dot {
            width: 8px;
            height: 8px;
            background-color: var(--success);
            border-radius: 50%;
            box-shadow: 0 0 0 0 rgba(14, 203, 129, 0.7);
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(14, 203, 129, 0.7);
            }

            70% {
                transform: scale(1);
                box-shadow: 0 0 0 6px rgba(14, 203, 129, 0);
            }

            100% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(14, 203, 129, 0);
            }
        }

        .ticker-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-main);
        }

        .ticker-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            animation: tickerFade 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            background: rgba(255, 255, 255, 0.03);
            padding: 14px 18px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        .ticker-item:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(243, 186, 47, 0.2);
            transform: translateY(-1px);
        }

        @keyframes tickerFade {
            from {
                opacity: 0;
                transform: translateX(-10px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .ticker-address {
            color: var(--primary);
            font-family: 'Courier New', Courier, monospace;
            font-weight: 700;
            background: rgba(243, 186, 47, 0.1);
            padding: 2px 8px;
            border-radius: 4px;
            letter-spacing: 0.5px;
        }

        .ticker-action {
            color: var(--text-muted);
        }

        .ticker-amount {
            color: var(--text-main);
            font-weight: 600;
        }

        /* Stake Card (DeFi Style) */
        .stake-card {
            background: var(--bg-card);
            border-radius: 24px;
            padding: 32px;
            border: 1px solid var(--border);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .stake-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), #F6851B);
        }

        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }

        .card-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-main);
        }

        .settings-icon {
            color: var(--text-muted);
            cursor: pointer;
            transition: color 0.2s;
        }

        .settings-icon:hover {
            color: var(--text-main);
        }

        .input-group {
            background: #0B0E14;
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 16px 20px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .input-group.highlight-input {
            animation: inputPulse 3s infinite;
            border-color: rgba(243, 186, 47, 0.3);
        }

        @keyframes inputPulse {
            0% {
                box-shadow: 0 0 0 0 rgba(243, 186, 47, 0);
                border-color: var(--border);
            }

            50% {
                box-shadow: 0 0 20px 0 rgba(243, 186, 47, 0.15);
                border-color: rgba(243, 186, 47, 0.4);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(243, 186, 47, 0);
                border-color: var(--border);
            }
        }

        #stakeAmount:placeholder-shown {
            /* Placeholder styles if needed */
        }

        .input-group:focus-within {
            border-color: var(--primary);
        }

        .input-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 500;
        }

        .input-main {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        input {
            background: transparent;
            border: none;
            color: var(--text-main);
            font-size: 28px;
            font-weight: 600;
            width: 100%;
            outline: none;
            font-family: 'Inter', sans-serif;
        }

        input::placeholder {
            color: #3f4752;
        }

        .currency-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--bg-card);
            padding: 6px 12px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 16px;
        }

        .currency-icon {
            width: 32px;
            height: 32px;
            object-fit: contain;
        }

        .input-footer {
            display: flex;
            justify-content: space-between;
            margin-top: 8px;
            font-size: 13px;
        }

        .usd-value {
            color: var(--text-muted);
        }

        .balance-value {
            color: var(--text-muted);
        }

        .max-btn {
            color: var(--primary);
            cursor: pointer;
            font-weight: 600;
            margin-left: 6px;
        }

        .max-btn:hover {
            text-decoration: underline;
        }

        .route-info {
            background: rgba(255, 255, 255, 0.02);
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 24px;
        }

        .route-row {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            margin-bottom: 8px;
        }

        .route-row:last-child {
            margin-bottom: 0;
        }

        .route-label {
            color: var(--text-muted);
        }

        .route-val {
            color: var(--text-main);
            font-weight: 500;
        }

        .route-val.green {
            color: var(--success);
        }

        .stake-btn {
            width: 100%;
            padding: 18px;
            background: var(--primary);
            color: #000;
            border: none;
            border-radius: 16px;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s;
            box-shadow: 0 4px 15px rgba(243, 186, 47, 0.2);
        }

        .stake-btn:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(243, 186, 47, 0.3);
        }

        .stake-btn:disabled {
            background: var(--border);
            color: var(--text-muted);
            cursor: not-allowed;
            box-shadow: none;
            transform: none;
        }

        /* Active Stakes */
        .my-stakes-section {
            background: var(--bg-card);
            border-radius: 24px;
            padding: 32px;
            border: 1px solid var(--border);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
            margin-top: 24px;
        }

        .my-stakes-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--success), #00ff88);
        }

        .my-stakes-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 24px;
            color: var(--text-main);
        }

        .stake-card-active {
            background: #0B0E14;
            border-radius: 16px;
            padding: 24px;
            border: 1px solid var(--border);
        }

        .stake-amounts {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .stake-amount-display {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-main);
        }

        .stake-amount-display span:last-of-type {
            color: var(--success);
        }

        .stake-timer-small {
            font-family: "Courier New", Courier, monospace;
            font-size: 22px;
            font-weight: 700;
            color: var(--primary);
            background: rgba(243, 186, 47, 0.1);
            padding: 4px 12px;
            border-radius: 8px;
        }

        .progress-bar-container {
            height: 6px;
            background: var(--border);
            border-radius: 3px;
            overflow: hidden;
            margin-bottom: 16px;
        }

        .progress-bar-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--primary), var(--success));
            border-radius: 3px;
            transition: width 1s linear;
        }

        .auto-withdraw-text {
            color: var(--text-muted);
            font-size: 13px;
            text-align: center;
            margin-bottom: 20px;
        }

        .claim-btn {
            width: 100%;
            padding: 16px;
            background: var(--success);
            color: #000;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s;
        }

        .claim-btn:disabled {
            background: var(--border);
            color: var(--text-muted);
            cursor: not-allowed;
        }

        .claim-btn:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(14, 203, 129, 0.3);
        }

        /* Footer */
        footer {
            border-top: 1px solid var(--border);
            padding: 60px 40px 40px;
            background: var(--bg-main);
            margin-top: auto;
        }

        .footer-grid {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
        }

        .footer-brand h3 {
            color: var(--text-main);
            font-size: 20px;
            margin-bottom: 16px;
        }

        .footer-brand p {
            color: var(--text-muted);
            font-size: 14px;
            max-width: 300px;
        }

        .footer-col h4 {
            color: var(--text-main);
            font-size: 16px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }

        .footer-col ul li a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            max-width: 1100px;
            margin: 40px auto 0;
            padding-top: 24px;
            border-top: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            color: var(--text-muted);
            font-size: 13px;
        }

        /* Modals and Utilities */
        .hidden {
            display: none !important;
        }

        .wallet-modal,
        .limit-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
        }

        .wallet-modal-content,
        .limit-modal-content {
            background: var(--bg-card);
            border-radius: 24px;
            padding: 32px;
            max-width: 440px;
            width: 90%;
            border: 1px solid var(--border);
            box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
        }

        .wallet-modal h2 {
            color: var(--text-main);
            font-size: 24px;
            margin-bottom: 24px;
            text-align: center;
        }

        .wallet-option {
            background: #0B0E14;
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 16px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 16px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .wallet-option:hover {
            border-color: var(--primary);
            background: rgba(243, 186, 47, 0.05);
        }

        .wallet-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            overflow: hidden;
            padding: 8px;
        }

        .wallet-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .wallet-name {
            color: var(--text-main);
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 4px;
        }

        .wallet-desc {
            color: var(--text-muted);
            font-size: 13px;
        }

        .close-modal {
            background: transparent;
            color: var(--text-muted);
            border: 1px solid var(--border);
            padding: 14px;
            border-radius: 12px;
            width: 100%;
            margin-top: 16px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.2s;
        }

        .close-modal:hover {
            background: var(--border);
            color: var(--text-main);
        }

        .limit-modal-content {
            text-align: center;
        }

        .limit-modal h2 {
            color: var(--text-main);
            font-size: 22px;
            margin-bottom: 16px;
        }

        .limit-timer {
            color: var(--primary);
            font-size: 48px;
            font-weight: 800;
            margin: 24px 0;
            font-family: "Courier New", Courier, monospace;
        }

        .limit-text {
            color: var(--text-muted);
            font-size: 14px;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .limit-close-btn {
            background: var(--primary);
            color: #000;
            border: none;
            padding: 14px 40px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            width: 100%;
        }

        .limit-close-btn:hover {
            background: var(--primary-hover);
        }

        .cycle-status,
        .timer {
            display: none;
        }

        .platforms-section {
            margin: 0 0 60px;
            text-align: center;
        }

        .platforms-title {
            color: var(--text-muted);
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            opacity: 0.8;
        }

        .platforms-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 32px 48px;
        }

        @keyframes logoHighlight {
            0% {
                opacity: 0.7;
                filter: grayscale(100%) brightness(1.1);
                transform: translateY(0);
            }

            2%,
            14% {
                opacity: 1;
                filter: grayscale(0%);
                transform: translateY(-5px);
            }

            16.66%,
            100% {
                opacity: 0.7;
                filter: grayscale(100%) brightness(1.1);
                transform: translateY(0);
            }
        }

        .platform-item {
            display: flex;
            align-items: center;
            gap: 12px;
            opacity: 0.7;
            filter: grayscale(100%) brightness(1.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: logoHighlight 12s infinite;
        }

        .platform-item:nth-child(1) {
            animation-delay: 0s;
        }

        .platform-item:nth-child(2) {
            animation-delay: 2s;
        }

        .platform-item:nth-child(3) {
            animation-delay: 4s;
        }

        .platform-item:nth-child(4) {
            animation-delay: 6s;
        }

        .platform-item:nth-child(5) {
            animation-delay: 8s;
        }

        .platform-item:nth-child(6) {
            animation-delay: 10s;
        }

        .platform-item:hover {
            opacity: 1;
            filter: grayscale(0%);
            transform: translateY(-5px);
            animation-play-state: paused;
        }

        .platform-logo {
            height: 32px;
            width: auto;
            object-fit: contain;
            display: block;
        }

        .platform-name {
            color: var(--text-main);
            font-size: 15px;
            font-weight: 600;
            white-space: nowrap;
        }

        @media (max-width: 768px) {
            .platforms-grid {
                gap: 24px;
            }

            .platform-logo {
                height: 20px;
            }

            .platform-name {
                font-size: 13px;
            }
        }

        @media (max-width: 600px) {
            .navbar {
                padding: 10px 16px;
                width: calc(100% - 24px);
                top: 10px;
                border-radius: 50px;
            }

            .navbar-title {
                font-size: 16px;
            }

            .navbar-logo-icon {
                width: 30px;
                height: 30px;
            }

            .nav-link {
                display: none;
            }

            .connect-btn {
                padding: 8px 16px;
                font-size: 13px;
                border-radius: 50px;
            }

            .hero h1 {
                font-size: 32px;
            }

            .hero {
                margin-top: 20px;
            }
        }

        /* Language Dropdown */
        .lang-selector {
            position: relative;
            display: inline-block;
            margin-right: 15px;
        }

        .lang-btn {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border);
            color: var(--text-main);
            padding: 8px 12px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.2s;
        }

        .lang-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--primary);
        }

        .lang-dropdown {
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 8px;
            min-width: 140px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            display: none;
            z-index: 1001;
            backdrop-filter: blur(16px);
        }

        /* Bridge the gap between the button and dropdown to maintain hover state */
        .lang-dropdown::before {
            content: '';
            position: absolute;
            top: -10px;
            left: 0;
            right: 0;
            height: 10px;
        }

        .lang-selector:hover .lang-dropdown {
            display: block;
        }

        .lang-option {
            padding: 10px 12px;
            color: var(--text-muted);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .lang-option:hover {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-main);
        }

        .lang-option.active {
            color: var(--primary);
            background: rgba(243, 186, 47, 0.05);
        }

        .lang-flag {
            width: 18px;
            height: 12px;
            object-fit: cover;
            border-radius: 2px;
        }

        @media (max-width: 600px) {
            .lang-selector {
                margin-right: 8px;
            }

            .lang-btn {
                padding: 6px 8px;
                font-size: 11px;
            }

            .lang-btn span {
                display: none;
            }
        }
