@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: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 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, #ff00cc, #3333ff);
}

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: #a0a0ff;
  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: #ff99cc;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 3px solid #ff00cc;
  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: #ffcc00;
  font-weight: 600;
}

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

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(255, 0, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 0, 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: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
