.rank-page {
  min-height: calc(100vh - 200px);
  padding-bottom: 3rem;
}

@media (max-width: 768px) {
  .rank-page {
    padding-bottom: 2rem;
  }
}
.page-header {
  text-align: center;
  padding: 2rem 0 3rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .page-header {
    padding: 1.5rem 0 2rem;
    margin-bottom: 1.5rem;
  }
}
.page-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #14b8a6 100%);
  color: #FFF;
}

@media (max-width: 768px) {
  .page-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }
}
.page-desc {
  font-size: 1rem;
  color: #6b7280;
}

@media (max-width: 768px) {
  .page-desc {
    font-size: 0.875rem;
  }
}
.rank-section {
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .rank-section {
    margin-bottom: 2rem;
  }
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e5e7eb;
}

@media (max-width: 768px) {
  .section-header {
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
}
.section-title-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0ea5e9 0%, #14b8a6 100%);
  border-radius: 8px;
  flex-shrink: 0;
}
.section-icon svg {
  width: 18px;
  height: 18px;
  stroke: white;
}

@media (max-width: 768px) {
  .section-icon {
    width: 28px;
    height: 28px;
  }
  .section-icon svg {
    width: 16px;
    height: 16px;
  }
}
.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.25rem;
  }
}
.rank-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .rank-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.rank-item {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 1rem;
  padding: 1.25rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  overflow: hidden;
}
.rank-item:hover {
  border-color: #0ea5e9;
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.15);
  transform: translateY(-2px);
}
.rank-item:hover .rank-badge {
  transform: scale(1.1) rotate(5deg);
}
.rank-item:hover .rank-title a {
  color: #0ea5e9;
}

@media (max-width: 480px) {
  .rank-item {
    padding: 1rem;
    gap: 0.75rem;
  }
}
.rank-badge {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0ea5e9 0%, #14b8a6 100%);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
  transition: all 0.3s ease;
}
.rank-badge .rank-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.rank-badge.rank-1 {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  box-shadow: 0 4px 16px rgba(251, 191, 36, 0.5);
}
.rank-badge.rank-2 {
  background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
  box-shadow: 0 4px 16px rgba(148, 163, 184, 0.5);
}
.rank-badge.rank-3 {
  background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
  box-shadow: 0 4px 16px rgba(251, 146, 60, 0.5);
}

@media (max-width: 480px) {
  .rank-badge {
    width: 40px;
    height: 40px;
  }
  .rank-badge .rank-number {
    font-size: 1.125rem;
  }
}
.rank-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.info-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.rank-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.3s;
}

@media (max-width: 480px) {
  .rank-title {
    font-size: 1rem;
  }
}
.rank-category {
  flex-shrink: 0;
  padding: 0.25rem 0.75rem;
  background: rgba(14, 165, 233, 0.1);
  color: #0ea5e9;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 6px;
}

.info-details {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
}

@media (max-width: 480px) {
  .info-details {
    gap: 0.75rem;
    font-size: 0.8125rem;
  }
}
.info-score {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #f59e0b;
  font-weight: 600;
}
.info-score svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.info-year {
  color: #6b7280;
}

.info-area {
  color: #6b7280;
}

.info-status {
  padding: 0.25rem 0.5rem;
  background: linear-gradient(135deg, #0ea5e9 0%, #14b8a6 100%);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
}

.info-actor {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.info-actor .actor-label {
  color: #9ca3af;
  font-weight: 500;
}

@media (max-width: 480px) {
  .info-actor {
    font-size: 0.8125rem;
  }
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem 0;
  font-size: 0.875rem;
  color: #fff;
}

.breadcrumb-icon {
  width: 16px;
  height: 16px;
}

.breadcrumb-link {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  transition: color 0.25s;
}
.breadcrumb-link:hover {
  text-decoration: underline;
}

.breadcrumb-current {
  color: #fff;
  font-weight: 500;
}

.separator svg {
  width: 16px;
  height: 16px;
  color: #d1d5db;
}

@media (max-width: 480px) {
  .breadcrumb-nav {
    font-size: 0.8125rem;
    gap: 0.375rem;
  }
}

/*# sourceMappingURL=index.css.map */
