* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

body {
  max-width: 428px;
  margin: 0 auto;
  background-color: #1a1a1a;
  color: #fff;
  padding-bottom: 80px;
}

.banner-title {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(to right, #6dd5ed, #ff758c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.8rem;
}

.banner-subtitle1 {
  font-size: 1rem;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.banner-subtitle {
  font-size: 0.7rem;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.red-ribbon {
  background-color: #e60012;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 0;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
  width: 90%;
}

.profile-cards {
  padding: 12px;
}

.profile-card {
  padding: 12px 0;
  margin-bottom: 16px;
  border-bottom: 1px solid #675c52;
  display: flex;
  gap: 12px;
}

.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.profile-info {
  flex: 1;
}

.profile-verified {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
  background: linear-gradient(180deg, #deab8a, #fedcbd);
  padding: 4px 8px;
  border-radius: 4px;
  width: fit-content;
}

.verified-badge {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.profile-name {
  font-size: 14px;
  font-weight: 600;
  color: #5c553b;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 8px;
}

.tag {
  background: #fedcbd;
  color: #000;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}

.profile-metrics {
  font-size: 11px;
  color: #ddd;
  margin-bottom: 8px;
  line-height: 1.4;
}

.date-title {
  font-size: 16px;
  font-weight: 700;
  color: #fcd9ba;
  margin-bottom: 4px;
}

.date-desc {
  font-size: 11px;
  color: #ccc;
}

.line-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 12px;
}

.line-icon {
  width: 50px;
  height: 50px;
  animation: pulse 2s infinite;
}

.banner-button, .date-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(180deg, #deab8a, #fedcbd);
  color: #000;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  min-width: 180px;
}

.banner-button:hover, .date-button:hover {
  transform: scale(1.02);
}

.line-icon-small {
  width: 20px;
  height: 20px;
}

.profile-btn {
  display: block;
  background: linear-gradient(180deg, #deab8a, #fedcbd);
  color: #000;
  border: none;
  border-radius: 1rem;
  padding: 8px 0;
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s;
  text-decoration: none;
  text-align: center;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 100%;
}

.profile-btn:hover {
  transform: scale(1.02);
}

.online-date {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 428px;
  margin: 0 auto;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  gap: 10px;
}

.date-content {
  flex: 1;
}

.date-button {
  margin-top: 0;
  margin-left: auto;
  flex-shrink: 0;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(230, 0, 18, 0.7);
  }

  50% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(230, 0, 18, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(230, 0, 18, 0);
  }
}