@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

.video-container {
  position: relative;
  width: 100%;
  height: 40vh;
  overflow: hidden;
}
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.angel-card {
  transition: all 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.angel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.angel-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
}

.angel-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.black-angel {
  background: linear-gradient(45deg, #000, #555);
  border: 2px solid gold;
}

.hyper-angel {
  background: linear-gradient(45deg, gold, #ffd700);
}

.super-angel {
  background: linear-gradient(45deg, silver, #e0e0e0);
}

.angel {
  background: linear-gradient(45deg, #6495ED, #87CEEB);
}

.guardian-angel {
  background: linear-gradient(45deg, #C0C0C0, #F0F0F0);
}

.support-angel {
  background: linear-gradient(45deg, white, #f8f8f8);
  border: 1px solid #ddd;
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.partner-logo {
  max-height: 40px;
  max-width: 180px;
}

.talent-detail {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 1000;
  overflow-y: auto;
}
.talent-detail.modal-active {
  display: block;
}

.angel-badge-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.angel-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100px;
}

.angel-badge-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.hero-gradient {
  background: linear-gradient(135deg, #2c3e50, #4a69bd);
}

.tier-card {
  transition: transform 0.3s ease;
}
.tier-card:hover {
  transform: translateY(-3px);
}

.voting-progress {
  height: 8px;
  border-radius: 4px;
}

.tab {
  cursor: pointer;
  transition: all 0.3s ease;
}
.tab.active {
  border-bottom: 3px solid #4299e1;
  font-weight: 600;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

header {
  position: relative;
  z-index: 100;
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 10px;
  background: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  z-index: 50;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}
.mobile-nav.active {
  max-height: 500px;
}

#menu-button {
  transition: transform 0.3s ease;
}
#menu-button.active {
  transform: rotate(90deg);
}
