/* uber.css — Uber Brand Portal Specifics */

/* Sort Buttons — Uber black/white */
.uber-body .cl-sort-btn {
  border-color: #000;
  color: #000;
  box-shadow: 3px 3px 0px #000;
}
.uber-body .cl-sort-btn:hover:not(.active) {
  background: rgba(0,0,0,0.06);
}
.uber-body .cl-sort-btn.active {
  background: #000;
  color: #fff;
  box-shadow: none;
}

.uber-body {
  --amalgam-bg: #fff;
}

body.uber-body {
  background-color: #fff;
  background-image: 
    linear-gradient(#000 1px, transparent 1px),
    linear-gradient(90deg, #000 1px, transparent 1px);
  background-size: 30px 30px;
}

.uber-badge { 
  background: #000;
  color: #fff;
  border: 3px solid #000;
  padding: 5px 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.uber-ph-stat span { color: #000; font-weight: 900; }
.uber-ph-stat label { color: #000; font-weight: 900; opacity: 1; }

/* Hard Brutalism Overhaul */
.uber-hero .cl-portal-hero-inner {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 6rem 2rem;
    box-shadow: none;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
}

/* Hero Typography Enhancements */
.uber-hero .cl-portal-name {
    font-family: 'Syne', sans-serif;
    font-size: clamp(3.5rem, 12vw, 14rem);
    font-weight: 900;
    line-height: 0.85;
    text-transform: uppercase;
    margin: 0 0 1.5rem -5px;
    color: #000;
    letter-spacing: -6px;
    text-shadow: 8px 8px 0px #fff;
    position: relative;
    z-index: 2;
}

.uber-hero .cl-portal-subline {
    font-family: 'Space Mono', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    background: #000;
    color: #fff;
    display: inline-block;
    padding: 0.5rem 1rem;
    box-shadow: 5px 5px 0px #fff;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.uber-hero .cl-portal-logo-wrap {
    margin-bottom: -1.5rem;
    position: relative;
    z-index: 3;
}
.uber-hero .cl-portal-logo-wrap img {
    height: 80px;
    filter: drop-shadow(4px 4px 0px #fff);
}

.cl-portal-hero-stats-panel {
    background: #fff;
    border: 5px solid #000;
    padding: 2.5rem;
    box-shadow: 12px 12px 0px #000;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (max-width: 992px) {
    .uber-hero .cl-portal-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 4rem 1.5rem;
    }
    .cl-portal-hero-stats-panel {
        flex-direction: row;
        justify-content: space-around;
        padding: 1.5rem;
    }
}

.uber-cta {
  background: #000;
  color: #fff;
  border: 3px solid #000;
  box-shadow: 10px 10px 0px rgba(0,0,0,0.1);
  font-weight: 900;
  text-transform: uppercase;
}

.uber-cta:hover {
  transform: translate(-3px, -3px);
  box-shadow: 15px 15px 0px rgba(0,0,0,0.2);
}

/* Feed Controls Layout */
.cl-feed-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 3rem auto;
    padding: 0 2rem;
}

@media (max-width: 992px) {
    .cl-feed-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}

/* Grid Layout for Feed */
#uber-feed.cl-feed-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 992px) {
    #uber-feed.cl-feed-grid {
        grid-template-columns: 1fr;
    }
}

/* Card Refinement */
.cl-story-card.uber-card {
    border-radius: 0;
    border: 5px solid #000;
    background: #fff;
    box-shadow: 15px 15px 0px #000;
    transition: all 0.2s ease-out;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-height: 450px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Intriguing Hover Effect - Background fill & Stamp */
.cl-story-card.uber-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #276EF1; /* Uber Blue */
    z-index: -1;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1);
}

.cl-story-card.uber-card::after {
    content: 'INCIDENT';
    position: absolute;
    top: -20px;
    right: -20px;
    font-family: 'Syne', sans-serif;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    transform: rotate(10deg);
    pointer-events: none;
    z-index: 0;
    transition: color 0.3s;
}

.cl-story-card.uber-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 19px 19px 0px #000;
    color: #fff;
}

.cl-story-card.uber-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.cl-story-card.uber-card:hover::after {
    color: rgba(255,255,255,0.08);
}

.cl-story-card.uber-card:hover .cl-story-location,
.cl-story-card.uber-card:hover .cl-story-category,
.cl-story-card.uber-card:hover .cl-story-title,
.cl-story-card.uber-card:hover .cl-story-excerpt,
.cl-story-card.uber-card:hover .cl-story-body,
.cl-story-card.uber-card:hover .cl-upvote-btn,
.cl-story-card.uber-card:hover .cl-share-row,
.cl-story-card.uber-card:hover .cl-read-more {
    color: #fff !important;
}

.cl-story-card.uber-card:hover .cl-share-btn i {
    color: #fff !important;
}

/* Ensure text stays above background effects */
.cl-story-card.uber-card .cl-story-header,
.cl-story-card.uber-card .cl-story-title,
.cl-story-card.uber-card .cl-story-excerpt,
.cl-story-card.uber-card .cl-story-body,
.cl-story-card.uber-card .cl-story-footer {
    position: relative;
    z-index: 2;
}

.cl-story-card.uber-card .cl-story-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
}

.cl-story-card.uber-card .cl-story-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 0;
    color: #000;
}

.cl-story-card.uber-card .cl-story-excerpt,
.cl-story-card.uber-card .cl-story-body {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.cl-story-card.uber-card .cl-story-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.cl-story-card.uber-card .cl-footer-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cl-story-card.uber-card .cl-upvote-btn {
    background: transparent;
    border: none;
    font-family: 'Space Mono', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    color: #000;
}

.cl-story-card.uber-card .cl-share-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    color: #666;
}

.cl-story-card.uber-card .cl-share-btn {
    color: #000;
    display: flex;
    align-items: center;
}

.cl-story-card.uber-card .cl-read-btn,
.cl-story-card.uber-card .cl-read-more {
    background: transparent;
    border: none;
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    color: #000;
    text-transform: uppercase;
}

/* Ticker Overlap Fix */
.uber-body {
    background-color: #fff;
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    cursor: crosshair; 
    padding-bottom: 40px;
}

.uber-ticker-wrap {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #000;
    color: #fff;
    padding: 5px 0;
    font-family: 'Space Mono', monospace;
    font-weight: 900;
    font-size: 12px;
    z-index: 9999;
    border-top: 3px solid #000;
}

.uber-ticker {
    display: flex;
    white-space: nowrap;
    animation: uber-ticker-scroll 25s linear infinite;
}

.uber-ticker span {
    padding: 0 40px;
}

@keyframes uber-ticker-scroll {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}

.uber-chat-header { 
  background: #000;
  color: #fff;
  border-bottom: 3px solid #000;
}

.uber-modal h2 { color: #000; font-weight: 900; text-transform: uppercase; }

/* Modal Refinement */
.cl-modal.uber-modal {
    border-radius: 0;
    border: 5px solid #000;
    box-shadow: 20px 20px 0px #000;
    background: #fff;
    padding: 4rem;
}

.cl-modal-meta {
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    color: #666;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.uber-modal h2 {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 2rem;
}

.cl-modal-body {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
}

.uber-modal .cl-modal-close {
    font-size: 2rem;
    font-weight: 900;
    color: #000;
    top: 2rem;
    right: 2rem;
}

/* Terminal V3 Styling — Compact Edition */
.terminal-v3 {
    background: #fff;
    border: 3px solid #000;
    box-shadow: 15px 15px 0px #000;
    width: 100%;
    max-width: 750px; /* Shrunk from 900 */
    margin: auto;
    font-family: 'Space Mono', monospace;
    position: relative;
    overflow: hidden;
}

.terminal-header {
    background: #000;
    color: #fff;
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #000;
    font-size: 0.75rem;
}

.status-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.blink-dot {
    width: 8px;
    height: 8px;
    background: #ff0000;
    border-radius: 50%;
    animation: blinker 1s infinite;
}

.terminal-grid {
    display: grid;
    grid-template-columns: 1fr 220px; /* Narrowed sidebar */
    border-bottom: 3px solid #000;
}

.chart-area {
    padding: 15px;
    border-right: 3px solid #000;
    background: #fff;
}

.terminal-sidebar {
    background: #f0f0f0;
    padding: 15px;
}

.sidebar-section {
    margin-bottom: 1.5rem;
}

.sidebar-section h4 {
    font-size: 0.65rem;
    margin-bottom: 8px;
    background: #000;
    color: #fff;
    padding: 2px 6px;
}

.activity-log {
    font-size: 0.65rem;
    height: 120px; /* Reduced height */
    overflow-y: hidden;
}

.log-entry { margin-bottom: 4px; line-height: 1.1; }
.log-entry.error { color: #ff0000; font-weight: 700; }
.log-entry.warning { color: #0000ff; }
.log-entry.success { color: #008800; }
.log-time { opacity: 0.5; margin-right: 4px; }

.fee-list { list-style: none; padding: 0; font-size: 0.7rem; }
.fee-list li { display: flex; justify-content: space-between; margin-bottom: 3px; }
.fee-val { font-weight: 700; }

.stock-title h3 { margin: 0; font-size: 1rem; }
.stock-ticker { font-size: 0.7rem; font-weight: 700; opacity: 0.7; }

/* D3 Graph Updates */
#surge-graph-container {
    height: 200px; /* Shrunk from 300 total */
    margin-bottom: 10px;
    position: relative;
}

.surge-grid line { stroke: rgba(0,0,0,0.1); stroke-dasharray: 2,2; }
.surge-axes text { font-size: 8px; }
.despair-trend { fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 1.5; }

.price-readout {
    background: #000;
    color: #fff;
    padding: 10px 15px;
    text-align: right;
    border: 2px solid #000;
}

.readout-label { font-size: 0.5rem; opacity: 0.7; letter-spacing: 1px; }
#fare-display { font-size: 1.8rem; font-weight: 900; line-height: 1; }

/* Trading Deck (Interaction Buttons) */
.trading-deck {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #000;
    padding: 6px;
    gap: 6px;
}

.btn-terminal {
    font-family: 'Space Mono', monospace;
    font-weight: 900;
    font-size: 0.8rem;
    padding: 12px;
    text-transform: uppercase;
    cursor: pointer;
    border: 3px solid #000;
    transition: all 0.1s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-terminal .btn-sub {
    font-size: 0.55rem;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 2px;
}

.btn-buy {
    background: #ff0000; /* Red for 'Loss' */
    color: #fff;
    border-color: #ff0000;
}

.btn-buy:hover { background: #cc0000; }
.btn-buy:active { transform: scale(0.98); }

.btn-wait {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.btn-wait:hover { background: #eee; }
.btn-wait:active { transform: scale(0.98); }

.priced-out .terminal-header { background: #fff; color: #000; }
.priced-out .terminal-grid { background: #000; color: #fff; }
.priced-out .terminal-sidebar { background: #111; border-left: 2px solid #fff; }
.priced-out .chart-area { background: #000; border-right: 2px solid #fff; }
.priced-out .btn-terminal { border-color: #fff; }

@media (max-width: 768px) {
    .terminal-grid { grid-template-columns: 1fr; }
    .chart-area { border-right: none; border-bottom: 4px solid #000; }
    .terminal-sidebar { height: auto; }
}

#surge-alert {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ff0000;
    color: white;
    padding: 15px;
    font-weight: 900;
    text-align: center;
    border: 4px solid black;
    z-index: 100;
    width: 80%;
}

.market-status.blinking {
    animation: blinker 0.4s linear infinite;
    color: #ff0000;
}

@keyframes blinker { 50% { opacity: 0; } }

.cloud-trigger {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 4px;
    height: 4px;
    background: #0000ff;
    cursor: pointer;
    z-index: 10;
}

.priced-out-msg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    text-align: center;
    font-weight: 900;
    width: 90%;
}

@media (max-width: 480px) {
    .button-stack {
        grid-template-columns: 1fr;
    }
    #fare-display {
        font-size: 2rem;
    }
}

.hidden { display: none; }

/* Fee rotation flash */
.fee-new { animation: fee-flash 0.6s ease; }
@keyframes fee-flash {
    0% { background: #FFD800; color: #000; padding-left: 4px; }
    100% { background: transparent; }
}

/* Despair Index */
.despair-bar-wrap {
    height: 8px;
    background: #eee;
    border: 2px solid #000;
    margin: 4px 0;
    overflow: hidden;
}
.despair-bar {
    height: 100%;
    background: #ff0000;
    transition: width 0.5s cubic-bezier(.4,0,.2,1);
}
.despair-label {
    font-size: 0.55rem;
    opacity: 0.7;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Driver Drama */
.driver-drama {
    background: #000;
    color: #fff;
    padding: 12px 15px;
    font-family: 'Space Mono', monospace;
    border-top: 3px solid #000;
    font-size: 0.75rem;
    min-height: 56px;
}
.drama-status {
    font-weight: 900;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
    font-size: 0.8rem;
}
.drama-status.searching { color: #FFD800; }
.drama-status.found { color: #00ff44; }
.drama-status.cancelled { color: #ff0000; }
.drama-detail { opacity: 0.8; margin: 2px 0; }
.fee-penalty { color: #ff0000 !important; opacity: 1 !important; font-weight: 900; }

/* Restart Button */
.btn-restart {
    background: #FFD800;
    color: #000;
    border-color: #000;
    width: 100%;
    border-top: none;
    padding: 14px;
}
.btn-restart:hover { background: #e6c200; }
.btn-restart:active { transform: scale(0.98); }

/* Form container — exact OLA match */
.cl-form-container {
    max-width: 1100px;
    background: #fff;
    border: 5px solid #000;
    border-radius: 0;
    padding: 3rem;
    box-shadow: 12px 12px 0px #000;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

/* Citizen Grievance Portal (Shredder Game) */
#feedback-black-hole {
    padding: 6rem 2rem;
    background: #fff;
    border-top: 5px solid #000;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.shredder-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 2rem;
}

#complaint-input {
    width: 100%;
    height: 200px;
    border: 4px solid #000;
    padding: 1.5rem;
    font-family: 'Space Mono', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    background: #fff;
    box-shadow: 10px 10px 0px #000;
    margin-bottom: 2rem;
    outline: none;
    resize: none;
}

.shredder-unit {
    width: 100%;
    position: relative;
    z-index: 5;
}

.shredder-mouth {
    height: 40px;
    background: #000;
    border: 4px solid #000;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 1rem;
}

.status-led {
    width: 12px;
    height: 12px;
    background: #330000;
    border-radius: 50%;
}

.status-led.active {
    background: #ff0000;
    box-shadow: 0 0 10px #ff0000;
}

.shredder-base {
    height: 60px;
    background: #eee;
    border: 4px solid #000;
    border-top: none;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    font-weight: 900;
    color: #000;
    opacity: 0.5;
}

.shredder-controls {
    margin-top: 3rem;
    text-align: center;
}

.btn-brutal {
    font-family: 'Space Mono', monospace;
    font-weight: 900;
    padding: 1.2rem 2.5rem;
    border: 4px solid #000;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.1s;
}

.btn-black {
    background: #000;
    color: #fff;
    box-shadow: 10px 10px 0px rgba(0,0,0,0.2);
}

.btn-black:hover {
    transform: translate(-3px, -3px);
    box-shadow: 13px 13px 0px rgba(0,0,0,0.3);
}

.btn-white {
    background: #fff;
    color: #000;
    box-shadow: 8px 8px 0px #000;
}

.btn-white:hover {
    transform: translate(-2px, -2px);
    box-shadow: 10px 10px 0px #000;
}

/* Success Modal (The "Sharing" Success) */
.brutal-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brutal-modal.hidden {
    display: none;
}

.modal-content {
    background: #fff;
    border: 5px solid #000;
    padding: 4rem;
    max-width: 600px;
    width: 90%;
    text-align: center;
    box-shadow: 25px 25px 0px #276EF1; /* Uber Blue Shadow */
}

.modal-content h2 {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #000;
}

.modal-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.coupon-code {
    background: #000;
    color: #fff;
    padding: 1rem;
    font-family: 'Space Mono', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    border: 3px dashed #fff;
    outline: 3px solid #000;
}

.tiny-print {
    font-size: 0.7rem !important;
    opacity: 0.6;
    margin-bottom: 2rem !important;
}

/* Shredding Animation */
.shred-strip {
    position: absolute;
    width: 10px;
    z-index: 2;
}

@keyframes shred {
    0% { transform: translateY(0); height: 240px; }
    100% { transform: translateY(240px); height: 0; }
}

.shredding-animation {
    animation: shred 1.5s forwards ease-in;
}

.shredding-animation-slow {
    animation: shred 3.5s forwards ease-in;
}

@media (max-width: 768px) {
    .cl-portal-hero-stats-panel {
        flex-direction: column;
        gap: 1.5rem;
    }
    .cl-story-card.uber-card,
    .cl-form-container,
    .cl-modal.uber-modal,
    .modal-content {
        padding: 1.5rem !important;
    }
    .uber-hero .cl-portal-subline {
        font-size: 1rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .uber-hero .cl-portal-hero-inner {
        padding: 3rem 1.5rem;
        gap: 2rem;
    }
    .uber-hero .cl-portal-name {
        font-size: clamp(3rem, 14vw, 6rem);
        letter-spacing: -3px;
        margin-bottom: 1rem;
    }
    .uber-hero .cl-portal-logo-wrap img {
        height: 60px;
    }
}

/* =========================================
   MOBILE OPTIMIZATION — Added breakpoints
   ========================================= */

/* ---- 992px: fix feed gap ---- */
@media (max-width: 992px) {
  #uber-feed.cl-feed-grid {
    gap: 2rem;
    padding: 0 1.5rem;
  }
}

/* ---- 768px: card height, shredder ---- */
@media (max-width: 768px) {
  .cl-story-card.uber-card {
    min-height: auto;
    padding: 1.5rem !important;
    gap: 1rem;
  }
  .cl-story-card.uber-card .cl-story-title {
    font-size: 1.4rem;
  }
  .cl-story-card.uber-card .cl-story-excerpt,
  .cl-story-card.uber-card .cl-story-body {
    font-size: 1rem;
  }
  #feedback-black-hole {
    padding: 3rem 1.5rem;
  }
  .cl-modal.uber-modal {
    padding: 1.5rem !important;
  }
}

/* ---- 600px: terminal grid stack ---- */
@media (max-width: 600px) {
  .terminal-grid {
    grid-template-columns: 1fr;
  }
  .chart-area {
    border-right: none;
    border-bottom: 3px solid #000;
  }
  .terminal-sidebar {
    height: auto;
  }
  .uber-hero .cl-portal-hero-inner {
    padding: 2.5rem 1.25rem;
    gap: 1.5rem;
  }
  .cl-portal-hero-stats-panel {
    flex-direction: row;
    justify-content: space-around;
    padding: 1.25rem;
    box-shadow: 6px 6px 0px #000;
  }
}

/* ---- 479px: phone ---- */
@media (max-width: 479px) {
  #uber-feed.cl-feed-grid {
    gap: 1.5rem;
    padding: 0 1rem;
  }
  #feedback-black-hole {
    padding: 2rem 1rem;
  }
  .section-title {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
  }
  #surge-graph-container {
    height: 150px;
  }
  .cl-modal.uber-modal {
    padding: 1rem !important;
  }
  .uber-modal h2 {
    font-size: 1.75rem;
  }
  .modal-content {
    padding: 1.25rem !important;
    width: 95%;
  }
  .modal-content h2 {
    font-size: 1.75rem;
  }
  .coupon-code {
    font-size: 1.1rem;
  }
  .uber-hero .cl-portal-hero-inner {
    padding: 2rem 1rem;
    gap: 1rem;
  }
  .uber-hero .cl-portal-name {
    font-size: clamp(2.5rem, 16vw, 4rem);
    letter-spacing: -2px;
    text-shadow: 4px 4px 0px #fff;
  }
  .uber-hero .cl-portal-subline {
    font-size: 0.85rem;
    padding: 0.4rem 0.75rem;
    box-shadow: 3px 3px 0px #fff;
  }
  .uber-hero .cl-portal-logo-wrap img {
    height: 48px;
  }
  .cl-portal-hero-stats-panel {
    padding: 1rem;
    gap: 1rem;
    box-shadow: 4px 4px 0px #000;
  }
}
