:root {
    --sp-primary: #6A1B9A;
    --sp-primary-hover: #54127c;
    --sp-secondary: #8E24AA;
    --sp-accent: #FFB300;
    --sp-accent-hover: #ffa000;
    --sp-success: #2E7D32;
    --sp-danger: #C62828;
    --sp-dark: #121620;
    --sp-dark-surface: #1E2433;
    --sp-card-bg: #FFFFFF;
    --sp-border-color: #E2E8F0;
    --sp-text-main: #1E293B;
    --sp-text-muted: #64748B;
    --sp-radius: 14px;
    --sp-radius-sm: 8px;
    --sp-shadow: 0 4px 20px -2px rgba(106, 27, 154, 0.08), 0 2px 6px -1px rgba(0, 0, 0, 0.04);
    --sp-shadow-hover: 0 10px 25px -5px rgba(106, 27, 154, 0.15), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #F8FAFC;
    color: var(--sp-text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

/* Navbar & Brand */
.sp-navbar {
    background: linear-gradient(135deg, #4A148C 0%, #6A1B9A 100%);
    box-shadow: 0 4px 15px rgba(74, 20, 140, 0.2);
}

.sp-brand {
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
    color: #FFF !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sp-brand-badge {
    background: var(--sp-accent);
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Sidebar */
.sp-sidebar {
    background: #FFFFFF;
    border-right: 1px solid var(--sp-border-color);
    min-height: calc(100vh - 60px);
}

.sp-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    color: var(--sp-text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--sp-radius-sm);
    margin: 4px 8px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.sp-nav-link:hover {
    background-color: rgba(106, 27, 154, 0.06);
    color: var(--sp-primary);
}

.sp-nav-link.active {
    background: linear-gradient(135deg, var(--sp-primary) 0%, var(--sp-secondary) 100%);
    color: #FFFFFF !important;
    box-shadow: 0 4px 12px rgba(106, 27, 154, 0.25);
}

/* Buttons & Touch Targets */
.btn {
    font-weight: 600;
    border-radius: var(--sp-radius-sm);
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.btn-sp-primary {
    background: linear-gradient(135deg, var(--sp-primary) 0%, var(--sp-secondary) 100%);
    color: #FFF;
    font-weight: 700;
    border: none;
    border-radius: var(--sp-radius-sm);
    padding: 9px 18px;
    min-height: 40px;
    transition: all 0.2s ease;
}

.btn-sp-primary:hover {
    background: linear-gradient(135deg, var(--sp-primary-hover) 0%, var(--sp-primary) 100%);
    color: #FFF;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(106, 27, 154, 0.3);
}

.btn-sp-accent {
    background: var(--sp-accent);
    color: #000;
    font-weight: 800;
    border: none;
    border-radius: var(--sp-radius-sm);
    padding: 9px 20px;
    min-height: 40px;
    transition: all 0.2s ease;
}

.btn-sp-accent:hover {
    background: var(--sp-accent-hover);
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(255, 179, 0, 0.35);
}

/* Cards */
.sp-card {
    background: var(--sp-card-bg);
    border: 1px solid var(--sp-border-color);
    border-radius: var(--sp-radius);
    box-shadow: var(--sp-shadow);
    transition: box-shadow 0.2s ease;
}

.sp-card:hover {
    box-shadow: var(--sp-shadow-hover);
}

.sp-stat-card {
    background: #FFF;
    border: 1px solid var(--sp-border-color);
    border-radius: var(--sp-radius);
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--sp-shadow);
}

.sp-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* Court Cards */
.sp-court-card {
    border-radius: var(--sp-radius);
    overflow: hidden;
    transition: transform 0.2s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.sp-court-card.active-match {
    border-color: var(--sp-secondary);
}

.sp-court-card.ready-match {
    border-color: var(--sp-accent);
}

.sp-court-header {
    padding: 10px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}

.sp-court-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
}

.matchup-card-box {
    background: #F8FAFC;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #E2E8F0;
}

.team-row-a {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 8px 10px;
    border-left: 4px solid #6366F1;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.team-row-b {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 8px 10px;
    border-left: 4px solid #F59E0B;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.team-box {
    background: #F1F5F9;
    border-radius: 8px;
    padding: 10px;
    min-height: 70px;
}

.team-badge-a {
    background-color: #EEF2FF;
    color: #4F46E5;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    font-size: 0.68rem;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.team-badge-b {
    background-color: #FEF3C7;
    color: #D97706;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    font-size: 0.68rem;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

/* Court Card Action Buttons */
.sp-court-card .btn-court-action {
    min-height: 36px;
    height: 36px;
    padding: 4px 12px;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    letter-spacing: 0.2px;
}

.sp-court-card .btn-court-cancel {
    min-width: 36px !important;
    width: 36px !important;
    min-height: 36px !important;
    height: 36px !important;
    padding: 0 !important;
    font-size: 0.82rem !important;
    border-radius: 8px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sp-court-card .btn-court-autostack {
    min-height: 34px;
    height: 34px;
    padding: 4px 12px;
    font-size: 0.80rem;
    font-weight: 600;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Paddle Rack Items */
.sp-stack-item {
    background: #FFF;
    border: 1px solid var(--sp-border-color);
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
}

.sp-stack-item .btn-stack-action {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
    padding: 0 !important;
    border-radius: 6px !important;
    font-size: 0.75rem !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sp-stack-item .btn-stack-reorder {
    width: 26px !important;
    height: 26px !important;
    min-width: 26px !important;
    min-height: 26px !important;
    padding: 0 !important;
    font-size: 0.68rem !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sp-stack-item:hover {
    border-color: #CBD5E1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.sp-stack-pos {
    width: 28px;
    height: 28px;
    background: #EDE7F6;
    color: var(--sp-primary);
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
}

.sp-skill-badge {
    background: #E2E8F0;
    color: #334155;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Quick Action Toolbar */
.sp-live-toolbar {
    background: #FFF;
    border: 1px solid var(--sp-border-color);
    border-radius: var(--sp-radius);
    padding: 12px 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

/* Pulse animation for live games */
.pulse-indicator {
    display: inline-block;
    width: 9px;
    height: 9px;
    background-color: #22C55E;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* ========================================================
   NATIVE MOBILE LIVE DESK & SEGMENTED CONTROLS
   ======================================================== */
.sp-segmented-control {
    display: flex;
    background: #E2E8F0;
    border-radius: 14px;
    padding: 4px;
    gap: 4px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.06);
}

.sp-segmented-btn {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.90rem;
    color: #64748B;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}

.sp-segmented-btn:active {
    transform: scale(0.98);
}

.sp-segmented-btn.active {
    background: #FFFFFF;
    color: #0F172A;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.06);
}

.sp-segmented-badge {
    background: #F1F5F9;
    color: #475569;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 20px;
    transition: all 0.2s;
}

.sp-segmented-btn.active .sp-segmented-badge {
    background: #0F172A;
    color: #FFFFFF;
}

/* Mobile Quick Action Buttons */
.sp-mobile-action-bar {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.sp-mobile-action-bar::-webkit-scrollbar { display: none; }

.sp-mobile-action-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 11px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.80rem;
    white-space: nowrap;
    min-height: 35px;
    border: 1px solid #E2E8F0;
    background: #FFFFFF;
    color: #1E293B;
    text-decoration: none;
    transition: all 0.15s ease;
}

.sp-mobile-action-btn:active {
    transform: scale(0.96);
    background: #F8FAFC;
}

.sp-mobile-action-btn.primary {
    background: linear-gradient(135deg, #FFB300 0%, #F59E0B 100%);
    color: #000000;
    border: none;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.35);
}

/* Bottom Sheet Grab Handle */
.modal-handle-bar {
    width: 44px;
    height: 5px;
    background: #CBD5E1;
    border-radius: 3px;
    margin: 10px auto 14px;
    display: none;
}

/* Score Step Controls */
.sp-score-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}

.sp-score-step-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #CBD5E1;
    background: #FFFFFF;
    color: #334155;
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 2px 5px rgba(0,0,0,0.06);
}

.sp-score-step-btn:active {
    transform: scale(0.90);
    background: #F1F5F9;
}

/* Quick Score Presets */
.sp-score-preset-btn {
    padding: 8px 14px;
    min-height: 38px;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
    background: #FFFFFF;
    font-size: 0.82rem;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    transition: all 0.15s ease;
}
.sp-score-preset-btn:active {
    background: #0F172A;
    color: #FFFFFF;
    transform: scale(0.96);
}

/* ── Native Mobile Bottom Navigation Bar ─────────── */
.sp-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #0F172A;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 6px 12px;
    padding-bottom: max(6px, env(safe-area-inset-bottom));
    z-index: 1030;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.sp-bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    padding: 6px 8px;
    border-radius: 8px;
    min-width: 58px;
    transition: all 0.15s ease;
    background: transparent;
    border: none;
    cursor: pointer;
}

.sp-bottom-nav-item i {
    font-size: 1.15rem;
    margin-bottom: 3px;
    display: block;
}

.sp-bottom-nav-item span {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    display: block;
}

.sp-bottom-nav-item.active {
    color: #FFB300 !important;
}

.sp-bottom-nav-item:hover {
    color: #FFFFFF;
}

.sp-bottom-nav-item.active i {
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .sp-bottom-nav {
        display: flex;
    }
}

/* Floating Action Button for Mobile */
.sp-fab {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 18px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFB300 0%, #F59E0B 100%);
    color: #000;
    border: none;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.45);
    z-index: 1020;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.sp-fab:active {
    transform: scale(0.92);
}

/* Mobile Card View for Tables */
.sp-mobile-card {
    background: #FFFFFF;
    border: 1px solid var(--sp-border-color);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.15s ease;
}

.sp-mobile-card:active {
    transform: scale(0.99);
}

.sp-mobile-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
}

.sp-mobile-card-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #F1F5F9;
}

.sp-mobile-card-actions .btn {
    flex: 1;
    min-height: 40px;
    font-size: 0.85rem;
}

/* Interactive Match Card Hover & Tap */
.sp-court-card {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

@media (hover: hover) {
    .sp-court-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
}

/* ========================================================
   RESPONSIVE MOBILE UX (<992px, <768px & <576px)
   ======================================================== */
@media (max-width: 991px) {
    .sp-fab {
        display: flex;
    }
}

@media (max-width: 768px) {
    /* Form Inputs on Mobile: 16px font to prevent auto-zoom on iOS */
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="number"],
    input[type="date"],
    input[type="time"],
    input[type="search"],
    select.form-select,
    textarea.form-control {
        font-size: 16px !important;
        min-height: 46px;
        border-radius: 10px;
    }

    /* Buttons: Minimum 44px touch height on mobile */
    .btn {
        min-height: 44px;
        padding: 9px 15px;
        font-size: 0.92rem;
        border-radius: 10px;
    }

    .btn-sm {
        min-height: 38px;
        font-size: 0.82rem;
        padding: 6px 12px;
    }

    /* Preserve compact sizes for card buttons on mobile */
    .sp-court-card .btn-court-action,
    .sp-court-card .btn-court-autostack {
        min-height: 36px !important;
        height: 36px !important;
        padding: 4px 10px !important;
        font-size: 0.80rem !important;
    }

    .sp-court-card .btn-court-cancel {
        min-height: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        width: 36px !important;
        padding: 0 !important;
    }

    .sp-stack-item .btn-stack-action {
        min-height: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        width: 28px !important;
        padding: 0 !important;
    }

    .sp-stack-item .btn-stack-reorder {
        min-height: 26px !important;
        height: 26px !important;
        min-width: 26px !important;
        width: 26px !important;
        padding: 0 !important;
    }

    .btn:active {
        transform: scale(0.97);
    }

    /* Responsive Tables */
    .table-responsive {
        border-radius: 10px;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 12px;
        border: 1px solid var(--sp-border-color);
    }

    .table th, .table td {
        padding: 12px 10px;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    /* Modals on Mobile: Native Bottom Sheet appearance */
    .modal-dialog {
        margin: 0;
        max-width: 100%;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        animation: sheetSlideUp 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    }

    @keyframes sheetSlideUp {
        from { transform: translateY(100%); }
        to { transform: translateY(0); }
    }

    .modal-content {
        border-radius: 22px 22px 0 0;
        border: none;
        max-height: 90vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: max(20px, env(safe-area-inset-bottom));
        box-shadow: 0 -10px 40px rgba(0,0,0,0.35);
    }

    .modal-handle-bar {
        display: block;
    }

    .modal-header {
        padding: 12px 20px 14px;
        border-bottom: 1px solid #E2E8F0;
    }

    .modal-body {
        padding: 18px 20px;
    }

    .modal-footer {
        padding: 14px 20px;
        border-top: 1px solid #E2E8F0;
        flex-direction: column-reverse;
        gap: 10px;
    }

    .modal-footer > * {
        width: 100%;
        margin: 0 !important;
        min-height: 48px;
    }

    /* Stat Cards on Mobile */
    .sp-stat-card {
        padding: 14px;
        border-radius: 12px;
    }

    .sp-stat-icon {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }

    /* Paddle Stack Touch Controls */
    .sp-stack-item {
        padding: 12px 14px;
        border-radius: 12px;
    }

    .sp-stack-item .btn-group .btn {
        min-height: 38px;
        min-width: 38px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .sp-stat-card {
        padding: 10px 12px;
    }
    
    .sp-stat-card h3 {
        font-size: 1.25rem !important;
    }
    
    .sp-mobile-card {
        padding: 12px 14px;
    }
}

/* ── PWA UI Elements ──────────────────────────────── */
.sp-pwa-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 460px;
    margin: 0 auto;
    background: #0F172A;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 12px 16px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    z-index: 1060;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    animation: spSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 991px) {
    .sp-pwa-banner {
        bottom: 75px;
        left: 12px;
        right: 12px;
    }
}

.sp-pwa-banner-content {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.sp-pwa-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    flex-shrink: 0;
}

.sp-pwa-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.sp-pwa-info strong {
    font-size: 0.88rem;
    color: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sp-pwa-info span {
    font-size: 0.72rem;
    color: #94A3B8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sp-pwa-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.sp-pwa-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #0F172A;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1070;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    animation: spSlideDown 0.3s ease;
}

.sp-pwa-offline-pill {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: #EF4444;
    color: #FFFFFF;
    font-size: 0.76rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    z-index: 1080;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    animation: spFadeIn 0.2s ease;
}

.sp-pwa-offline-pill.online {
    background: #10B981;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

@keyframes spSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes spSlideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes spFadeIn {
    from { opacity: 0; transform: translate(-50%, -10px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}


