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

body {
  font-family: 'Space Mono', monospace;
  background: #1a1a1a;
  color: #000;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1rem;
  overflow-x: hidden;
}

.poster {
  position: relative;
  width: 100%;
  max-width: 1400px;
  background: linear-gradient(135deg, #fef9e7 0%, #f8f4e6 100%);
  border: 12px solid #fff;
  box-shadow: 
    0 0 0 3px #000,
    12px 12px 0 rgba(220, 38, 38, 0.2),
    0 25px 70px rgba(0, 0, 0, 0.6);
  transform: rotate(-0.5deg);
}

.poster::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.015) 2px,
      rgba(0, 0, 0, 0.015) 4px
    );
  pointer-events: none;
  z-index: 10;
}

.tape {
  position: absolute;
  width: 80px;
  height: 30px;
  background: rgba(255, 248, 220, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 20;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.tape::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.03) 3px,
    rgba(0, 0, 0, 0.03) 6px
  );
}

.tape-top-left {
  top: -15px;
  left: 40px;
  transform: rotate(-5deg);
}

.tape-top-right {
  top: -15px;
  right: 40px;
  transform: rotate(5deg);
}

.tape-bottom-left {
  bottom: -15px;
  left: 40px;
  transform: rotate(3deg);
}

.tape-bottom-right {
  bottom: -15px;
  right: 40px;
  transform: rotate(-3deg);
}

.poster-content {
  padding: 2rem 1.5rem;
}

.poster-title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  background: linear-gradient(90deg, #dc2626 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 0.8rem;
  position: relative;
}

.poster-title::before,
.poster-title::after {
  content: '★';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #dc2626;
}

.poster-title::before {
  left: 0;
}

.poster-title::after {
  right: 0;
  color: #2563eb;
}

.poster-image {
  width: 100%;
  margin-bottom: 1.5rem;
  border: 4px solid #000;
  box-shadow: 
    0 0 0 2px #fff,
    0 0 0 6px #000,
    0 10px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transform: rotate(0.5deg);
}

.poster-image img {
  width: 100%;
  height: auto;
  display: block;
}

.slogans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.slogan {
  background: #000;
  color: #fff;
  padding: 1rem 1.2rem;
  font-size: clamp(0.85rem, 2.2vw, 1.1rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
  border: 3px solid #000;
  line-height: 1.3;
  position: relative;
  transform: rotate(-0.5deg);
  transition: transform 0.2s ease;
}

.slogan-main {
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-size: clamp(0.95rem, 2.4vw, 1.2rem);
}

.slogan-sub {
  font-size: clamp(0.75rem, 1.9vw, 0.95rem);
  font-weight: 400;
  font-style: italic;
  opacity: 0.9;
  text-transform: none;
  line-height: 1.4;
}

.slogan:nth-child(odd) {
  background: #dc2626;
  border-color: #dc2626;
  transform: rotate(0.5deg);
}

.slogan:nth-child(even) {
  background: #2563eb;
  border-color: #2563eb;
}

.slogan:nth-child(3n) {
  background: #000;
  border-color: #000;
  transform: rotate(0deg);
}

.poster-footer {
  text-align: center;
  background: linear-gradient(to right, #dc2626 0%, #dc2626 33%, #fff 33%, #fff 66%, #2563eb 66%, #2563eb 100%);
  padding: 1.5rem 1rem;
  margin: 0 -1.5rem 1.5rem;
  position: relative;
}

.poster-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #000;
}

.campaign-name {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
  line-height: 1;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.8);
}

.campaign-slogan {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.flags {
  font-size: clamp(2rem, 5vw, 2.5rem);
}

@media (max-width: 768px) {
  .slogans-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  body {
    padding: 0.5rem;
  }
  
  .poster {
    border-width: 8px;
  }
  
  .poster-content {
    padding: 1.5rem 1rem;
  }
  
  .tape {
    width: 60px;
    height: 25px;
  }
  
  .poster-title::before,
  .poster-title::after {
    display: none;
  }
}