:root {
  --v-bg-main: #060810;
  --v-bg-surface: rgba(12, 17, 33, 0.7);
  --v-bg-card: rgba(19, 26, 48, 0.45);
  --v-bg-card-hover: rgba(28, 38, 71, 0.75);
  --v-bg-input: rgba(8, 12, 26, 0.85);
  
  --v-color-primary: #e1135f;
  --v-color-primary-hover: #be0c4b;
  --v-color-secondary: #f35ba2;
  --v-color-accent: #10b981;
  --v-color-rating: #f59e0b;
  
  --v-text-main: #f8fafc;
  --v-text-muted: #94a3b8;
  --v-text-dim: #64748b;
  
  --v-border-color: rgba(255, 255, 255, 0.06);
  --v-border-hover: rgba(225, 19, 95, 0.45);
  
  --v-radius-sm: 6px;
  --v-radius-md: 10px;
  --v-radius-lg: 16px;
  
  --v-blur-glass: 16px;
  --v-shadow-glow: 0 0 25px rgba(225, 19, 95, 0.2);
  --v-shadow-card: 0 10px 30px rgba(0, 0, 0, 0.55);
  
  --v-font-sans: 'Lexend', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Microsoft YaHei", sans-serif;
}


*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body.v-portal-shell {
  font-family: var(--v-font-sans);
  background-color: var(--v-bg-main);
  color: var(--v-text-main);
  line-height: 1.5;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 15%, rgba(225, 19, 95, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 85%, rgba(243, 91, 162, 0.03) 0%, transparent 40%);
  background-attachment: fixed;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
  transition: all 0.25s ease;
}


::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--v-bg-main);
}
::-webkit-scrollbar-thumb {
  background: var(--v-bg-card);
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--v-color-primary);
}


.v-header {
  position: sticky;
  top: 0;
  z-index: 900;
  backdrop-filter: blur(var(--v-blur-glass));
  -webkit-backdrop-filter: blur(var(--v-blur-glass));
  background-color: var(--v-bg-surface);
  border-bottom: 1px solid var(--v-border-color);
  padding: 16px 0;
}

.v-header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.v-brand-area {
  flex-shrink: 0;
}

.v-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.v-logo-box {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--v-color-secondary), var(--v-color-primary));
  border-radius: var(--v-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 4px 14px rgba(225, 19, 95, 0.35);
  transition: transform 0.3s ease;
}

.v-logo-link:hover .v-logo-box {
  transform: scale(1.06) rotate(5deg);
}

h1 {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(to right, var(--v-text-main), var(--v-color-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}


.v-search-box {
  flex: 1;
  max-width: 540px;
}

.v-search-wrapper {
  position: relative;
  width: 100%;
}

.v-search-input {
  width: 100%;
  background: var(--v-bg-input);
  border: 1px solid var(--v-border-color);
  border-radius: 99px;
  padding: 10px 46px 10px 46px;
  color: var(--v-text-main);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.v-search-input:focus {
  outline: none;
  border-color: var(--v-color-primary);
  box-shadow: var(--v-shadow-glow);
  background: rgba(8, 12, 26, 0.95);
}

.v-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--v-text-dim);
  font-size: 0.95rem;
}

.v-search-clear {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--v-text-dim);
  font-size: 1rem;
}

.v-search-clear:hover {
  color: var(--v-color-primary);
}

.v-hot-tags {
  margin-top: 6px;
  padding-left: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
}

.v-hot-label {
  color: var(--v-text-dim);
}

.v-hot-item {
  color: var(--v-text-muted);
}

.v-hot-item:hover {
  color: var(--v-color-secondary);
}


.v-filter-nav {
  background: rgba(10, 15, 30, 0.4);
  border-bottom: 1px solid var(--v-border-color);
  padding: 12px 0;
}

.v-filter-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.v-filter-group {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
}

.v-filter-title {
  width: 65px;
  color: var(--v-text-dim);
  font-weight: 600;
  flex-shrink: 0;
}

.v-filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.v-filter-btn {
  padding: 4px 12px;
  border-radius: 99px;
  color: var(--v-text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid transparent;
}

.v-filter-btn:hover {
  color: var(--v-text-main);
  background: rgba(255, 255, 255, 0.05);
}

.v-filter-btn.active {
  color: #fff;
  background: var(--v-color-primary);
  box-shadow: 0 2px 8px rgba(225, 19, 95, 0.3);
}


.v-main-layout {
  padding: 32px 0 64px 0;
}

.v-layout-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 32px;
}

.v-primary-feed {
  flex: 1;
  min-width: 0;
}

.v-auxiliary-sidebar {
  width: 320px;
  flex-shrink: 0;
}


.v-content-block {
  margin-bottom: 40px;
}

.v-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.v-block-title {
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.v-block-title i {
  font-size: 1.1rem;
}

.v-icon-hot {
  color: var(--v-color-primary);
}

.v-icon-clapper {
  color: var(--v-color-secondary);
}

.v-showcase-count {
  font-size: 0.8rem;
  color: var(--v-text-dim);
}

.v-showcase-count span {
  color: var(--v-color-secondary);
  font-weight: 700;
}


.v-hero-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.v-hero-card {
  position: relative;
  border-radius: var(--v-radius-lg);
  overflow: hidden;
  height: 156px;
  background: var(--v-bg-card);
  border: 1px solid var(--v-border-color);
  display: flex;
  transition: all 0.3s;
  padding: 20px;
  gap: 20px;
  cursor: pointer;
}

.v-hero-card:hover {
  transform: translateY(-4px);
  border-color: var(--v-border-hover);
  box-shadow: var(--v-shadow-card);
}

.v-hero-poster-box {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: var(--v-radius-md);
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--v-bg-main);
}

.v-hero-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.45rem;
  color: #fff;
  background: linear-gradient(135deg, var(--v-color-secondary), var(--v-color-primary));
  z-index: 1;
  text-transform: uppercase;
  user-select: none;
}

.v-hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  transition: opacity 0.3s;
}

.v-hero-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.v-hero-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.v-hero-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--v-text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.v-hero-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.v-hero-rating {
  background: rgba(245, 158, 11, 0.15);
  color: var(--v-color-rating);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

.v-hero-meta {
  font-size: 0.8rem;
  color: var(--v-text-muted);
  line-height: 1.5;
  margin: 6px 0;
}

.v-hero-meta p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.v-hero-desc {
  font-size: 0.78rem;
  color: var(--v-text-dim);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.v-hero-btn {
  background: linear-gradient(135deg, var(--v-color-secondary), var(--v-color-primary));
  color: #fff;
  border-radius: 99px;
  padding: 6px 16px;
  font-weight: 600;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  align-self: flex-start;
  box-shadow: 0 4px 12px rgba(225, 19, 95, 0.3);
}

.v-hero-card:hover .v-hero-btn {
  background: linear-gradient(135deg, var(--v-color-primary), var(--v-color-primary-hover));
}


.v-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
}

.v-media-card {
  background: var(--v-bg-card);
  border: 1px solid var(--v-border-color);
  border-radius: var(--v-radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.v-media-card:hover {
  background: var(--v-bg-card-hover);
  border-color: var(--v-border-hover);
  transform: translateY(-3px);
  box-shadow: var(--v-shadow-card);
}

.v-poster-wrapper {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: var(--v-radius-md);
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--v-bg-main);
}

.v-poster-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  background: linear-gradient(135deg, var(--v-color-secondary), var(--v-color-primary));
  z-index: 1;
  text-transform: uppercase;
  user-select: none;
}

.v-media-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  transition: opacity 0.3s;
}

.v-media-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
}

.v-media-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
  width: 100%;
}

.v-media-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--v-text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}

.v-badge-status {
  background: rgba(225, 19, 95, 0.1);
  color: var(--v-color-primary);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 4px;
  border: 1px solid rgba(225, 19, 95, 0.2);
  white-space: nowrap;
  flex-shrink: 0;
}

.v-media-desc {
  font-size: 0.78rem;
  color: var(--v-text-dim);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  width: 100%;
}

.v-media-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 2px;
  min-width: 0;
  width: 100%;
}

.v-media-tags {
  font-size: 0.7rem;
  color: var(--v-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}

.v-badge-rating {
  color: var(--v-color-rating);
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.v-card-arrow {
  color: var(--v-text-dim);
  font-size: 0.85rem;
  transition: all 0.25s;
  padding-left: 4px;
  flex-shrink: 0;
}

.v-media-card:hover .v-card-arrow {
  color: var(--v-color-primary);
  transform: translateX(2px);
}


.v-sidebar-block {
  background-color: var(--v-bg-surface);
  border: 1px solid var(--v-border-color);
  border-radius: var(--v-radius-lg);
  padding: 24px;
}

.v-sidebar-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.v-icon-rank {
  color: var(--v-color-rating);
}

.v-rank-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.v-rank-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.v-rank-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.v-rank-num {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: var(--v-bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--v-text-muted);
}

.v-rank-item:nth-child(1) .v-rank-num {
  background: var(--v-color-primary);
  color: #fff;
}
.v-rank-item:nth-child(2) .v-rank-num {
  background: var(--v-color-secondary);
  color: #fff;
}
.v-rank-item:nth-child(3) .v-rank-num {
  background: var(--v-color-rating);
  color: #fff;
}

.v-rank-name {
  flex: 1;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--v-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.v-rank-item:hover .v-rank-name {
  color: var(--v-color-secondary);
}

.v-rank-trend {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--v-color-rating);
}


.v-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 0;
  color: var(--v-text-dim);
}

.v-empty-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  color: var(--v-border-color);
}


.v-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 6, 12, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.v-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.v-modal-card {
  width: 100%;
  max-width: 600px;
  background: #111726;
  border: 1px solid var(--v-border-color);
  border-radius: var(--v-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.v-modal-overlay.open .v-modal-card {
  transform: translateY(0);
}

.v-modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--v-border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.v-modal-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--v-text-main);
}

.v-modal-close-btn {
  font-size: 1.25rem;
  color: var(--v-text-dim);
}

.v-modal-close-btn:hover {
  color: var(--v-color-primary);
}

.v-modal-body {
  padding: 24px;
}

.v-modal-info-panel {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.v-modal-poster-box {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: var(--v-radius-md);
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--v-bg-main);
}

.v-modal-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.6rem;
  color: #fff;
  background: linear-gradient(135deg, var(--v-color-secondary), var(--v-color-primary));
  z-index: 1;
  text-transform: uppercase;
  user-select: none;
}

.v-modal-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  transition: opacity 0.3s;
}

.v-modal-details {
  flex: 1;
  min-width: 0;
  font-size: 0.8rem;
  color: var(--v-text-muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.v-modal-rating-val {
  color: var(--v-color-rating);
  font-weight: 700;
}

.v-modal-intro {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.v-modal-routes-area {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 20px;
}

.v-routes-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--v-text-main);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.v-routes-title i {
  color: var(--v-color-primary);
}

.v-routes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.v-route-link {
  background: var(--v-bg-card);
  border: 1px solid var(--v-border-color);
  color: var(--v-text-main);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 12px;
  border-radius: var(--v-radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.25s;
}

.v-route-link:hover {
  background: var(--v-color-primary);
  border-color: var(--v-color-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(225, 19, 95, 0.2);
}

.v-route-source {
  font-size: 0.7rem;
  opacity: 0.75;
}

.v-modal-footer {
  padding: 14px 24px;
  background: rgba(8, 12, 22, 0.6);
  border-top: 1px solid var(--v-border-color);
}

.v-modal-warning {
  font-size: 0.7rem;
  color: var(--v-text-dim);
  line-height: 1.4;
}

.v-modal-warning i {
  color: var(--v-color-rating);
  margin-right: 4px;
}


.v-footer {
  background-color: #04060d;
  border-top: 1px solid var(--v-border-color);
  padding: 48px 0;
  color: var(--v-text-dim);
  font-size: 0.8rem;
  text-align: center;
}

.v-footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}

.v-footer-link {
  color: var(--v-text-muted);
}

.v-footer-link:hover {
  color: var(--v-color-secondary);
}

.v-copyright {
  margin-bottom: 12px;
}

.v-footer-statement {
  max-width: 800px;
  margin: 24px auto 0 auto;
  line-height: 1.8;
  text-align: justify; 
  font-size: 0.76rem;
  color: var(--v-text-dim);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 20px;
}


@media (max-width: 1100px) {
  .v-auxiliary-sidebar {
    display: none; 
  }
}

@media (max-width: 900px) {
  .v-hero-row {
    grid-template-columns: 1fr; 
  }
}

@media (max-width: 768px) {
  .v-header {
    padding: 10px 0;
  }
  .v-header-container {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .v-logo-link .v-logo-box {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 1.15rem;
  }
  .v-logo-link h1 {
    font-size: 1.25rem;
  }
  .v-search-box {
    max-width: 100%;
  }
  .v-hot-tags {
    overflow-x: auto;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 2px 0;
    margin-top: 4px;
    scrollbar-width: none; 
  }
  .v-hot-tags::-webkit-scrollbar {
    display: none; 
  }
  .v-hot-label {
    flex-shrink: 0;
    font-size: 0.72rem;
  }
  .v-hot-item {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.03);
    padding: 2px 8px;
    border-radius: 99px;
    border: 1px solid var(--v-border-color);
    font-size: 0.72rem;
  }
  
  .v-filter-nav {
    padding: 8px 0;
  }
  .v-filter-container {
    padding: 0 16px;
    gap: 8px;
  }
  .v-filter-group {
    width: 100%;
    overflow: hidden;
  }
  .v-filter-title {
    width: 52px;
    font-size: 0.78rem;
  }
  .v-filter-options {
    flex: 1;
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    gap: 6px;
    padding: 2px 0;
    scrollbar-width: none;
  }
  .v-filter-options::-webkit-scrollbar {
    display: none;
  }
  .v-filter-btn {
    flex-shrink: 0;
    padding: 2px 10px;
    font-size: 0.75rem;
  }

  .v-main-layout {
    padding-top: 16px;
    padding-bottom: 40px;
    width: 100%;
    overflow: hidden;
  }
  .v-layout-container {
    padding: 0 14px;
    width: 100%;
    max-width: 100%;
  }
  .v-primary-feed {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .v-hero-card {
    height: auto;
    min-height: 125px;
    padding: 14px;
    gap: 14px;
  }
  .v-media-grid {
    grid-template-columns: 100%; 
    gap: 10px;
    width: 100%;
  }
  .v-media-card {
    padding: 12px 14px;
    gap: 12px;
    width: 100%;
    min-width: 0;
  }
  .v-routes-grid {
    grid-template-columns: 1fr; 
  }
}
