/* =========================================================
   RADARMEET - COMPLETE STYLES.CSS
   ========================================================= */

   * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html,
  body {
    width: 100%;
    min-height: 100%;
  }
  
  body {
    font-family: Arial, Helvetica, sans-serif;
    background: #07090d;
    color: #ffffff;
    overflow-x: hidden;
  }
  
  button,
  input,
  textarea,
  select {
    font: inherit;
  }
  
  button {
    cursor: pointer;
  }
  
  img {
    display: block;
    max-width: 100%;
  }
  
  /* =========================================================
     APP SHELL
     ========================================================= */
  
  .app {
    min-height: 100vh;
    display: flex;
    background: #07090d;
  }
  
  /* =========================================================
     SIDEBAR
     ========================================================= */
  
  .sidebar {
    width: 245px;
    min-width: 245px;
    min-height: 100vh;
    background: #0d1016;
    border-right: 1px solid #20242c;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 1000;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 22px 18px;
    border-bottom: 1px solid #20242c;
  }
  
  .logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 21px;
    color: white;
    background: linear-gradient(
      135deg,
      #ff315b,
      #b516ff
    );
    box-shadow:
      0 0 20px rgba(255, 49, 91, 0.35);
  }
  
  .logo-name {
    font-size: 18px;
    font-weight: 900;
  }
  
  .logo-sub {
    margin-top: 3px;
    font-size: 11px;
    color: #7f8794;
  }
  
  .nav {
    padding: 18px 12px;
    display: flex;
    flex-direction: column;
    gap: 7px;
  }
  
  .nav-item {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid transparent;
    border-radius: 11px;
    background: transparent;
    color: #9ba3af;
    display: flex;
    align-items: center;
    gap: 11px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    transition:
      background 0.18s ease,
      color 0.18s ease,
      border-color 0.18s ease,
      transform 0.18s ease;
  }
  
  .nav-item:hover {
    color: white;
    background: #151922;
    transform: translateX(2px);
  }
  
  .nav-item.active {
    color: white;
    background:
      linear-gradient(
        90deg,
        rgba(255, 49, 91, 0.20),
        rgba(181, 22, 255, 0.08)
      );
    border-color: rgba(255, 49, 91, 0.35);
  }
  
  .message-nav-badge {
    margin-left: auto;
    min-width: 21px;
    height: 21px;
    padding: 0 6px;
    border-radius: 20px;
    background: #ff315b;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 900;
  }
  
  .sidebar-bottom {
    margin-top: auto;
    padding: 18px;
    border-top: 1px solid #20242c;
  }
  
  .plan-label {
    color: #ff315b;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
  }
  
  .plan-text {
    margin-top: 6px;
    color: #8c94a0;
    font-size: 12px;
    line-height: 1.5;
  }
  
  .premium-btn {
    width: 100%;
    margin-top: 13px;
    padding: 11px;
    border: none;
    border-radius: 9px;
    background: linear-gradient(
      135deg,
      #ff315b,
      #b516ff
    );
    color: white;
    font-weight: 900;
  }
  
  /* =========================================================
     MAIN AREA
     ========================================================= */
  
  .main {
    flex: 1;
    min-width: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  
  /* =========================================================
     TOP BAR / ACTIVITY HERO
     ========================================================= */
  
  .topbar {
    position: relative;
    min-height: 185px;
    padding: 20px 22px 24px;
  
    background:
  linear-gradient(
    90deg,
    rgba(7, 9, 13, 0.45) 0%,
    rgba(7, 9, 13, 0.08) 35%,
    rgba(7, 9, 13, 0.02) 65%,
    rgba(7, 9, 13, 0.18) 100%
  ),
  linear-gradient(
    0deg,
    rgba(7, 9, 13, 0.35) 0%,
    rgba(7, 9, 13, 0.00) 60%,
    rgba(7, 9, 13, 0.08) 100%
  ),
  url("./radarmeet-activity-hero.png");
  
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  
    border-bottom: 1px solid #20242c;
  
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
  
    overflow: hidden;
  
    box-shadow:
      inset 0 -45px 45px rgba(7, 9, 13, 0.35);
  }
  
  .live-label {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #a6adb8;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
    margin-bottom: 7px;
  }
  
  .live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #31e6b6;
    box-shadow:
      0 0 10px rgba(49, 230, 182, 0.8);
  }
  
  #pageTitle {
    font-size: 27px;
    font-weight: 900;
    text-shadow:
      0 2px 8px rgba(0, 0, 0, 0.7);
  }
  
  .top-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .search-box {
    height: 40px;
    min-width: 210px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(7, 9, 13, 0.72);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .search-box input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: white;
  }
  
  .search-box input::placeholder {
    color: #858d98;
  }
  
  .icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(7, 9, 13, 0.72);
    color: white;
  }
  
  .user-chip {
    min-height: 42px;
    padding: 5px 10px 5px 6px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(7, 9, 13, 0.72);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .mini-avatar {
    width: 31px;
    height: 31px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
      135deg,
      #ff315b,
      #b516ff
    );
    font-weight: 900;
  }
  
  /* =========================================================
     RADAR VIEW
     ========================================================= */
  
  .radar-view {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }
  
  .radar-view.hidden {
    display: none !important;
  }
  
  .radar-controls {
    padding: 16px 22px;
    background: #0c0f14;
    border-bottom: 1px solid #20242c;
  }
  
  .control-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    color: #d7dbe2;
    font-size: 13px;
    font-weight: 800;
  }
  
  #distanceValue {
    color: #ff5575;
    font-weight: 900;
  }
  
  #radarDistance {
    width: 100%;
    accent-color: #ff315b;
  }
  
  .distance-labels {
    display: flex;
    justify-content: space-between;
    color: #686f7a;
    font-size: 10px;
    margin-top: 5px;
  }
  
  /* =========================================================
     MAIN RADAR CONTENT
     ========================================================= */
  
  .content {
    flex: 1;
    min-height: 0;
    display: grid;
    grid-template-columns:
      minmax(0, 1fr)
      330px;
    gap: 14px;
    padding: 14px;
  }
  
  .map-card {
    position: relative;
    min-height: 570px;
    border: 1px solid #20242c;
    border-radius: 15px;
    overflow: hidden;
    background: #10141a;
  }
  
  #map {
    width: 100%;
    height: 100%;
    min-height: 570px;
    z-index: 1;
  }
  
  .map-status {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 500;
    padding: 8px 11px;
    border-radius: 9px;
    background: rgba(7, 9, 13, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
    font-size: 11px;
    backdrop-filter: blur(8px);
  }
  
  /* =========================================================
     MAP POPUPS
     ========================================================= */
  
  .leaflet-popup-content-wrapper {
    background: #10141a;
    color: white;
    border-radius: 13px;
    border: 1px solid #2a303a;
  }
  
  .leaflet-popup-tip {
    background: #10141a;
  }
  
  .leaflet-popup-content {
    margin: 13px;
  }
  
  .person-popup {
    min-width: 190px;
    text-align: center;
  }
  
  .popup-photo {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 8px;
    border: 2px solid #ff315b;
  }
  
  .person-popup h3 {
    margin-bottom: 3px;
  }
  
  .person-popup p {
    color: #a0a8b3;
    font-size: 12px;
    margin-bottom: 8px;
  }
  
  .popup-profile-btn,
  .popup-message-btn {
    width: 100%;
    border: none;
    border-radius: 8px;
    padding: 9px;
    margin-top: 6px;
    font-weight: 800;
  }
  
  .popup-profile-btn {
    background: #202630;
    color: white;
  }
  
  .popup-message-btn {
    background: #ff315b;
    color: white;
  }
  
  /* =========================================================
     PROFILE PANEL
     ========================================================= */
  
  .profile-panel {
    width: 330px;
    background: #0d1016;
    border: 1px solid #20242c;
    border-radius: 15px;
    overflow: hidden;
    display: none;
  }
  
  .profile-panel.open {
    display: block;
  }
  
  .profile-panel-inner {
    padding: 20px;
    position: relative;
  }
  
  #profileClose {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #2a303a;
    background: #171b22;
    color: white;
  }
  
  .profile-photo-wrap {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 20px auto 13px;
  }
  
  #panelPhoto {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff315b;
  }
  
  #panel-online-dot {
    position: absolute;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    right: 5px;
    bottom: 7px;
    background: #31e6b6;
    border: 3px solid #0d1016;
  }
  
  #panelName {
    text-align: center;
    font-size: 21px;
    font-weight: 900;
  }
  
  #panel-online-text,
  #panelDistance {
    text-align: center;
    color: #8f98a5;
    font-size: 12px;
    margin-top: 4px;
  }
  
  #panelBio {
    margin-top: 18px;
    color: #c2c7cf;
    line-height: 1.55;
    font-size: 13px;
  }
  
  #panelActivity {
    margin-top: 16px;
    padding: 11px;
    border-radius: 10px;
    background: #151922;
    color: #ff6684;
    font-weight: 800;
  }
  
  #panelInterests {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
  }
  
  #panelInterests span {
    padding: 6px 9px;
    border-radius: 20px;
    background: #1b2029;
    color: #b7bec8;
    font-size: 11px;
  }
  
  #panelMessageButton {
    width: 100%;
    margin-top: 18px;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(
      135deg,
      #ff315b,
      #b516ff
    );
    color: white;
    font-weight: 900;
  }
  
  /* =========================================================
     SMALL CHAT PANEL
     ========================================================= */
  
     .chat-panel {
      height: 570px;
      min-height: 570px;
    
      background: #0d1016;
      border: 1px solid #20242c;
      border-radius: 15px;
      overflow: hidden;
    
      display: flex;
      flex-direction: column;
    }
    
    .chat-header {
      flex: 0 0 auto;
    
      padding: 15px;
      border-bottom: 1px solid #20242c;
    
      display: flex;
      align-items: center;
      gap: 8px;
    }
  
  .chat-header {
    padding: 15px;
    border-bottom: 1px solid #20242c;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .chat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #31e6b6;
  }
  
  .online-count {
    margin-left: auto;
    color: #31e6b6;
    font-size: 11px;
  }
  
  .chat-body {
    flex: 1 1 auto;
    min-height: 0;
  
    padding: 14px;
  
    overflow-y: auto;
    overflow-x: hidden;
  }
  
  .chat-message {
    display: flex;
    gap: 9px;
    margin-bottom: 13px;
  }
  
  .chat-avatar-photo {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .chat-input {
    flex: 0 0 auto;
  
    width: auto;
    margin: 0 14px 14px;
    padding: 10px;
  
    display: flex;
    align-items: center;
    gap: 8px;
  
    border-radius: 9px;
    border: 1px solid #2b3039;
  
    background: #151922;
  }
  
  .chat-input input {
    flex: 1;
    min-width: 0;
  
    border: none;
    outline: none;
  
    background: transparent;
    color: white;
  }
  
  .chat-input button {
    flex: 0 0 auto;
  
    width: 32px;
    height: 32px;
  
    border: none;
    border-radius: 7px;
  
    background: #ff315b;
    color: white;
  
    cursor: pointer;
  }
  
  /* =========================================================
     CITY CHAT PAGE
     ========================================================= */
  
  .city-chat-view {
    display: none;
    flex: 1;
    padding: 20px;
    background: #090c11;
  }
  
  .city-chat-view.open {
    display: block;
  }
  
  .city-chat-page {
    max-width: 950px;
    margin: 0 auto;
    background: #0d1016;
    border: 1px solid #20242c;
    border-radius: 16px;
    overflow: hidden;
  }
  
  .city-chat-page-header {
    padding: 20px;
    border-bottom: 1px solid #20242c;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .city-chat-eyebrow {
    color: #ff315b;
    font-size: 10px;
    letter-spacing: 1.4px;
    font-weight: 900;
  }
  
  .city-online-pill {
    padding: 7px 11px;
    border-radius: 20px;
    background: rgba(49, 230, 182, 0.10);
    color: #31e6b6;
    font-size: 11px;
    font-weight: 800;
  }
  
  .city-chat-messages {
    height: 470px;
    overflow-y: auto;
    padding: 18px;
  }
  
  .city-full-message {
    display: flex;
    gap: 11px;
    margin-bottom: 18px;
  }
  
  .city-full-avatar,
  .city-you-avatar {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    object-fit: cover;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
      135deg,
      #ff315b,
      #b516ff
    );
    font-weight: 900;
  }
  
  .city-message-content {
    flex: 1;
  }
  
  .city-message-top {
    display: flex;
    gap: 9px;
    align-items: center;
    margin-bottom: 5px;
  }
  
  .city-message-top span {
    color: #6f7782;
    font-size: 10px;
  }
  
  .city-message-content p {
    color: #c5cad1;
    line-height: 1.5;
  }
  
  .city-chat-compose {
    padding: 15px;
    border-top: 1px solid #20242c;
    display: flex;
    gap: 10px;
  }
  
  #cityChatInput {
    flex: 1;
    padding: 12px;
    border: 1px solid #2a303a;
    border-radius: 10px;
    background: #151922;
    color: white;
    outline: none;
  }
  
  .city-chat-send,
  #cityChatSend {
    border: none;
    border-radius: 10px;
    padding: 0 20px;
    background: #ff315b;
    color: white;
    font-weight: 900;
  }
  
  /* =========================================================
     PRIVATE MESSAGES
     ========================================================= */
  
  .messages-view {
    display: none;
    flex: 1;
    min-height: 600px;
    padding: 20px;
    gap: 14px;
    background: #090c11;
  }
  
  .messages-view.open {
    display: flex;
  }
  
  .conversation-panel {
    width: 310px;
    background: #0d1016;
    border: 1px solid #20242c;
    border-radius: 15px;
    overflow: hidden;
  }
  
  .conversation-heading {
    padding: 18px;
    border-bottom: 1px solid #20242c;
  }
  
  .conversation-eyebrow {
    color: #ff315b;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.3px;
  }
  
  .conversation-list {
    overflow-y: auto;
  }
  
  .conversation-item {
    padding: 13px;
    border-bottom: 1px solid #1b2028;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
  }
  
  .conversation-item:hover,
  .conversation-item.active {
    background: #151922;
  }
  
  .conversation-avatar {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .thread-panel {
    flex: 1;
    min-width: 0;
    background: #0d1016;
    border: 1px solid #20242c;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  
  .thread-header {
    padding: 14px 17px;
    border-bottom: 1px solid #20242c;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  
  .thread-person {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  #threadPhoto {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  #threadName {
    font-weight: 900;
  }
  
  .thread-online,
  #thread-online {
    color: #31e6b6;
    font-size: 11px;
  }
  
  .thread-actions {
    display: flex;
    gap: 7px;
  }
  
  .thread-actions button {
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid #2a303a;
    background: #171b22;
    color: #c6cbd2;
  }
  
  #deleteConversationButton,
  #blockUserButton {
    color: #ff6684;
  }
  
  .thread-messages {
    flex: 1;
    min-height: 390px;
    max-height: 520px;
    overflow-y: auto;
    padding: 18px;
  }
  
  .message-row {
    display: flex;
    margin-bottom: 11px;
  }
  
  .message-row.sent {
    justify-content: flex-end;
  }
  
  .message-row.received {
    justify-content: flex-start;
  }
  
  .thread-bubble {
    max-width: 72%;
    padding: 10px 13px;
    border-radius: 13px;
    background: #1a2029;
    color: #e4e7eb;
    line-height: 1.45;
  }
  
  .message-row.sent .thread-bubble {
    background: linear-gradient(
      135deg,
      #ff315b,
      #d51f70
    );
    color: white;
  }
  
  .message-bubble-time {
    margin-top: 4px;
    opacity: 0.65;
    font-size: 9px;
  }
  
  .thread-compose {
    padding: 14px;
    border-top: 1px solid #20242c;
    display: flex;
    gap: 9px;
  }
  
  #threadInput {
    flex: 1;
    padding: 11px;
    border: 1px solid #2a303a;
    border-radius: 9px;
    background: #151922;
    color: white;
    outline: none;
  }
  
  #threadSendButton {
    border: none;
    border-radius: 9px;
    padding: 0 18px;
    background: #ff315b;
    color: white;
    font-weight: 900;
  }
  
  /* =========================================================
     EDIT PROFILE
     IMPORTANT: THIS IS THE PAGE THAT WAS BROKEN
     ========================================================= */
  
  .edit-profile-view {
    display: none;
    flex: 1;
    width: 100%;
    padding: 22px;
    background: #090c11;
    overflow-y: auto;
  }
  
  .edit-profile-view.open {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .edit-profile-card {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: #0d1016;
    border: 1px solid #20242c;
    border-radius: 17px;
    overflow: hidden;
    box-shadow:
      0 18px 50px rgba(0, 0, 0, 0.25);
  }
  
  .edit-profile-header {
    padding: 22px 24px;
    border-bottom: 1px solid #20242c;
    background:
      linear-gradient(
        90deg,
        rgba(255, 49, 91, 0.08),
        transparent
      );
  }
  
  .edit-profile-header h2 {
    margin-top: 5px;
    font-size: 23px;
  }
  
  .edit-profile-header p {
    margin-top: 7px;
    color: #8e96a2;
    font-size: 13px;
    line-height: 1.5;
  }
  
  .edit-profile-eyebrow {
    color: #ff315b;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
  }
  
  .edit-profile-content {
    padding: 25px;
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 28px;
  }
  
  .edit-photo-section {
    text-align: center;
  }
  
  .edit-photo-preview {
    width: 135px;
    height: 135px;
    margin: 0 auto 14px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
      135deg,
      #ff315b,
      #b516ff
    );
    border: 4px solid #20242c;
    box-shadow:
      0 0 0 2px #ff315b,
      0 8px 30px rgba(255, 49, 91, 0.25);
    font-size: 42px;
    font-weight: 900;
  }
  
  .edit-photo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  #editPhotoInput {
    display: none;
  }
  
  .edit-photo-button {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 9px;
    background: #1b2029;
    border: 1px solid #2b313b;
    color: white;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
  }
  
  .edit-photo-button:hover {
    border-color: #ff315b;
  }
  
  .photo-help {
    margin-top: 8px;
    color: #686f7a;
    font-size: 10px;
    line-height: 1.4;
  }
  
  .edit-profile-form {
    min-width: 0;
  }
  
  .edit-form-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 130px;
    gap: 13px;
  }
  
  .edit-field {
    margin-bottom: 17px;
  }
  
  .edit-field label {
    display: block;
    margin-bottom: 7px;
    color: #b9c0c9;
    font-size: 11px;
    font-weight: 800;
  }
  
  .edit-field input,
  .edit-field textarea,
  .edit-field select {
    width: 100%;
    padding: 12px 13px;
    border-radius: 9px;
    border: 1px solid #2a303a;
    background: #151922;
    color: white;
    outline: none;
    transition:
      border-color 0.18s ease,
      box-shadow 0.18s ease;
  }
  
  .edit-field textarea {
    min-height: 105px;
    resize: vertical;
  }
  
  .edit-field input:focus,
  .edit-field textarea:focus,
  .edit-field select:focus {
    border-color: #ff315b;
    box-shadow:
      0 0 0 3px rgba(255, 49, 91, 0.10);
  }
  
  .small-field {
    min-width: 0;
  }
  
  .bio-counter {
    margin-top: 5px;
    text-align: right;
    color: #6d7580;
    font-size: 10px;
  }
  
  .interest-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .interest-option {
    position: relative;
    cursor: pointer;
  }
  
  .interest-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  
  .interest-option span {
    display: inline-block;
    padding: 8px 11px;
    border-radius: 20px;
    background: #171c24;
    border: 1px solid #2a303a;
    color: #aeb5bf;
    font-size: 11px;
    font-weight: 700;
    transition:
      background 0.15s ease,
      border-color 0.15s ease,
      color 0.15s ease;
  }
  
  .interest-option input:checked + span {
    background: rgba(255, 49, 91, 0.14);
    border-color: #ff315b;
    color: #ff718d;
  }
  
  .save-profile-btn {
    width: 100%;
    margin-top: 7px;
    padding: 13px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(
      135deg,
      #ff315b,
      #b516ff
    );
    color: white;
    font-weight: 900;
    box-shadow:
      0 8px 22px rgba(255, 49, 91, 0.20);
  }
  
  .save-profile-btn:hover {
    filter: brightness(1.08);
  }
  
  .profile-saved-message {
    display: none;
    margin-top: 12px;
    padding: 10px;
    border-radius: 8px;
    background: rgba(49, 230, 182, 0.10);
    color: #31e6b6;
    text-align: center;
    font-size: 12px;
    font-weight: 800;
  }
  
  .profile-saved-message.show {
    display: block;
  }
  
  /* =========================================================
     BLOCKED USERS
     ========================================================= */
  
  .blocked-view {
    display: none;
    flex: 1;
    padding: 22px;
    background: #090c11;
  }
  
  .blocked-view.open {
    display: block;
  }
  
  .blocked-card {
    max-width: 850px;
    margin: 0 auto;
    background: #0d1016;
    border: 1px solid #20242c;
    border-radius: 16px;
    overflow: hidden;
  }
  
  .blocked-heading {
    padding: 22px;
    border-bottom: 1px solid #20242c;
  }
  
  .blocked-eyebrow {
    color: #ff315b;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.4px;
  }
  
  .blocked-heading h2 {
    margin-top: 5px;
  }
  
  .blocked-heading p {
    margin-top: 7px;
    color: #8f97a3;
    font-size: 12px;
  }
  
  .blocked-list {
    padding: 15px;
  }
  
  .blocked-user {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 12px;
    border-bottom: 1px solid #20242c;
  }
  
  .blocked-user-left {
    display: flex;
    align-items: center;
    gap: 11px;
  }
  
  .blocked-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .blocked-user-name {
    font-weight: 900;
  }
  
  .blocked-user-status {
    margin-top: 3px;
    color: #777f8a;
    font-size: 10px;
  }
  
  .unblock-btn {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #333a45;
    background: #171b22;
    color: white;
    font-weight: 800;
  }
  
  /* =========================================================
     QUICK MESSAGE MODAL
     ========================================================= */
  
  .message-overlay,
  .confirm-overlay {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(5px);
  }
  
  .message-overlay.open,
  .confirm-overlay.open {
    display: flex;
  }
  
  .message-modal,
  .confirm-modal {
    width: min(440px, 100%);
    background: #10141a;
    border: 1px solid #2a303a;
    border-radius: 16px;
    box-shadow:
      0 20px 70px rgba(0, 0, 0, 0.5);
  }
  
  .message-modal {
    padding: 20px;
    position: relative;
  }
  
  #messageClose {
    position: absolute;
    right: 12px;
    top: 12px;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    border: 1px solid #303641;
    background: #171b22;
    color: white;
  }
  
  .message-user {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 15px;
  }
  
  #messagePhoto {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .message-label {
    color: #777f8a;
    font-size: 10px;
  }
  
  #messageName {
    font-weight: 900;
  }
  
  .message-online {
    color: #31e6b6;
    font-size: 10px;
    margin-top: 3px;
  }
  
  #messageText {
    width: 100%;
    min-height: 110px;
    padding: 12px;
    border: 1px solid #2a303a;
    border-radius: 9px;
    background: #151922;
    color: white;
    outline: none;
    resize: vertical;
  }
  
  #sendMessageButton {
    width: 100%;
    margin-top: 10px;
    padding: 12px;
    border: none;
    border-radius: 9px;
    background: #ff315b;
    color: white;
    font-weight: 900;
  }
  
  #messageStatus {
    margin-top: 8px;
    text-align: center;
    color: #31e6b6;
    font-size: 11px;
  }
  
  /* =========================================================
     CONFIRM MODAL
     ========================================================= */
  
  .confirm-modal {
    padding: 22px;
    text-align: center;
  }
  
  #confirmIcon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 49, 91, 0.12);
    color: #ff315b;
    font-size: 22px;
  }
  
  #confirmTitle {
    font-size: 20px;
  }
  
  #confirmText {
    margin-top: 8px;
    color: #969eaa;
    font-size: 12px;
    line-height: 1.5;
  }
  
  .confirm-actions {
    display: flex;
    gap: 9px;
    margin-top: 18px;
  }
  
  #confirmCancel,
  #confirmDanger {
    flex: 1;
    padding: 11px;
    border-radius: 9px;
    font-weight: 900;
  }
  
  #confirmCancel {
    border: 1px solid #303641;
    background: #171b22;
    color: white;
  }
  
  #confirmDanger {
    border: none;
    background: #ff315b;
    color: white;
  }
  
  /* =========================================================
     SCROLLBARS
     ========================================================= */
  
  ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  
  ::-webkit-scrollbar-track {
    background: #0b0e13;
  }
  
  ::-webkit-scrollbar-thumb {
    background: #303641;
    border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #444c58;
  }
  
  /* =========================================================
     RESPONSIVE
     ========================================================= */
  
  @media (max-width: 1050px) {
  
    .content {
      grid-template-columns: 1fr;
    }
  
    .profile-panel {
      width: 100%;
    }
  
    .messages-view {
      flex-direction: column;
    }
  
    .conversation-panel {
      width: 100%;
    }
  }
  
  @media (max-width: 800px) {
  
    .app {
      display: block;
    }
  
    .sidebar {
      width: 100%;
      min-width: 0;
      min-height: auto;
      height: auto;
      position: relative;
    }
  
    .nav {
      flex-direction: row;
      overflow-x: auto;
    }
  
    .nav-item {
      min-width: max-content;
    }
  
    .sidebar-bottom {
      display: none;
    }
  
    .topbar {
      min-height: 160px;
      padding: 18px;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-end;
    }
  
    .top-actions {
      width: 100%;
    }
  
    .search-box {
      flex: 1;
      min-width: 0;
    }
  
    .content {
      padding: 10px;
    }
  
    .edit-profile-content {
      grid-template-columns: 1fr;
    }
  
    .edit-form-row {
      grid-template-columns: 1fr;
    }
  
    .edit-photo-section {
      margin-bottom: 5px;
    }
  
    .map-card,
    #map {
      min-height: 500px;
    }
  }

  /* ======================================================
   RADAR FILTERS
====================================================== */

.radar-filter-box {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #252a33;
}

.radar-filter-title {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.radar-filter-grid {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.radar-filter-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.radar-filter-group label {
  color: #8f98a8;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}


/* ACTIVITY DROPDOWN */

.radar-filter-group select {
  min-width: 190px;
  height: 42px;
  padding: 0 36px 0 13px;

  color: #ffffff;
  background: #151922;

  border: 1px solid #303641;
  border-radius: 9px;

  font-size: 13px;
  font-weight: 700;

  outline: none;
  cursor: pointer;
}

.radar-filter-group select:hover {
  border-color: #ff315b;
}

.radar-filter-group select:focus {
  border-color: #ff315b;
  box-shadow: 0 0 0 3px rgba(255, 49, 91, 0.12);
}

.radar-filter-group select option {
  color: #ffffff;
  background: #151922;
}


/* AGE RANGE */

.age-filter-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.age-filter-row input {
  width: 72px;
  height: 42px;
  padding: 0 10px;

  color: #ffffff;
  background: #151922;

  border: 1px solid #303641;
  border-radius: 9px;

  font-size: 13px;
  font-weight: 700;

  outline: none;
}

.age-filter-row input:focus {
  border-color: #ff315b;
  box-shadow: 0 0 0 3px rgba(255, 49, 91, 0.12);
}

.age-filter-row span {
  color: #737c8c;
  font-size: 12px;
  font-weight: 700;
}


/* ONLINE ONLY */

.online-filter-toggle {
  min-height: 42px;
  padding: 0 14px;

  display: flex;
  align-items: center;
  gap: 9px;

  background: #151922;

  border: 1px solid #303641;
  border-radius: 9px;

  cursor: pointer;
  user-select: none;
}

.online-filter-toggle:hover {
  border-color: #31e6b6;
}

.online-filter-toggle input {
  width: 17px;
  height: 17px;

  accent-color: #31e6b6;
  cursor: pointer;
}

.online-filter-toggle span {
  color: #d9dee7;
  font-size: 12px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}


/* RESET BUTTON */

.reset-filter-btn {
  height: 42px;
  padding: 0 18px;
  margin-top: 22px;

  color: #ffffff;
  background: transparent;

  border: 1px solid #3a404c;
  border-radius: 9px;

  font-size: 12px;
  font-weight: 800;

  cursor: pointer;

  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.reset-filter-btn:hover {
  border-color: #ff315b;
  background: rgba(255, 49, 91, 0.08);
  transform: translateY(-1px);
}


/* KEEP FILTER AREA COMPACT */

.radar-controls .radar-filter-box {
  width: 100%;
}

@media (max-width: 900px) {

  .radar-filter-grid {
    align-items: stretch;
  }

  .radar-filter-group {
    width: 100%;
  }

  .radar-filter-group select {
    width: 100%;
  }

  .online-filter-toggle {
    width: 100%;
  }

}

/* ======================================================
   RADAR DISTANCE + LOCATION PRIVACY SIDE BY SIDE
   FINAL OVERRIDE
====================================================== */

.radar-slider-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  gap: 18px !important;

  width: 100% !important;
  padding: 14px 16px !important;

  box-sizing: border-box !important;
}


/* BOTH SLIDER CARDS */

.radar-slider-row .radar-controls {
  flex: 1 1 0 !important;
  width: 50% !important;
  min-width: 0 !important;

  margin: 0 !important;
  padding: 16px 20px !important;

  box-sizing: border-box !important;

  border: 1px solid #252a33 !important;
  border-radius: 12px !important;

  background: #0d1117 !important;
}


/* KEEP TITLE + VALUE ON SAME LINE */

.radar-slider-row .control-title {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;

  width: 100% !important;
  margin-bottom: 12px !important;
}


/* SHORTEN BOTH SLIDERS */

.radar-slider-row input[type="range"] {
  display: block !important;

  width: 72% !important;
  max-width: 440px !important;

  margin: 0 !important;
}


/* KEEP MILE LABELS SAME WIDTH AS SLIDER */

.radar-slider-row .distance-labels {
  display: flex !important;
  justify-content: space-between !important;

  width: 72% !important;
  max-width: 440px !important;

  margin-top: 7px !important;
}


/* PRIVACY HELP */

.radar-slider-row .privacy-help {
  margin-top: 10px !important;
  max-width: 440px !important;
}


/* MOBILE */

@media (max-width: 800px) {

  .radar-slider-row {
    flex-direction: column !important;
  }

  .radar-slider-row .radar-controls {
    width: 100% !important;
  }

  .radar-slider-row input[type="range"],
  .radar-slider-row .distance-labels {
    width: 100% !important;
    max-width: none !important;
  }

}

/* ======================================================
   PROFILE PANEL - FINAL MAP OVERLAY FIX
====================================================== */

.map-card {
  position: relative !important;
  height: 570px !important;
  min-height: 570px !important;
  overflow: hidden !important;
}

#map {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
}


/* PROFILE SLIDE-OUT PANEL */

.profile-panel {
  position: absolute !important;

  top: 0 !important;
  right: 0 !important;

  width: 330px !important;
  height: 100% !important;

  margin: 0 !important;

  z-index: 2000 !important;

  display: block !important;

  background: rgba(11, 14, 20, 0.98) !important;

  border: none !important;
  border-left: 1px solid #313743 !important;

  border-radius: 0 !important;

  overflow: hidden !important;

  box-shadow:
    -12px 0 35px rgba(0, 0, 0, 0.45) !important;

  transform: translateX(105%) !important;

  opacity: 1 !important;
  visibility: visible !important;

  pointer-events: none !important;

  transition:
    transform 0.3s ease !important;
}


/* WHEN VIEW PROFILE IS CLICKED */

.profile-panel.open {
  display: block !important;

  transform: translateX(0) !important;

  pointer-events: auto !important;
}


/* PROFILE CONTENT */

.profile-panel-inner {
  position: relative !important;

  width: 100% !important;
  height: 100% !important;

  padding: 45px 24px 26px !important;

  overflow-y: auto !important;

  text-align: center !important;
}


/* CLOSE BUTTON */

.profile-close,
#profileClose {
  position: absolute !important;

  top: 14px !important;
  right: 14px !important;

  width: 36px !important;
  height: 36px !important;

  z-index: 10 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  border-radius: 50% !important;

  border: 1px solid #343b47 !important;

  background: #171b23 !important;

  color: #ffffff !important;

  font-size: 22px !important;

  cursor: pointer !important;
}


/* KEEP MAP FROM GROWING WHEN PROFILE OPENS */

.content {
  align-items: stretch !important;
}

.map-card .profile-panel {
  box-sizing: border-box !important;
}


/* MOBILE */

@media (max-width: 800px) {

  .map-card {
    height: 500px !important;
    min-height: 500px !important;
  }

  .profile-panel {
    width: min(330px, 90%) !important;
  }

}

/* ======================================================
   MAP LOCATION BUTTON
====================================================== */

.radar-locate-button {
  width: 44px !important;
  height: 44px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  margin-top: 8px !important;

  border: 2px solid #ff315b !important;
  border-radius: 10px !important;

  background: #171b22 !important;
  color: #ff315b !important;

  font-size: 27px !important;
  font-weight: 900 !important;

  cursor: pointer !important;

  box-shadow:
    0 0 0 2px rgba(255, 49, 91, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.40) !important;
}

.radar-locate-button:hover {
  background: #ff315b !important;
  color: #ffffff !important;

  box-shadow:
    0 0 18px rgba(255, 49, 91, 0.55) !important;
}

/* ======================================================
   SEARCH PEOPLE - DIRECTLY UNDER EDIT PROFILE
====================================================== */

.nav .sidebar-search {
  width: calc(100% - 20px) !important;
  margin: 10px 10px 0 !important;
  flex: none !important;
}

.nav .sidebar-search input {
  width: 100% !important;
  min-width: 0 !important;
}

.people-search-results {
  width: calc(100% - 20px);
  margin: 8px 10px 0;
}
/* ======================================================
   PEOPLE SEARCH RESULTS
====================================================== */

.people-search-results {
  width: 100%;
  margin-top: 8px;
  padding: 0 4px;
}

.people-search-result {
  width: 100%;
  padding: 9px 8px;

  display: flex;
  align-items: center;
  gap: 10px;

  border: none;
  border-bottom: 1px solid #20242c;
  border-radius: 9px;

  background: transparent;
  color: white;

  text-align: left;
  cursor: pointer;
}

.people-search-result:hover {
  background: #171b23;
}

.people-search-photo {
  width: 38px;
  height: 38px;

  min-width: 38px;

  border-radius: 50%;
  object-fit: cover;

  border: 2px solid #ff315b;
}

.people-search-info {
  min-width: 0;

  display: flex;
  flex-direction: column;
  gap: 3px;
}

.people-search-info strong {
  font-size: 12px;
  color: #ffffff;
}

.people-search-info span {
  font-size: 10px;
  color: #8d95a2;
}

.people-search-empty {
  padding: 12px 8px;
  color: #777f8c;
  font-size: 11px;
  text-align: center;
}
/* ======================================================
   PRIVATE MESSAGE PHOTO
====================================================== */

.thread-photo-btn {
  flex: 0 0 auto;

  width: 42px;
  height: 42px;

  border: none;
  border-radius: 10px;

  background: #1b2029;
  color: #ffffff;

  font-size: 20px;
  cursor: pointer;
}

.thread-photo-btn:hover {
  background: #252b36;
}

.thread-message-photo {
  display: block;

  width: auto;
  max-width: 280px;
  max-height: 320px;

  object-fit: cover;

  border-radius: 12px;

  cursor: pointer;
}
/* ======================================================
   PRIVATE MESSAGE PHOTO VIEWER
====================================================== */

.thread-photo-wrap {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.thread-message-photo {
  display: block;
  max-width: 280px;
  max-height: 320px;
  border-radius: 12px;
  object-fit: cover;
  cursor: zoom-in;
}

.thread-photo-download {
  display: inline-block;
  width: fit-content;

  color: white;
  text-decoration: none;

  font-size: 12px;
  font-weight: 700;

  opacity: 0.8;
}

.thread-photo-download:hover {
  opacity: 1;
  text-decoration: underline;
}


/* FULL SCREEN PHOTO */

.message-photo-viewer {
  position: fixed;
  inset: 0;

  z-index: 99999;

  display: none;

  align-items: center;
  justify-content: center;

  padding: 40px;

  background: rgba(0, 0, 0, 0.9);
}

.message-photo-viewer.open {
  display: flex;
}

.message-photo-viewer-inner {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;

  max-width: 90vw;
  max-height: 90vh;
}

.message-photo-viewer-image {
  max-width: 90vw;
  max-height: 80vh;

  object-fit: contain;

  border-radius: 12px;
}

.message-photo-viewer-close {
  position: absolute;

  top: -18px;
  right: -18px;

  width: 42px;
  height: 42px;

  border: none;
  border-radius: 50%;

  background: #ff315b;
  color: white;

  font-size: 28px;
  line-height: 1;

  cursor: pointer;
}

.message-photo-viewer-download {
  margin-top: 14px;

  padding: 10px 18px;

  border-radius: 9px;

  background: #ff315b;
  color: white;

  text-decoration: none;
  font-weight: 800;
}
/* ======================================================
   CITY CHAT CLICKABLE NAMES
====================================================== */

.chat-person-name {
  color: #ff315b !important;
  cursor: pointer !important;
  font-weight: 800;
}

.chat-person-name:hover {
  color: #ff6b87 !important;
  text-decoration: underline;
}
/* ======================================================
   PREMIUM PAGE
====================================================== */

.premium-view {
  display: none;
  padding: 32px;
}

.premium-view.active {
  display: block;
}

.premium-page {
  max-width: 1180px;
  margin: 0 auto;
}

.premium-hero {
  text-align: center;
  padding: 40px 20px 30px;
}

.premium-crown {
  font-size: 44px;
  margin-bottom: 10px;
}

.premium-eyebrow {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #ff315b;
  margin-bottom: 10px;
}

.premium-hero h2 {
  margin: 0;
  font-size: 42px;
  color: #ffffff;
}

.premium-hero p {
  max-width: 680px;
  margin: 14px auto 0;
  color: #aab0bb;
  font-size: 16px;
  line-height: 1.6;
}

.premium-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.premium-feature-card {
  background: #10141b;
  border: 1px solid #272d37;
  border-radius: 16px;
  padding: 24px;
  min-height: 200px;
}

.premium-feature-icon {
  font-size: 30px;
  margin-bottom: 14px;
}

.premium-feature-card h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 18px;
}

.premium-feature-card p {
  margin: 0;
  color: #9ea5b1;
  line-height: 1.5;
  font-size: 14px;
}

.premium-comparison {
  margin-top: 28px;
  background: #0e1218;
  border: 1px solid #272d37;
  border-radius: 16px;
  overflow: hidden;
}

.premium-comparison h3 {
  margin: 0;
  padding: 22px;
  color: #ffffff;
  font-size: 20px;
  border-bottom: 1px solid #272d37;
}

.premium-comparison-row {
  display: grid;
  grid-template-columns: 1fr 140px 140px;
  align-items: center;
  min-height: 56px;
  padding: 0 22px;
  border-bottom: 1px solid #20252e;
  color: #c7ccd4;
}

.premium-comparison-row:last-child {
  border-bottom: none;
}

.premium-comparison-header {
  background: #151a22;
  color: #ffffff;
  font-weight: 800;
}

.premium-comparison-row span:nth-child(2),
.premium-comparison-row span:nth-child(3) {
  text-align: center;
}

.premium-check {
  color: #ff315b;
  font-weight: 900;
}

.premium-plan-card {
  max-width: 520px;
  margin: 34px auto 50px;
  padding: 30px;
  text-align: center;
  background:
    linear-gradient(
      145deg,
      rgba(255, 49, 91, 0.16),
      rgba(17, 21, 29, 0.95)
    );
  border: 1px solid #ff315b;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.premium-plan-badge {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: #ff315b;
  color: white;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.premium-plan-card h3 {
  margin: 18px 0 10px;
  color: #ffffff;
  font-size: 24px;
}

.premium-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-top: 8px;
}

.premium-price-dollar {
  color: #ffffff;
  font-size: 22px;
  margin-top: 8px;
}

.premium-price-amount {
  color: #ffffff;
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
}

.premium-price-period {
  align-self: flex-end;
  padding-bottom: 6px;
  color: #9ea5b1;
  font-size: 14px;
}

.premium-cancel-text {
  margin: 12px 0 18px;
  color: #9ea5b1;
}

.premium-upgrade-btn {
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 14px 20px;
  background: #ff315b;
  color: white;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.premium-upgrade-btn:hover {
  background: #ff5475;
}

.premium-test-note {
  margin-top: 12px;
  color: #777f8c;
  font-size: 12px;
}

@media (max-width: 1000px) {
  .premium-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .premium-view {
    padding: 20px;
  }

  .premium-feature-grid {
    grid-template-columns: 1fr;
  }

  .premium-comparison-row {
    grid-template-columns: 1fr 90px 90px;
    padding: 0 14px;
    font-size: 13px;
  }

  .premium-hero h2 {
    font-size: 32px;
  }
}
/* ======================================================
   TRAVEL MODE
====================================================== */

.travel-mode-card {
  margin-top: 22px;
  padding: 24px;
  border: 1px solid #2d3440;
  border-radius: 18px;
  background: rgba(15, 18, 24, 0.96);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
}

.travel-mode-header {
  display: block;
  margin-bottom: 0;
}

.travel-mode-eyebrow {
  margin-bottom: 6px;
  color: #ff315b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
}

.travel-mode-header h3 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 22px;
}

.travel-mode-header p {
  margin: 0;
  color: #9ba4b2;
  font-size: 14px;
}

.travel-premium-badge {
  flex-shrink: 0;
  padding: 7px 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff315b, #b516ff);
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.8px;
}

.travel-mode-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 620px;
}

#travelCity {
  flex: 1;
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid #353c48;
  border-radius: 12px;
  background: #171b23;
  color: #ffffff;
  font-size: 14px;
  outline: none;
}

#travelCity:focus {
  border-color: #ff315b;
}

.travel-mode-button {
  padding: 13px 20px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff315b, #ff2f92);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.travel-mode-button:hover {
  transform: translateY(-1px);
}

@media (max-width: 700px) {
  .travel-mode-controls {
    flex-direction: column;
  }

  .travel-mode-button {
    width: 100%;
  }
}
/* ======================================================
   TRAVEL MODE SEARCH - FINAL LOOK
====================================================== */

.travel-mode-controls {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.travel-city-search-wrap {
  position: relative;
  width: 390px;
  flex: 0 0 390px;
}

#travelCitySearch {
  box-sizing: border-box !important;
  width: 100% !important;
  height: 48px !important;
  padding: 0 16px !important;

  border: 1px solid #ff315b !important;
  border-radius: 12px !important;

  background: #151922 !important;
  color: #ffffff !important;

  font-size: 14px !important;
  font-family: inherit !important;

  outline: none !important;
}

#travelCitySearch::placeholder {
  color: #8f98a7 !important;
}

#travelCitySearch:focus {
  border-color: #ff315b !important;
  box-shadow: 0 0 0 3px rgba(255, 49, 91, 0.12) !important;
}

#travelCityResults {
  position: absolute !important;
  top: 54px !important;
  left: 0 !important;
  right: 0 !important;

  z-index: 5000 !important;

  display: none;

  max-height: 260px !important;
  overflow-y: auto !important;

  border: 1px solid #343b47 !important;
  border-radius: 12px !important;

  background: #151922 !important;

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55) !important;
}

#travelCityResults.open {
  display: block !important;
}

#travelCityResults .travel-city-result {
  display: block !important;

  width: 100% !important;
  min-height: 46px !important;

  padding: 12px 15px !important;

  border: none !important;
  border-bottom: 1px solid #292f39 !important;

  border-radius: 0 !important;

  background: #151922 !important;
  color: #ffffff !important;

  font-family: inherit !important;
  font-size: 14px !important;
  font-weight: 600 !important;

  text-align: left !important;

  cursor: pointer !important;
}

#travelCityResults .travel-city-result:last-child {
  border-bottom: none !important;
}

#travelCityResults .travel-city-result:hover {
  background: #202630 !important;
  color: #ff315b !important;
}

.travel-mode-button {
  flex-shrink: 0;
  height: 48px !important;
  padding: 0 22px !important;
}
/* =========================================
   RADARMEET LOGIN SCREEN
   ========================================= */

   .auth-screen {
    position: fixed;
    inset: 0;
    z-index: 99999;
  
    width: 100%;
    height: 100vh;
  
    background:
      radial-gradient(circle at center, rgba(255, 49, 91, 0.10), transparent 45%),
      #07090d;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    overflow: hidden;
    padding: 30px;
  }
  
  /* ACTIVITY IMAGE CARDS */
  
  .auth-image-card {
    position: relative;
    width: 280px;
    height: 190px;
  
    border-radius: 18px;
    overflow: hidden;
  
    border: 1px solid rgba(255, 49, 91, 0.45);
  
    box-shadow:
      0 15px 40px rgba(0, 0, 0, 0.55),
      0 0 25px rgba(255, 49, 91, 0.12);
  
    background: #11151c;
  }
  
  .auth-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* DARK GRADIENT OVER PHOTO */
  
  .auth-image-card::after {
    content: "";
    position: absolute;
    inset: 0;
  
    background:
      linear-gradient(
        to top,
        rgba(5, 7, 10, 0.95) 0%,
        rgba(5, 7, 10, 0.25) 50%,
        transparent 75%
      );
  
    pointer-events: none;
  }
  
  /* ACTIVITY NAME */
  
  .auth-image-label {
    position: absolute;
    left: 18px;
    bottom: 15px;
  
    z-index: 2;
  
    color: #ffffff;
  
    font-size: 18px;
    font-weight: 800;
  
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
  }
  
  /* BOWLING CARD */
  
  .auth-bowling {
    transform: rotate(-2deg);
  }
  /* =========================================
   RADARMEET FULL LOGIN / SIGNUP LAYOUT
   ========================================= */

.auth-screen {
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999 !important;

  width: 100% !important;
  min-height: 100vh !important;

  display: grid !important;
  grid-template-columns: minmax(210px, 280px) minmax(420px, 520px) minmax(210px, 280px) !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 34px !important;

  padding: 32px 32px 90px !important;

  background:
    radial-gradient(circle at center, rgba(255, 49, 91, 0.11), transparent 35%),
    radial-gradient(circle at 20% 50%, rgba(92, 58, 255, 0.08), transparent 30%),
    radial-gradient(circle at 80% 50%, rgba(255, 49, 91, 0.07), transparent 30%),
    #07090d !important;

  overflow-y: auto !important;
}


/* =========================================
   LEFT / RIGHT IMAGE COLUMNS
   ========================================= */

.auth-activity-column {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  width: 100% !important;
}

.auth-image-card {
  position: relative !important;

  width: 100% !important;
  height: 155px !important;

  border-radius: 18px !important;
  overflow: hidden !important;

  border: 1px solid rgba(255, 49, 91, 0.52) !important;

  background: #11151c !important;

  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.45),
    0 0 22px rgba(255, 49, 91, 0.08) !important;

  transform: none !important;
}

.auth-image-card img {
  width: 100% !important;
  height: 100% !important;

  display: block !important;

  object-fit: cover !important;
  object-position: center !important;
}

.auth-image-card::after {
  content: "" !important;

  position: absolute !important;
  inset: 0 !important;

  background:
    linear-gradient(
      to top,
      rgba(4, 5, 8, 0.97) 0%,
      rgba(4, 5, 8, 0.36) 46%,
      rgba(4, 5, 8, 0.02) 76%
    ) !important;

  pointer-events: none !important;
}

.auth-image-label {
  position: absolute !important;

  left: 16px !important;
  bottom: 13px !important;

  z-index: 3 !important;

  color: #ffffff !important;

  font-size: 16px !important;
  font-weight: 800 !important;

  letter-spacing: 0.2px !important;

  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.95) !important;
}


/* =========================================
   CENTER LOGIN AREA
   ========================================= */

.auth-center {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  width: 100% !important;
}

.auth-card {
  width: 100% !important;
  max-width: 500px !important;

  padding: 32px 34px 28px !important;

  border-radius: 26px !important;

  border: 1px solid rgba(255, 49, 91, 0.65) !important;

  background:
    linear-gradient(
      180deg,
      rgba(20, 24, 32, 0.98),
      rgba(10, 12, 18, 0.98)
    ) !important;

  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.60),
    0 0 40px rgba(255, 49, 91, 0.12) !important;

  backdrop-filter: blur(18px) !important;
}


/* =========================================
   LOGO
   ========================================= */

.auth-logo-icon {
  width: 58px !important;
  height: 58px !important;

  margin: 0 auto 8px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  border-radius: 18px !important;

  border: 1px solid #ff315b !important;

  color: #ff315b !important;

  font-size: 34px !important;
  font-weight: 900 !important;

  box-shadow:
    0 0 22px rgba(255, 49, 91, 0.28) !important;
}

.auth-logo {
  text-align: center !important;

  color: #ffffff !important;

  font-size: 31px !important;
  font-weight: 900 !important;

  letter-spacing: 1px !important;
}

.auth-logo span {
  color: #ff315b !important;
}

.auth-tagline {
  margin-top: 5px !important;
  margin-bottom: 24px !important;

  text-align: center !important;

  color: #8d95a4 !important;

  font-size: 12px !important;
  font-weight: 800 !important;

  letter-spacing: 2px !important;
}


/* =========================================
   LOGIN / SIGNUP TABS
   ========================================= */

.auth-tabs {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;

  padding: 4px !important;
  margin-bottom: 22px !important;

  border-radius: 12px !important;

  background: #0d1016 !important;

  border: 1px solid #242a34 !important;
}

.auth-tab {
  height: 42px !important;

  border: none !important;
  border-radius: 9px !important;

  background: transparent !important;

  color: #8e96a4 !important;

  font-size: 14px !important;
  font-weight: 800 !important;

  cursor: pointer !important;
}

.auth-tab.active {
  background:
    linear-gradient(135deg, #ff315b, #d9254b) !important;

  color: #ffffff !important;

  box-shadow:
    0 5px 18px rgba(255, 49, 91, 0.28) !important;
}


/* =========================================
   FORM
   ========================================= */

.auth-form {
  display: flex !important;
  flex-direction: column !important;

  gap: 9px !important;
}

.auth-form-hidden {
  display: none !important;
}

.auth-form label {
  margin-top: 4px !important;

  color: #d8dce4 !important;

  font-size: 13px !important;
  font-weight: 700 !important;
}

.auth-form > input {
  width: 100% !important;
  height: 46px !important;

  padding: 0 14px !important;

  border-radius: 11px !important;

  border: 1px solid #2d3440 !important;

  outline: none !important;

  background: #0c0f15 !important;

  color: #ffffff !important;

  font-size: 14px !important;
}

.auth-form > input:focus {
  border-color: #ff315b !important;

  box-shadow:
    0 0 0 3px rgba(255, 49, 91, 0.10) !important;
}

.auth-form > input::placeholder {
  color: #666f7c !important;
}


/* =========================================
   REMEMBER + FORGOT PASSWORD
   ========================================= */

.auth-options {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;

  margin-top: 4px !important;
  margin-bottom: 4px !important;
}

.remember-login {
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;

  margin: 0 !important;

  color: #9ca3af !important;

  font-size: 12px !important;
  font-weight: 600 !important;
}

.remember-login input {
  accent-color: #ff315b !important;
}

.forgot-password {
  border: none !important;

  background: transparent !important;

  color: #ff5576 !important;

  font-size: 12px !important;
  font-weight: 700 !important;

  cursor: pointer !important;
}


/* =========================================
   MAIN BUTTON
   ========================================= */

.auth-main-button {
  width: 100% !important;
  height: 47px !important;

  margin-top: 6px !important;

  border: none !important;
  border-radius: 11px !important;

  background:
    linear-gradient(135deg, #ff315b, #d92149) !important;

  color: #ffffff !important;

  font-size: 15px !important;
  font-weight: 900 !important;

  cursor: pointer !important;

  box-shadow:
    0 8px 25px rgba(255, 49, 91, 0.25) !important;
}

.auth-main-button:hover {
  filter: brightness(1.08) !important;
}


/* =========================================
   DIVIDER
   ========================================= */

.auth-divider {
  position: relative !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  margin: 10px 0 8px !important;

  color: #687180 !important;

  font-size: 11px !important;
  font-weight: 700 !important;
}

.auth-divider::before,
.auth-divider::after {
  content: "" !important;

  flex: 1 !important;

  height: 1px !important;

  background: #272d37 !important;
}

.auth-divider span {
  padding: 0 12px !important;
}


/* =========================================
   GOOGLE BUTTON
   ========================================= */

.google-login-button {
  width: 100% !important;
  height: 46px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;

  border: 1px solid #303743 !important;
  border-radius: 11px !important;

  background: #12161d !important;

  color: #ffffff !important;

  font-size: 14px !important;
  font-weight: 700 !important;

  cursor: pointer !important;
}

.google-login-button:hover {
  background: #181d26 !important;
}

.google-g {
  width: 24px !important;
  height: 24px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  border-radius: 50% !important;

  background: #ffffff !important;

  color: #4285f4 !important;

  font-weight: 900 !important;
}


/* =========================================
   SIGNUP TERMS
   ========================================= */

.auth-terms-check {
  display: flex !important;
  align-items: flex-start !important;

  gap: 9px !important;

  margin-top: 7px !important;

  color: #9098a5 !important;

  font-size: 11px !important;
  line-height: 1.45 !important;
}

.auth-terms-check input {
  margin-top: 2px !important;

  accent-color: #ff315b !important;
}


/* =========================================
   18+ + FOOTER
   ========================================= */

.auth-age-notice {
  margin-top: 20px !important;

  text-align: center !important;

  color: #767f8d !important;

  font-size: 11px !important;
}

.auth-footer-links {
  margin-top: 9px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  gap: 8px !important;

  color: #4f5867 !important;
}

.auth-footer-links button {
  border: none !important;

  background: transparent !important;

  color: #7e8794 !important;

  font-size: 11px !important;

  cursor: pointer !important;
}


/* =========================================
   BOTTOM FEATURES
   ========================================= */

.auth-features {
  position: absolute !important;

  left: 50% !important;
  bottom: 22px !important;

  transform: translateX(-50%) !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  gap: 42px !important;

  width: 100% !important;
}

.auth-feature {
  display: flex !important;
  align-items: center !important;

  gap: 8px !important;

  color: #7f8794 !important;

  font-size: 12px !important;
}

.auth-feature span {
  font-size: 17px !important;
}

.auth-feature strong {
  color: #aab1bc !important;

  font-weight: 700 !important;
}


/* =========================================
   MOBILE / SMALLER SCREENS
   ========================================= */

@media (max-width: 1180px) {

  .auth-screen {
    grid-template-columns: 190px minmax(400px, 500px) 190px !important;

    gap: 18px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .auth-image-card {
    height: 135px !important;
  }

  .auth-image-label {
    font-size: 14px !important;
  }
}


@media (max-width: 900px) {

  .auth-screen {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 24px !important;
  }

  .auth-activity-column {
    display: none !important;
  }

  .auth-center {
    max-width: 500px !important;
  }

  .auth-features {
    display: none !important;
  }
}


@media (max-width: 520px) {

  .auth-screen {
    padding: 14px !important;
    align-items: flex-start !important;
  }

  .auth-card {
    margin-top: 15px !important;

    padding: 26px 20px 24px !important;

    border-radius: 20px !important;
  }

  .auth-logo {
    font-size: 27px !important;
  }

  .auth-logo-icon {
    width: 52px !important;
    height: 52px !important;

    font-size: 30px !important;
  }
}
/* =========================================================
   RADARMEET LOGIN - CINEMATIC COLLAGE UPGRADE
   ========================================================= */

   .auth-screen {
    grid-template-columns: 320px 520px 320px !important;
    gap: 22px !important;
  
    background:
      radial-gradient(circle at 50% 42%, rgba(255, 35, 85, 0.17), transparent 32%),
      radial-gradient(circle at 18% 45%, rgba(91, 62, 255, 0.12), transparent 30%),
      radial-gradient(circle at 82% 45%, rgba(255, 35, 85, 0.10), transparent 30%),
      linear-gradient(180deg, #05070b 0%, #08090e 55%, #050609 100%) !important;
  }
  
  
  /* BIGGER, MORE CINEMATIC PHOTO CARDS */
  
  .auth-image-card {
    height: 165px !important;
  
    border-radius: 20px !important;
  
    border: 1px solid rgba(255, 45, 90, 0.72) !important;
  
    box-shadow:
      0 20px 45px rgba(0, 0, 0, 0.65),
      0 0 26px rgba(255, 30, 85, 0.15) !important;
  
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease !important;
  }
  
  .auth-image-card:hover {
    transform: scale(1.035) !important;
  
    box-shadow:
      0 25px 55px rgba(0, 0, 0, 0.75),
      0 0 38px rgba(255, 30, 85, 0.28) !important;
  }
  
  
  /* LEFT SIDE FLOATING COLLAGE */
  
  .auth-left-column {
    gap: 14px !important;
  }
  
  .auth-left-column .auth-image-card:nth-child(1) {
    transform: translateX(24px) rotate(-2.2deg) !important;
  }
  
  .auth-left-column .auth-image-card:nth-child(2) {
    transform: translateX(-8px) rotate(1.3deg) !important;
  }
  
  .auth-left-column .auth-image-card:nth-child(3) {
    transform: translateX(18px) rotate(-1.1deg) !important;
  }
  
  .auth-left-column .auth-image-card:nth-child(4) {
    transform: translateX(-4px) rotate(1.8deg) !important;
  }
  
  
  /* RIGHT SIDE FLOATING COLLAGE */
  
  .auth-right-column {
    gap: 14px !important;
  }
  
  .auth-right-column .auth-image-card:nth-child(1) {
    transform: translateX(-22px) rotate(2deg) !important;
  }
  
  .auth-right-column .auth-image-card:nth-child(2) {
    transform: translateX(8px) rotate(-1.5deg) !important;
  }
  
  .auth-right-column .auth-image-card:nth-child(3) {
    transform: translateX(-16px) rotate(1deg) !important;
  }
  
  .auth-right-column .auth-image-card:nth-child(4) {
    transform: translateX(5px) rotate(-1.8deg) !important;
  }
  
  
  /* KEEP HOVER EFFECT WHILE PRESERVING ROTATION */
  
  .auth-left-column .auth-image-card:hover,
  .auth-right-column .auth-image-card:hover {
    filter: brightness(1.12) saturate(1.08) !important;
  }
  
  
  /* IMAGE LABELS BIGGER */
  
  .auth-image-label {
    left: 18px !important;
    bottom: 15px !important;
  
    font-size: 18px !important;
    font-weight: 900 !important;
  
    letter-spacing: 0.3px !important;
  
    text-shadow:
      0 3px 10px #000,
      0 0 8px rgba(255,255,255,0.18) !important;
  }
  
  
  /* CENTER CARD - MORE PREMIUM / NEON */
  
  .auth-card {
    position: relative !important;
  
    padding: 32px 36px 28px !important;
  
    border-radius: 28px !important;
  
    border: 1px solid rgba(255, 40, 85, 0.8) !important;
  
    background:
      linear-gradient(
        145deg,
        rgba(23, 27, 37, 0.98),
        rgba(10, 12, 18, 0.99)
      ) !important;
  
    box-shadow:
      0 35px 80px rgba(0, 0, 0, 0.72),
      0 0 55px rgba(255, 30, 80, 0.18),
      inset 0 1px 0 rgba(255,255,255,0.04) !important;
  }
  
  
  /* EXTRA GLOW BEHIND CENTER CARD */
  
  .auth-card::before {
    content: "" !important;
  
    position: absolute !important;
  
    inset: -45px !important;
  
    z-index: -1 !important;
  
    border-radius: 60px !important;
  
    background:
      radial-gradient(
        circle,
        rgba(255, 40, 90, 0.20),
        transparent 65%
      ) !important;
  
    filter: blur(22px) !important;
  
    pointer-events: none !important;
  }
  
  
  /* LOGO MORE DRAMATIC */
  
  .auth-logo-icon {
    width: 64px !important;
    height: 64px !important;
  
    border-radius: 20px !important;
  
    background:
      linear-gradient(
        145deg,
        rgba(255, 49, 91, 0.15),
        rgba(255, 49, 91, 0.03)
      ) !important;
  
    box-shadow:
      0 0 30px rgba(255, 49, 91, 0.35),
      inset 0 0 18px rgba(255, 49, 91, 0.08) !important;
  }
  
  .auth-logo {
    font-size: 34px !important;
    letter-spacing: 2px !important;
  }
  
  .auth-tagline {
    margin-bottom: 26px !important;
  }
  
  
  /* MAKE LOGIN BUTTON POP MORE */
  
  .auth-main-button {
    height: 50px !important;
  
    background:
      linear-gradient(
        90deg,
        #ff315b,
        #ff2354,
        #e81949
      ) !important;
  
    box-shadow:
      0 10px 28px rgba(255, 35, 80, 0.34) !important;
  }
  
  
  /* DARK GLASS INPUTS */
  
  .auth-form > input {
    height: 48px !important;
  
    background:
      rgba(8, 11, 16, 0.92) !important;
  
    border:
      1px solid rgba(107, 118, 136, 0.35) !important;
  }
  
  
  /* BOTTOM FEATURES MORE VISIBLE */
  
  .auth-features {
    bottom: 18px !important;
  
    gap: 65px !important;
  }
  
  .auth-feature {
    padding: 9px 15px !important;
  
    border-radius: 20px !important;
  
    background:
      rgba(13, 16, 22, 0.72) !important;
  
    border:
      1px solid rgba(255,255,255,0.05) !important;
  
    backdrop-filter: blur(10px) !important;
  }
  
  .auth-feature strong {
    color: #c8cdd6 !important;
  }
  
  
  /* RESPONSIVE */
  
  @media (max-width: 1250px) {
  
    .auth-screen {
      grid-template-columns: 240px 500px 240px !important;
    }
  
    .auth-image-card {
      height: 145px !important;
    }
  
  }
  
  
  @media (max-width: 950px) {
  
    .auth-activity-column {
      display: none !important;
    }
  
    .auth-screen {
      display: flex !important;
    }
  
    .auth-card {
      max-width: 500px !important;
    }
  
  }
  /* =========================================
   LOG OUT BUTTON
   ========================================= */

.logout-button {
  height: 42px !important;
  padding: 0 20px !important;
  margin: 0 !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  background: rgba(255, 49, 91, 0.08) !important;
  border: 1px solid #ff315b !important;
  border-radius: 9px !important;

  color: #ff4f72 !important;
  font-family: inherit !important;
  font-size: 14px !important;
  font-weight: 800 !important;

  cursor: pointer !important;
  transition: 0.2s ease !important;
}

.logout-button:hover {
  background: #ff315b !important;
  color: white !important;
  box-shadow: 0 0 18px rgba(255, 49, 91, 0.35) !important;
}
/* =========================================
   RADARMEET TERMS / PRIVACY
========================================= */

.legal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200000;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 24px;

  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
}

.legal-overlay.open {
  display: flex;
}

.legal-modal {
  position: relative;

  width: min(760px, 96vw);
  max-height: 86vh;

  padding: 28px;

  border: 1px solid rgba(255, 49, 91, 0.65);
  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      rgba(20, 24, 32, 0.99),
      rgba(9, 11, 16, 0.99)
    );

  color: #ffffff;

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.72),
    0 0 40px rgba(255, 49, 91, 0.14);

  overflow: hidden;
}

.legal-close {
  position: absolute;
  top: 12px;
  right: 14px;

  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #343b47;
  border-radius: 50%;

  background: #171b23;
  color: #ffffff;

  font-size: 22px;
  cursor: pointer;

  z-index: 5;
}

.legal-close:hover {
  background: #ff315b;
  border-color: #ff315b;
}

.legal-tabs {
  display: flex;
  gap: 8px;

  margin-right: 48px;
  margin-bottom: 20px;
}

.legal-tab {
  padding: 11px 18px;

  border: 1px solid #303641;
  border-radius: 10px;

  background: #0b0e13;
  color: #8e96a4;

  font-family: inherit;
  font-size: 13px;
  font-weight: 800;

  cursor: pointer;
}

.legal-tab.active {
  background:
    linear-gradient(
      135deg,
      #ff315b,
      #d92149
    );

  border-color: #ff315b;
  color: #ffffff;

  box-shadow:
    0 6px 18px rgba(255, 49, 91, 0.22);
}

.legal-content {
  max-height: 68vh;
  overflow-y: auto;

  padding-right: 15px;

  color: #b6bdc9;

  font-size: 14px;
  line-height: 1.65;
}

.legal-content h2 {
  margin: 0 0 4px;

  color: #ffffff;

  font-size: 26px;
}

.legal-content h3 {
  margin-top: 23px;
  margin-bottom: 7px;

  color: #ff5576;

  font-size: 16px;
}

.legal-content p {
  margin: 0 0 12px;
}

.legal-updated {
  color: #697382 !important;
  font-size: 12px;
}

.legal-hidden {
  display: none !important;
}

/* nicer scrollbar */

.legal-content::-webkit-scrollbar {
  width: 8px;
}

.legal-content::-webkit-scrollbar-track {
  background: #0c0f14;
  border-radius: 20px;
}

.legal-content::-webkit-scrollbar-thumb {
  background: #343b47;
  border-radius: 20px;
}

.legal-content::-webkit-scrollbar-thumb:hover {
  background: #ff315b;
}

@media (max-width: 600px) {
  .legal-modal {
    padding: 22px 18px;
  }

  .legal-tabs {
    flex-direction: column;
    margin-right: 44px;
  }

  .legal-content h2 {
    font-size: 22px;
  }
}
/* =========================================
   RADARMEET HELP & SUPPORT
========================================= */

.help-view {
  display: none;
  width: 100%;
  padding: 28px;
  box-sizing: border-box;
}

.help-view.active {
  display: block;
}

.help-page {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.help-header {
  margin-bottom: 26px;
}

.help-eyebrow {
  margin-bottom: 7px;
  color: #ff315b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
}

.help-header h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 32px;
}

.help-header p {
  margin: 0;
  color: #8e96a4;
  font-size: 15px;
}


/* HELP CARDS */

.help-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.help-card {
  padding: 22px;

  border: 1px solid #292f39;
  border-radius: 16px;

  background:
    linear-gradient(
      145deg,
      rgba(24, 28, 37, 0.96),
      rgba(13, 16, 22, 0.96)
    );

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.help-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 49, 91, 0.55);

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.25),
    0 0 20px rgba(255, 49, 91, 0.06);
}

.help-icon {
  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 14px;

  border: 1px solid rgba(255, 49, 91, 0.28);
  border-radius: 12px;

  background: rgba(255, 49, 91, 0.08);

  font-size: 22px;
}

.help-card h3 {
  margin: 0 0 8px;

  color: #ffffff;

  font-size: 16px;
}

.help-card p {
  margin: 0;

  color: #9aa2af;

  font-size: 13px;
  line-height: 1.65;
}


/* EMERGENCY WARNING */

.help-emergency {
  margin-top: 18px;
  padding: 18px 20px;

  border: 1px solid rgba(255, 176, 32, 0.35);
  border-radius: 14px;

  background: rgba(255, 176, 32, 0.06);
}

.help-emergency strong {
  color: #ffbd45;
  font-size: 14px;
}

.help-emergency p {
  margin: 7px 0 0;

  color: #aab1bc;

  font-size: 13px;
  line-height: 1.6;
}


/* CONTACT SUPPORT */

.help-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  margin-top: 18px;
  padding: 22px;

  border: 1px solid #292f39;
  border-radius: 16px;

  background: #11151c;
}

.help-contact h3 {
  margin: 0 0 6px;

  color: #ffffff;

  font-size: 18px;
}

.help-contact p {
  margin: 0;

  color: #8e96a4;

  font-size: 13px;
}

.help-contact-button {
  flex-shrink: 0;

  padding: 12px 20px;

  border: 1px solid #ff315b;
  border-radius: 10px;

  background:
    linear-gradient(
      135deg,
      #ff315b,
      #d92149
    );

  color: #ffffff;

  font-family: inherit;
  font-size: 13px;
  font-weight: 900;

  cursor: pointer;

  box-shadow:
    0 7px 20px rgba(255, 49, 91, 0.18);
}

.help-contact-button:hover {
  transform: translateY(-1px);
  box-shadow:
    0 9px 24px rgba(255, 49, 91, 0.28);
}


/* DELETE ACCOUNT SIDEBAR BUTTON */

.delete-account-nav {
  color: #ff6b7f !important;
}

.delete-account-nav:hover {
  color: #ffffff !important;
  background: rgba(255, 49, 91, 0.12) !important;
}


/* MOBILE */

@media (max-width: 800px) {

  .help-view {
    padding: 18px;
  }

  .help-grid {
    grid-template-columns: 1fr;
  }

  .help-contact {
    flex-direction: column;
    align-items: stretch;
  }

  .help-contact-button {
    width: 100%;
  }

}
/* =========================================
   CANCEL PREMIUM BUTTON
========================================= */

.premium-manage-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.premium-cancel-btn {
  width: 100%;
  height: 46px;
  border: 1px solid rgba(255, 49, 91, 0.45);
  border-radius: 10px;
  background: transparent;
  color: #ff5b79;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.premium-cancel-btn:hover {
  background: rgba(255, 49, 91, 0.10);
  border-color: #ff315b;
  color: #ffffff;
  transform: translateY(-1px);
}

.premium-cancel-btn:active {
  transform: translateY(0);
}