
.profile-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: clamp(16px, 4vh, 40px) 20px;
  border-radius: 20px;
  margin-bottom: clamp(16px, 3vh, 30px);
  display: flex;
  align-items: center;
  gap: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.profile-avatar {
  width: clamp(80px, 12vh, 144px);
  height: clamp(80px, 12vh, 144px);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #3b82f6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(28px, 5vh, 48px);
  font-weight: bold;
  color: white;
  border: 4px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px var(--border-strong);
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.profile-info {
  flex: 1;
  min-width: 0;
}

.profile-username {
  font-size: clamp(22px, 4vh, 32px);
  font-weight: bold;
  color: #fff;
  margin-bottom: 8px;
  
  overflow-wrap: anywhere;
}

.profile-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
}

.profile-level {
  background: #4ade80;
  color: #000;
  padding: clamp(4px, 1vh, 6px) clamp(10px, 2vh, 16px);
  border-radius: 20px;
  font-weight: bold;
  font-size: clamp(12px, 1.6vh, 14px);
}

.profile-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: clamp(5px, 1.2vh, 8px) clamp(10px, 2vh, 16px);
  border-radius: 20px;
  font-weight: 700;
}


.quick-play-section {
  background: linear-gradient(135deg, var(--accent) 0%, #3b82f6 100%);
  padding: clamp(20px, 5vh, 40px);
  border-radius: 20px;
  margin-bottom: clamp(20px, 4vh, 40px);
  text-align: center;
  box-shadow: 0 10px 40px var(--accent-glow);
}

.quick-play-btn {
  background: white;
  color: var(--accent);
  font-size: clamp(16px, 2.4vh, 20px);
  font-weight: bold;
  padding: clamp(12px, 2.6vh, 20px) clamp(32px, 6vh, 60px);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.quick-play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.quick-play-description {
  color: rgba(255, 255, 255, 0.9);
  margin-top: clamp(8px, 2vh, 15px);
  font-size: clamp(12px, 1.8vh, 14px);
}

.ranked-search-status {
  margin: clamp(18px, 3vh, 26px) auto 0;
  max-width: 520px;
}

.ranked-search-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.ranked-search-metric {
  min-height: 74px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ranked-search-value {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
}

.ranked-search-label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 600;
  margin-top: 6px;
  text-transform: uppercase;
}

.ranked-cancel-btn {
  min-height: 42px;
  padding: 10px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(17, 24, 39, 0.28);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ranked-cancel-btn:hover:not(:disabled) {
  background: rgba(17, 24, 39, 0.42);
  transform: translateY(-1px);
}

.ranked-cancel-btn:disabled,
.quick-play-btn:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  transform: none;
}


.match-accept-content {
  text-align: center;
}

.match-accept-timer {
  font-size: 56px;
  font-weight: 900;
  color: #4ade80;
  line-height: 1.1;
  margin: 10px 0 4px;
}

.match-accept-timer.urgent {
  color: #f87171;
}

.match-accept-count {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.match-accept-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.match-accept-btn {
  min-height: 48px;
  border: none;
  border-radius: 14px;
  background: #4ade80;
  color: #000;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.match-accept-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(74, 222, 128, 0.35);
}

.match-accept-btn.accepted {
  background: rgba(74, 222, 128, 0.25);
  color: #4ade80;
  cursor: default;
}

.match-decline-btn {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  background: rgba(248, 113, 113, 0.12);
  color: #f87171;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.match-decline-btn:hover:not(:disabled) {
  background: rgba(248, 113, 113, 0.24);
}

.match-accept-btn:disabled,
.match-decline-btn:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}


.lobby-list-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.lobby-list-title {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}



.server-indicator {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 5px 10px;
  border-radius: 999px;
  white-space: nowrap;
  color: #7dd3fc;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  text-decoration: none;
}

.server-indicator:hover,
.server-indicator:focus-visible {
  border-color: rgba(56, 189, 248, 0.7);
  color: #bae6fd;
}

.create-lobby-btn {
  background: #4ade80;
  color: #000;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.create-lobby-btn:hover {
  background: var(--success);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 222, 128, 0.4);
}


.lobbies-table {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  --lobby-grid-template: 2.5fr 1fr 1fr 2.5fr 1fr;
}


.table-header {
  display: grid;
  grid-template-columns: var(--lobby-grid-template);
  gap: 15px;
  padding: 15px 20px;
  background: rgba(139, 92, 246, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-items: center;
}

.table-header > div:first-child {
  text-align: left;
}

.table-header > div:not(:first-child) {
  text-align: center;
}


.table-body {
  display: flex;
  flex-direction: column;
}


.table-row {
  display: grid;
  grid-template-columns: var(--lobby-grid-template);
  gap: 15px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
  align-items: center;
}

.table-row > .column-voting,
.table-row > .column-day1,
.table-row > .column-status {
  justify-content: center;
  text-align: center;
}

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

.table-row:hover {
  background: var(--accent-bg);
}


.column-name {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}

.lobby-name {
  font-weight: 600;
  color: #fff;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.game-speed-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.speed-classic {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}

.speed-turbo {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
}

.speed-mix {
  background: rgba(168, 85, 247, 0.2);
  color: var(--accent-light);
}

.lock-icon {
  font-size: 18px;
  opacity: 0.9;
}


.column-voting,
.column-day1 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #d1d5db;
}


.mobile-label {
  display: none;
}

.mobile-params-row {
  display: none;
}


.column-players {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.player-icons-container {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.players-grid {
  display: grid;
  grid-template-columns: repeat(5, 32px);
  grid-template-rows: repeat(2, 32px);
  gap: 4px;
}

.judge-icon-wrapper {
  display: flex;
  align-items: center;
  padding-left: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.player-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #3b82f6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: white;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  cursor: help;
  transition: all 0.2s ease;
}

.player-icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.player-icon:hover {
  transform: scale(1.15);
  z-index: 10;
  border-color: var(--accent);
}

.player-icon.empty-slot {
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.3);
}

.player-icon.judge {
  background: linear-gradient(135deg, var(--warning) 0%, #f59e0b 100%);
  border-color: rgba(251, 191, 36, 0.5);
}


.player-tooltip {
  position: absolute;
  bottom: 105%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 11px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 100;
}

.player-icon:hover .player-tooltip {
  opacity: 1;
}

.player-count-text {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 0;
  text-align: center;
  white-space: nowrap;
}


.column-status {
  display: flex;
  justify-content: center;
}

.status-badge {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.status-waiting {
  background: rgba(234, 179, 8, 0.2);
  color: var(--warning);
}

.status-ingame {
  background: rgba(239, 68, 68, 0.2);
  color: var(--danger);
}


.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}


.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.pagination-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.pagination button {
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pagination button:hover:not(:disabled) {
  background: var(--border);
  border-color: var(--border-strong);
}

.pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-info {
  color: var(--text-muted);
  font-weight: 600;
}

.empty-state-icon {
  font-size: 64px;
  margin-bottom: 20px;
  opacity: 0.3;
}


.loading {
  text-align: center;
  padding: 40px;
  color: var(--text-muted);
}


.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(4px);
}

.modal-content {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 1px solid var(--accent-glow);
  border-radius: 20px;
  padding: 40px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-title {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
  text-align: center;
}

.modal-subtitle {
  color: var(--text-muted);
  margin-bottom: 30px;
  text-align: center;
  font-size: 14px;
}

.password-input {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.password-input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.password-error {
  color: var(--danger);
  font-size: 14px;
  margin-bottom: 15px;
  text-align: center;
}

.modal-buttons {
  display: flex;
  gap: 15px;
}

.modal-buttons .btn {
  flex: 1;
  padding-left: 16px;
  padding-right: 16px;
}





@media (max-width: 560px) {
  .ranked-search-metrics {
    grid-template-columns: 1fr;
  }

  .ranked-search-value {
    font-size: 22px;
  }
}


.live-streams-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 6px;
  padding: 12px 16px;
  background: rgba(145, 71, 255, 0.10);
  border: 1px solid rgba(145, 71, 255, 0.35);
  border-radius: 14px;
}

.live-streams-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #d8b4fe;
  white-space: nowrap;
}

.live-streams-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.live-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(145, 71, 255, 0.16);
  border: 1px solid rgba(145, 71, 255, 0.45);
  color: #e9d5ff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.15s ease;
}

.live-chip:hover {
  background: rgba(145, 71, 255, 0.32);
  border-color: rgba(145, 71, 255, 0.7);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 6px rgba(239, 68, 68, 0.8);
  animation: live-pulse 1.6s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.live-chip-room {
  color: var(--accent-light);
  font-weight: 500;
}

.lobby-tabs {
  display: flex;
  gap: 8px;
  margin-left: auto;
  margin-right: 14px;
}

.lobby-tab {
  padding: 8px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.15s ease;
}

.lobby-tab.active {
  background: rgba(139, 92, 246, 0.18);
  border-color: rgba(139, 92, 246, 0.55);
  color: var(--accent-light);
}

.game-speed-badge.speed-ranked {
  background: rgba(250, 204, 21, 0.14);
  border: 1px solid rgba(250, 204, 21, 0.45);
  color: #facc15;
}

.table-row-ranked {
  cursor: default;
}


.lobby-list-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.lobby-tabs {
  margin-left: 0;
  margin-right: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  padding: 3px;
}

.lobby-tab {
  border: none;
  background: transparent;
}

.ranked-list-hint {
  color: var(--text-muted);
  font-size: 13px;
  max-width: 340px;
  text-align: right;
}






@media (min-width: 769px) and (max-width: 1200px) {
    


    .table-header,
    .table-row {
        grid-template-columns: 2fr 0.9fr 0.9fr 2.4fr 0.9fr;
        gap: 10px;
        font-size: 12px;
    }

    .players-grid {
        grid-template-columns: repeat(5, 28px);
        grid-template-rows: repeat(2, 28px);
        gap: 3px;
    }

    .player-icon {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
}

@media (max-width: 900px) {
    .lobbies-table {
        background: transparent;
        border: none;
        overflow: visible;
    }

    .table-header {
        display: none;
    }

    .table-body {
        gap: 12px;
    }

    .table-row {
        display: flex;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        padding: 12px;
        gap: 10px;
    }

    
    .column-name {
        order: 1;
    }

    .lobby-name {
        font-size: 18px;
    }

    
    .table-row > .column-voting,
    .table-row > .column-day1 {
        display: none;
    }

    
    .mobile-label {
        display: block;
        color: var(--text-muted);
        font-size: 10px;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 3px;
    }

    
    .mobile-params-row {
        order: 2;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 8px;
        width: 100%;
    }

    
    .column-voting span:not(.mobile-label),
    .column-day1 span:not(.mobile-label) {
        font-size: 12px;
        font-weight: 500;
    }

    
    .column-voting {
        flex-direction: column;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        background: rgba(255, 255, 255, 0.05);
        padding: 8px;
        border-radius: 8px;
        flex: 1;
        min-width: 0;
    }

    
    .column-day1 {
        flex-direction: column;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        background: rgba(255, 255, 255, 0.05);
        padding: 8px;
        border-radius: 8px;
        flex: 1;
        min-width: 0;
    }

    
    .column-status {
        order: 3;
        justify-content: flex-start !important;
    }

    
    .column-players {
        order: 4;
        width: 100%;
        align-items: flex-start;
    }

    



    .player-icons-container {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-start;
        width: 100%;
    }

    .player-count-text {
        margin-left: 0;
        width: 100%;
    }

    
    .players-grid {
        grid-template-columns: repeat(5, minmax(0, 40px));
        grid-auto-rows: 40px;
        gap: 6px;
        width: auto;
        max-width: 100%;
    }

    .judge-icon-wrapper {
        border-left: none;
        padding-left: 0;
        margin-top: 8px;
    }

    .player-icon {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}





.profile-header {
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 4vw, 32px);
  border: 1px solid rgba(167, 139, 250, .28);
  background:
    radial-gradient(circle at 100% 0%, rgba(59, 130, 246, .18), transparent 34%),
    linear-gradient(145deg, rgba(30, 41, 68, .86), rgba(15, 20, 38, .92));
  box-shadow: 0 18px 46px rgba(2, 6, 23, .28);
}

.profile-level {
  color: #bbf7d0;
  border: 1px solid rgba(74, 222, 128, .28);
  background: rgba(22, 163, 74, .16);
}

.profile-rating {
  border: 1px solid rgba(167, 139, 250, .25);
  background: rgba(76, 29, 149, .16);
}

.quick-play-section {
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid rgba(167, 139, 250, .36);
  background:
    radial-gradient(circle at 18% 0%, rgba(139, 92, 246, .34), transparent 38%),
    linear-gradient(135deg, rgba(49, 29, 112, .56), rgba(30, 58, 138, .34));
  box-shadow: 0 20px 50px rgba(30, 27, 75, .3);
}

.quick-play-btn {
  min-height: 54px;
  padding: 15px clamp(30px, 7vw, 64px);
  border: 1px solid rgba(224, 231, 255, .45);
  color: #fff;
  background: linear-gradient(135deg, var(--accent-strong), #2563eb);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(49, 29, 112, .34);
}

.quick-play-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #6d28d9, #1d4ed8);
  box-shadow: 0 14px 34px rgba(49, 29, 112, .44);
}

.quick-play-description { color: rgba(237, 242, 255, .76); }

.lobby-list-header {
  padding-top: 14px;
  border-top: 1px solid rgba(148, 163, 184, .14);
}

.create-lobby-btn {
  min-height: 46px;
  padding: 11px 20px;
  border: 1px solid rgba(196, 181, 253, .38);
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-strong), #2563eb);
  box-shadow: 0 8px 22px rgba(76, 29, 149, .25);
}

.create-lobby-btn:hover {
  background: linear-gradient(135deg, #6d28d9, #1d4ed8);
  box-shadow: 0 12px 28px rgba(76, 29, 149, .38);
}

.lobbies-table {
  border-color: rgba(148, 163, 184, .18);
  border-radius: 18px;
  background: rgba(15, 23, 42, .48);
}

.table-header {
  background: linear-gradient(90deg, rgba(76, 29, 149, .3), rgba(30, 58, 138, .18));
  color: rgba(226, 232, 240, .7);
}

.table-row:hover { background: rgba(139, 92, 246, .12); }

.empty-state {
  padding: 42px 20px;
  border: 1px dashed rgba(167, 139, 250, .28);
  border-radius: 18px;
  background: rgba(15, 23, 42, .32);
}

@media (max-width: 900px) {
  .table-row {
    border-color: rgba(148, 163, 184, .18);
    background: linear-gradient(145deg, rgba(30, 41, 59, .46), rgba(15, 23, 42, .48));
  }
}
