:root {
  --primary: #ff5722;
  --secondary: #3f51b5;
  --background: #121212;
  --text: #f5f5f5;
  --accent: #00bcd4;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  margin-bottom: 40px;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.tagline {
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-weight: 300;
}

.card-section {
  display: flex;
  justify-content: center;
  margin: 60px 0;
  flex-wrap: wrap;
}

.card-container {
  position: relative;
  width: 300px;
  margin: 0 auto;
  transition: transform 0.3s;
}

.card-container:hover {
  transform: translateY(-10px);
}

.card-img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.banned {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
  font-size: 4rem;
  color: red;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  pointer-events: none;
  opacity: 0.8;
}

.unban {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(255, 87, 34, 0.4);
  transition: all 0.3s;
}

.unban:hover {
  background-color: #e64a19;
  transform: translateX(-50%) scale(1.05);
}

.info-section {
  padding: 60px 0;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin: 40px 0;
}

h2 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--accent);
}

.info-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.info-col {
  flex: 1;
  min-width: 300px;
  padding: 0 30px;
}

.signature {
  margin-top: 100px;
  text-align: center;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
}

.counter {
  text-align: center;
  font-size: 1.2rem;
  margin-top: 20px;
}

.count-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary);
}

footer {
  text-align: center;
  padding: 40px 0;
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  .tagline {
    font-size: 1.2rem;
  }

  .info-col {
    min-width: 100%;
  }
}
