body {
  font-family: sans-serif;
  margin: 0;

  background:
    radial-gradient(circle at 20% 20%, #f3f0ff 0%, transparent 40%),
    radial-gradient(circle at 80% 30%, #e0f7ff 0%, transparent 40%),
    linear-gradient(180deg, #ffffff, #f7f7f7);
}

header {
  padding: 0;
}

a {
  color: #6c3cff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  opacity: 0.8;
}
  
#count {
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

#list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(600px, 800px));
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  background: white;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);

  box-shadow: 0 6px 20px rgba(0,0,0,0.08);

  border: 1px solid #eee;
}
  
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
  
.icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  background: #ddd;
  align-self: center;
}

.streamer {
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}
  
.streamer a {
  color: #6c3cff;
  font-weight: 600;
}

.game {
  display: flex;
  align-items: center;
  gap: 6px;

  font-weight: bold;
  font-size: 16px;
  margin-top: 2px;
}

.game a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.game-img {
  width: 300px;
  aspect-ratio: 460 / 215;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
  
.meta {
  font-size: 14px;
  color: #777;
  margin-top: 2px;
}

.meta.note {
  font-size: 15px;
  color: #666;
  margin-top: 2px;
}

.top {
  display: flex;
  gap: 14px;
  align-items: center;
}

.left {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  flex: 1;
}

.info {
  flex: 1;
  min-width: 0;
  gap: 6px;
}

.row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero {
  height: 320px;
  overflow: hidden;
  position: relative;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
}
  
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;

  background: linear-gradient(
    to top,
    rgba(255,255,255,0),
    #f7f7f7
  );
}
  
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;

  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0),
    #f7f7f7
  );
}

.section-title {
  text-align: center;
  font-size: 20px;
  margin: 30px 0 10px;
}

.rules {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.rules h2 {
  margin-top: 0;
}

.cta {
  display: block;
  width: fit-content;
  margin: 18px auto 0;

  padding: 14px 24px;
  font-size: 15px;

  background: linear-gradient(135deg, #6c3cff, #8f6bff);
  color: white;

  border-radius: 12px;
  font-weight: bold;

  box-shadow: 0 6px 16px rgba(108,60,255,0.3);
}

.cta:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.footer {
  text-align: center;
  padding: 30px 10px;
  font-size: 13px;
  color: #888;
}

.summary {
  max-width: 760px;
  margin: 24px auto 10px;
  padding: 14px 18px;

  font-size: 14px;
  color: #444;
  line-height: 1.6;

  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(6px);

  border-radius: 10px;
}

.note-en {
  font-size: 12px;
  color: #999;
  margin-top: -6px;
  margin-bottom: 10px;
}

.event-info {
  max-width: 760px;
  margin: 10px auto 20px;
  padding: 12px 16px;

  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;

  font-size: 14px;
  font-weight: 600;
  color: #333;

  background: rgba(255,255,255,0.85);
  border-radius: 10px;
}

.event-info div {
  background: #f3f0ff;
  padding: 8px 14px;
  border-radius: 10px;
}

.sub {
  font-size: 12px;
  color: #777;
  margin-left: 6px;
}

.contact {
  margin-top: 14px;
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

.contact a {
  color: #6c3cff;
  font-weight: 600;
}
