/* ==========================================================================
   BracketFlow — Global Meta Metrics Styles
   ========================================================================== */

body {
    background-color: #0b0c0e !important;
    color: #f8fafc !important;
    overflow-y: auto !important;
    height: auto !important;
}

/* ==========================================================================
   OVERVIEW STATS KPI CARDS
   ========================================================================== */
.metrics-overview-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
    width: 100%;
}

.metric-card {
    background: #11121a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.metric-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.16);
}

.metric-card.tournaments {
    border-top: 2px solid rgba(197, 168, 128, 0.6);
}

.metric-card.players {
    border-top: 2px solid rgba(168, 85, 247, 0.6);
}

.metric-card.sets {
    border-top: 2px solid rgba(16, 185, 129, 0.6);
}

.metric-label {
    font-size: 11px;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.metric-value {
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
    margin: 6px 0 2px 0;
    line-height: 1.1;
}

.metric-sub {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
}

/* ==========================================================================
   DASHBOARD GRID & PANELS
   ========================================================================== */
.metrics-dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    margin-bottom: 35px;
}

@media (max-width: 1024px) {
    .metrics-dashboard-grid {
        grid-template-columns: 1fr;
    }
}

.metrics-panel {
    background: #11121a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px 26px;
    display: flex;
    flex-direction: column;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 15px;
    margin-bottom: 18px;
}

.panel-title {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.panel-subtitle {
    font-size: 13px;
    color: #94a3b8;
    margin: 4px 0 0 0;
}

/* ==========================================================================
   MODE SWITCHER BAR (Global Overview vs Head-to-Head ⚔️)
   ========================================================================== */
.metrics-mode-switch-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.metrics-mode-switch {
    display: inline-flex;
    background: #14141c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 4px;
    gap: 4px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

.mode-switch-btn {
    background: transparent;
    border: none;
    outline: none;
    color: #94a3b8;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 9px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.mode-switch-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.06);
}

.mode-switch-btn.active {
    background: #c5a880;
    color: #0b0c0e;
    font-weight: 800;
    box-shadow: 0 2px 10px rgba(197, 168, 128, 0.35);
}

.mode-switch-btn.h2h-btn.active {
    background: #f59e0b;
    color: #0b0c0e;
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.35);
}

/* ==========================================================================
   MARKET SHARE DOUGHNUT CONTROLS
   ========================================================================== */
.market-share-controls {
    display: inline-flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.04);
    padding: 3px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-pill-btn {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 13px;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.18s ease;
}

.metric-pill-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.metric-pill-btn.active {
    background: #c5a880;
    color: #0b0c0e;
    font-weight: 800;
}

/* ==========================================================================
   HEAD-TO-HEAD (H2H) DUAL SELECTOR BAR & TALE OF THE TAPE
   ========================================================================== */
.h2h-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    max-width: 1350px;
    margin: 0 auto 30px auto;
    padding: 20px;
    background: #11121a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    flex-wrap: wrap;
}

.h2h-game-box {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.h2h-game-box label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #94a3b8;
}

.vs-badge {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 900;
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
    border: 1.5px solid rgba(245, 158, 11, 0.3);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    margin-top: 15px;
}

.h2h-year-box {
    width: 180px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tale-of-tape-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 35px;
}

.duel-card {
    background: #11121a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.duel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.duel-title {
    font-size: 11px;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.duel-leader-badge {
    font-size: 10px;
    font-weight: 900;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.duel-values-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.duel-val {
    font-size: 26px;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
}

.duel-bar-track {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    display: flex;
    overflow: hidden;
    margin-top: 5px;
}

.duel-bar-a {
    height: 100%;
    transform-origin: left center;
    transition: flex 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.duel-bar-b {
    height: 100%;
    transform-origin: right center;
    transition: flex 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Premium custom-styled dropdown selector */
.metrics-country-select {
    background: #141417 !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 8px !important;
    padding: 8px 30px 8px 12px !important;
    color: white !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    outline: none !important;
    cursor: pointer !important;
    width: 100% !important;
    transition: all 0.2s ease !important;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    background-size: 12px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}
.metrics-country-select:hover, .metrics-country-select:focus {
    border-color: var(--accent-blue) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
}

/* Flex constraints for clean ellipsis truncation on long player tags */
.award-player-info {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex-grow: 1 !important;
    overflow: hidden !important;
    min-width: 0 !important;
}
.award-player-char {
    width: 22px !important;
    height: 22px !important;
    border-radius: 4px !important;
    object-fit: cover !important;
    background: rgba(255,255,255,0.05) !important;
    flex-shrink: 0 !important;
}
.award-player-text-group {
    min-width: 0 !important;
    flex-grow: 1 !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
}
.award-player-tag {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: white !important;
    text-decoration: none !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    display: block !important;
    width: 100% !important;
}
.award-player-tag:hover {
    color: var(--accent) !important;
}
.globe-trotter-details {
    display: flex !important;
    flex-direction: column !important;
    font-size: 11px !important;
    color: #64748b !important;
    margin-top: 1px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

/* ==========================================================================
   ESPORTS AWARDS GRID & CARDS
   ========================================================================== */
.awards-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)) !important;
    gap: 20px !important;
    max-width: 1350px !important;
    margin: 0 auto 50px auto !important;
    width: 100% !important;
}

.award-panel {
    background: #11121a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 22px;
    display: flex;
    flex-direction: column;
}

.award-header {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 14px;
    margin-bottom: 14px;
}

.award-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-title-group {
    display: flex;
    flex-direction: column;
}

.award-title {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: white;
    margin: 0;
}

.award-desc {
    font-size: 12px;
    color: #94a3b8;
    margin: 2px 0 0 0;
}

.award-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.award-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    transition: all 0.2s ease;
    gap: 10px;
}

.award-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.award-rank-num {
    font-size: 13px;
    font-weight: 900;
    color: #64748b;
    width: 22px;
    flex-shrink: 0;
}

.award-value-badge {
    font-size: 12px;
    font-weight: 800;
    color: #c5a880;
    font-family: 'Outfit', sans-serif;
    padding: 3px 9px;
    background: rgba(197, 168, 128, 0.1);
    border: 1px solid rgba(197, 168, 128, 0.25);
    border-radius: 6px;
    white-space: nowrap;
    flex-shrink: 0;
}

.award-value-badge.green {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.25);
}

.award-value-badge.purple {
    color: #c084fc;
    background: rgba(192, 132, 252, 0.1);
    border-color: rgba(192, 132, 252, 0.25);
}

.award-value-badge.globe {
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

@media (max-width: 768px) {
    .metrics-overview-row {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .awards-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }
    .metric-card {
        padding: 16px !important;
    }
    .metrics-panel {
        padding: 16px !important;
    }
}
.map-legend-overlay {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    z-index: 999 !important;
    background: rgba(15, 15, 17, 0.92) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 8px !important;
    padding: 10px !important;
    backdrop-filter: blur(10px) !important;
    width: 190px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
    pointer-events: none !important;
}
.map-legend-overlay .country-item {
    padding: 4px 6px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.02) !important;
    border-radius: 4px !important;
    margin-bottom: 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}
.map-legend-overlay .country-info {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}
.map-legend-overlay .country-info span {
    font-size: 12px !important;
    color: #ffffff !important;
    font-weight: 700 !important;
}
.map-legend-overlay .country-count {
    font-size: 12px !important;
    color: #c5a880 !important;
    font-weight: 700 !important;
}
.map-legend-overlay .flag-badge {
    font-size: 11px !important;
    padding: 1px 3px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 3px !important;
}

/* FLOATING DOCUMENTATION / METHODOLOGY TRIGGER */
.floating-guide-trigger {
    position: fixed;
    right: 0;
    top: 45%;
    transform: translateY(-50%);
    z-index: 9990;
    background: #141417;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-right: none;
    border-radius: 8px 0 0 8px;
    padding: 9px 14px 9px 12px;
    color: #a1a1aa;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
    transition: all 0.2s ease;
    user-select: none;
}
.floating-guide-trigger:hover {
    background: #1f1f23;
    border-color: rgba(255, 255, 255, 0.22);
    color: #ffffff;
    padding-left: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}
.floating-guide-trigger svg {
    color: #a1a1aa;
    transition: color 0.2s ease;
}
.floating-guide-trigger:hover svg {
    color: #ffffff;
}

/* DRAWER OVERLAY & PANEL */
.guide-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.guide-drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}
.guide-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 580px;
    height: 100vh;
    background: #0d0d11;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.85);
    z-index: 10001;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-sizing: border-box;
}
.guide-drawer.open {
    transform: translateX(0);
}
.guide-drawer-header {
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(14, 14, 18, 0.98);
    backdrop-filter: blur(10px);
    flex-shrink: 0;
    gap: 12px;
}
.guide-drawer-title {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
}
.guide-lang-selector {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2px;
    gap: 2px;
    flex-shrink: 0;
}
.guide-lang-btn {
    background: transparent;
    border: none;
    color: #8e8e93;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}
.guide-lang-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}
.guide-lang-btn.active {
    background: var(--accent);
    color: #0b0c0e;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* CHART FAMILY FAST FILTER PILLS */
.chart-family-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 16px 0;
}
.chart-filter-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 5px 13px;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #a1a1aa;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}
.chart-filter-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}
.chart-filter-pill.active {
    background: #1e293b;
    color: var(--accent);
    border-color: var(--accent);
}

/* CROSSOVER MATRIX & INTER-GAME OVERLAP STYLES */
.crossover-matrix-wrapper {
    width: 100%;
    overflow-x: auto;
    border-radius: 12px;
    background: rgba(15, 15, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 15px;
}
.crossover-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    min-width: 720px;
}
.crossover-table th, .crossover-table td {
    padding: 10px 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.crossover-table th {
    color: #a1a1aa;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.03);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}
.crossover-table th.row-header {
    text-align: left;
    padding-left: 12px;
    color: #fff;
    white-space: nowrap;
    font-weight: 800;
}
.crossover-cell {
    border-radius: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
}
.crossover-cell:hover {
    outline: 2px solid #c5a880;
    z-index: 10;
    transform: scale(1.05);
}
.crossover-cell.self {
    background: rgba(255, 255, 255, 0.02) !important;
    color: rgba(255, 255, 255, 0.2) !important;
    cursor: default;
}
.bridge-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all 0.2s ease;
}
.bridge-card:hover {
    border-color: rgba(197, 168, 128, 0.35);
    background: rgba(197, 168, 128, 0.04);
    transform: translateY(-2px);
}
.guide-drawer-close {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #a1a1aa;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
}
.guide-drawer-close:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.4);
    transform: rotate(90deg);
}
.guide-drawer-body {
    padding: 24px 28px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: 'Outfit', sans-serif;
    color: #d4d4d8;
    line-height: 1.6;
}
.guide-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 18px 20px;
}
.guide-section-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.3px;
}
.guide-text {
    font-size: 16px;
    color: #a1a1aa;
    margin: 0 0 10px 0;
    line-height: 1.55;
}
.guide-text:last-child {
    margin-bottom: 0;
}
.guide-highlight {
    color: #c5a880;
    font-weight: 700;
}
.guide-tag-badge {
    display: inline-block;
    background: rgba(197, 168, 128, 0.12);
    border: 1px solid rgba(197, 168, 128, 0.25);
    color: #c5a880;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    margin: 2px 0;
}
.guide-social-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.guide-social-btn {
    background: #1d9bf0;
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.guide-social-btn:hover {
    background: #0c85d0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
    .floating-guide-trigger {
        top: auto;
        bottom: 25px;
        right: 20px;
        transform: none;
        border-radius: 30px;
        border-right: 1px solid rgba(255, 255, 255, 0.12);
        padding: 10px 18px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }
    .guide-drawer {
        max-width: 100vw;
    }
}
