@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Inter:wght@300;400;600&display=swap');

.campaign-rules-container {
  font-family: 'Inter', sans-serif;
  color: #e0e0e0;
  line-height: 1.6;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.campaign-rules-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ffd700, #00bfff, #ffd700);
  background-size: 200% 200%;
  animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 100% 100%;
  }
}

h1.main-title {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
}

h2.subtitle {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  text-align: center;
  color: #00bfff;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

.rule-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rule-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.section-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
  text-align: center;
}

h3 {
  font-family: 'Cinzel', serif;
  color: #ffd700;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 3px solid #ffd700;
  padding-left: 1rem;
  margin-top: 0;
}

.clause {
  margin-bottom: 1.5rem;
}

.clause-title {
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
  display: block;
}

.clause-content {
  color: #ccc;
  font-size: 1.05rem;
}

.highlight {
  color: #ffd700;
  font-weight: 600;
}

.time-warning {
  text-align: center;
  margin-top: 4rem;
  padding: 2rem;
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  color: #ffd700;
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  animation: pulse 4s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.2);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
  }
}

.flavor-image {
  width: 100%;
  margin: 2rem 0;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.9;
  transition: opacity 0.3s;
}

.flavor-image:hover {
  opacity: 1;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 992px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}