/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Base font size for rem calculations */
  font-size: 16px;

  /* Color variables */
  --color-black: #000000;
  --color-white: #ffffff;
  --color-gray-light: #d9d9d9;
  --color-gray-dark: #2b2b2b;
  --color-beige: #eae5e3;
  --color-red: #e60012;
  --color-green: #4f9c0f;
  --color-green-bright: #00e14e;
  --color-card-bg: rgba(196, 196, 196, 0.7);
}

/* Responsive font sizes */
@media (max-width: 1024px) {
  :root {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
  }
}

body {
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--color-gray-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.2;
}

/* Header Section */
.header-section {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 1;
  overflow: hidden;
  background-color: #000;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  z-index: 2;
}

.hero-title {
  text-align: center;
  color: #d9d9d9;
}

.hero-title .title-bold {
  display: block;
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
  animation: fadeInUp 1s ease-out;
}

.hero-title .title-light {
  display: block;
  font-size: 3.5rem;
  font-weight: 300;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.scroll-indicator {
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  color: #d9d9d9;
  font-size: 0.875rem; /* 14px */
}

.scroll-line {
  width: 1px;
  height: 100px;
  background: #d9d9d9;
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: "";
  position: absolute;
  top: -20px;
  width: 100%;
  height: 20px;
  background: #d9d9d9;
  animation: scrollDown 1.5s infinite;
}

/* Mid Section 01 */
.mid-section-01 {
  position: relative;
  top: 0;
  min-height: 100vh;
  background: var(--color-black);
  z-index: 10;
  padding: 9.375rem 0; /* 150px */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem; /* 80px */
  padding-bottom: 15rem;
  position: sticky;
  top: 3.125rem; /* 50px */
  z-index: 15;
}

.section-title {
  font-size: 6rem;
  font-weight: 500;
  color: var(--color-gray-light);
  text-align: center;
  line-height: 1.2;
}

.double-chev-down {
  transition: all 0.3s ease;
}

.section-title span {
  display: block;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.section-title span:nth-child(1) {
  animation-delay: 0.2s;
}
.section-title span:nth-child(2) {
  animation-delay: 0.4s;
}
.section-title span:nth-child(3) {
  animation-delay: 0.6s;
}

.title-arrow {
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.8s forwards;
}

/* Cards Container */
.cards-container {
  width: 100%;
  max-width: 115rem; /* 1840px */
  padding: 0 2.5rem; /* 40px */
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 20; /* Higher than mid-section for overlay effect */
  gap: 9.375rem;
}

.card-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 20rem; /* 320px */
}

.card-row:not(.single) {
  margin-bottom: 0;
}

.card-row.single {
  justify-content: center;
}

.card {
  width: 37.5rem; /* 600px */
  height: 28.125rem; /* 450px */
  background: var(--color-card-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 1.875rem; /* 30px */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem; /* 40px */
  font-weight: 600;
  color: var(--color-gray-light);
  position: relative;
  overflow: hidden;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-row:not(.single) .card:last-child {
  margin-bottom: 0;
  margin-top: 9.375rem;
}

.card.visible {
  transform: translateY(0);
  opacity: 1;
}

.card.with-bg {
  background-size: cover;
  background-position: center;
}

.card.with-bg span {
  text-shadow: 0 0 4px rgba(0, 0, 0, 1);
}

.card:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

/* Mid Section 02 - Text Section */
.mid-section-02 {
  min-height: 100vh;
  background: var(--color-black);
  position: relative;
  z-index: 30;
  padding: 10rem 5rem 18.75rem; /* 160px 80px 300px */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.text-container {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  margin-bottom: 5rem;
}

.text-line {
  color: var(--color-white);
  margin: 0;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.text-group {
  margin: 1.875rem 0; /* 30px */
}

.text-group:last-child {
  margin-top: 60px;
}

.text-group .text-line {
  margin: 0.625rem 0; /* 10px */
}

/* Text animations with delays */
[data-animation-delay="0"] .text-line:nth-child(1) {
  animation-delay: 0.5s;
}
[data-animation-delay="1"] .text-line:nth-child(1) {
  animation-delay: 1s;
}
[data-animation-delay="1"] .text-line:nth-child(2) {
  animation-delay: 1.2s;
}
[data-animation-delay="2"] .text-line:nth-child(1) {
  animation-delay: 1.8s;
}
[data-animation-delay="2"] .text-line:nth-child(2) {
  animation-delay: 2s;
}
[data-animation-delay="2"] .text-line:nth-child(3) {
  animation-delay: 2.2s;
}
[data-animation-delay="3"] .text-line:nth-child(1) {
  animation-delay: 2.8s;
}
[data-animation-delay="3"] .text-line:nth-child(2) {
  animation-delay: 3s;
}

/* Text line styles based on Figma */
.text-container > .text-line:first-child {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-gray-light);
}

.text-group:nth-child(2) .text-line {
  font-size: 1.5rem;
  font-weight: 400;
}

.text-group:nth-child(3) .text-line {
  font-size: 1.75rem;
  font-weight: 400;
}

.text-group.emphasis .text-line {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-gray-light);
}

.sticky-btn-wrap {
  position: relative;
}

/* Campaign Button */
.campaign-button {
  display: inline-block;
  position: fixed;
  top: 70vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  text-decoration: none;
  border: 2px solid var(--color-green-bright);
  background: transparent;
  color: var(--color-green-bright);
  font-size: 1.25rem; /* 20px */
  font-weight: 600;
  padding: 1.25rem 3.125rem; /* 20px 50px */
  border-radius: 3.125rem; /* 50px */
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.campaign-button:hover {
  background: #00ff5a;
  color: var(--color-black);
}

/* Event Section */
.event-section {
  background: var(--color-beige);
  min-height: 100vh;
  padding: 14rem 2.5rem 1px;
  position: relative;
  z-index: 40;
}

.event-section .logo-container {
  position: relative;
  text-align: center;
  margin-bottom: 3rem;
}

.event-section .site-logo {
  height: 5rem; /* 80px */
  width: auto;
}

.event-container {
  max-width: 115rem; /* 1840px */
  margin: 0 auto;
  padding-top: 3rem;
}

/* Topic Tabs */
.topic-tabs {
  display: flex;
  gap: 1.25rem; /* 20px */
  margin-bottom: 5rem; /* 80px */
  flex-wrap: wrap;
  justify-content: center;
}

.tab {
  background: #f0edeb;
  color: var(--color-gray-dark);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.9375rem 1.875rem;
  border-radius: 3.125rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 0;
}

.tab span {
  color: #2b2b2b99;
  font-size: 1rem;
}

.tab.active span {
  color: var(--color-beige);
}

.tab:hover span {
  color: var(--color-beige);
}

.tab:hover {
  background: var(--color-gray-dark);
  color: var(--color-beige);
}

.tab.active {
  background: var(--color-gray-dark);
  color: var(--color-beige);
}

/* Voting Content */
.voting-content {
  text-align: center;
}

.voting-content.hidden {
  display: none;
}

.topic-content {
  display: none;
}

.topic-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.topic-question {
  font-size: 2.25rem; /* 40px */
  line-height: 1.5;
  margin-bottom: 3.75rem; /* 60px */
}

.topic-question .emphasis {
  font-weight: 600;
  margin-top: 1.25rem; /* 20px */
}

.voting-buttons {
  display: flex;
  gap: 2.5rem; /* 40px */
  justify-content: center;
  align-items: center;
  margin-bottom: 5rem; /* 80px */
}

.voting-buttons span {
  font-size: 1.5rem;
  font-weight: 400;
  color: #2b2b2b;
}

.vote-btn {
  font-size: 1.5rem;
  font-weight: 600;
  padding: 1.875rem 4.75rem;
  border: none;
  border-radius: 3.75rem; /* 60px */
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.vote-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.vote-btn:hover::before {
  width: 300%;
  height: 300%;
}

.vote-btn.red {
  background: var(--color-red);
  color: white;
}

.vote-btn.red.voted {
  color: var(--color-red);
  background: #ead9d8;
}

.vote-btn.red::before {
  background: rgba(255, 255, 255, 0.2);
}

.vote-btn.green {
  background: var(--color-green);
  color: white;
}

.vote-btn.green.voted {
  color: var(--color-green);
  background: #dbdecf;
}

.vote-btn.green::before {
  background: rgba(255, 255, 255, 0.2);
}

.vote-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.key-visual {
  margin-bottom: 5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.key-visual img {
  max-width: 100%;
  height: auto;
}

/* Input Form */
.input-form {
  max-width: 37.5rem; /* 600px */
  margin: 0 auto;
  text-align: center;
}

.input-form.hidden {
  display: none;
}

.form-message {
  font-size: 1.5rem; /* 24px */
  line-height: 1.5;
  margin-bottom: 2.5rem; /* 40px */
}

#participant-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem; /* 20px */
}

#participant-form input[type="text"],
#participant-form input[type="tel"],
#participant-form input[type="email"] {
  font-size: 1.125rem; /* 18px */
  padding: 1.25rem; /* 20px */
  border: 1px solid var(--color-gray-light);
  border-radius: 0.625rem; /* 10px */
  background: white;
  transition: all 0.3s ease;
}

#participant-form input:focus {
  outline: none;
  border-color: var(--color-gray-dark);
  box-shadow: 0 0 0 3px rgba(43, 43, 43, 0.1);
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 0.625rem; /* 10px */
  font-size: 1rem; /* 16px */
  cursor: pointer;
}

.checkbox-container input[type="checkbox"] {
  width: 1.25rem; /* 20px */
  height: 1.25rem; /* 20px */
  cursor: pointer;
}

.submit-btn {
  font-size: 1.25rem; /* 20px */
  font-weight: 600;
  padding: 1.25rem 2.5rem; /* 20px 40px */
  border: none;
  border-radius: 3.125rem; /* 50px */
  background: var(--color-gray-light);
  color: white;
  cursor: not-allowed;
  transition: all 0.3s ease;
}

.submit-btn:not(:disabled) {
  background: var(--color-gray-dark);
  cursor: pointer;
}

.submit-btn:not(:disabled):hover {
  background: var(--color-black);
  transform: scale(1.05);
}

.reset-link {
  color: var(--color-gray-dark);
  text-decoration: none;
  font-size: 1rem; /* 16px */
  margin-top: 0.625rem; /* 10px */
  display: inline-block;
}

.reset-link:hover {
  text-decoration: underline;
}

/* Result Graph */
.result-graph {
  max-width: 800px;
  margin: 5rem auto 0;
  transition: filter 0.5s ease;
}

/* Results Section */
.results-section {
  background: var(--color-beige);
  padding: 10rem 2.5rem;
  position: relative;
  z-index: 50;
}

.results-header {
  text-align: center;
  margin-bottom: 9.375rem; /* 150px */
  position: relative;
}

.dummy-info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.dummy-info.hidden {
  display: none;
}

.dummy-info p {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2b2b2b;
}

.results-header-content.blurred {
  filter: blur(10px);
  pointer-events: none;
}

.results-header h2 {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 5rem; /* 80px */
}

.results-header h2 span {
  display: block;
  line-height: 1.2;
}

.results-header h2 span:last-child {
  font-weight: 600;
}

/* Result Articles */
.result-articles {
  max-width: 115rem; /* 1840px */
  margin: 0 auto;
}

.result-article {
  display: flex;
  gap: 5rem; /* 80px */
  margin-bottom: 9.375rem; /* 150px */
  align-items: center;
}

.result-article.full-width {
  padding: 9.375rem 2.5rem; /* 150px 40px */
  background-size: cover;
  background-position: center;
  border-radius: 1.875rem; /* 30px */
  position: relative;
  overflow: hidden;
  min-height: 37.5rem; /* 600px */
  display: flex;
  align-items: center;
  justify-content: center;
}

.result-article.full-width::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.article-image {
  flex: 0 0 50%;
}

.placeholder-image {
  width: 100%;
  border-radius: 1.875rem; /* 30px */
}

.article-content {
  flex: 1;
  padding: 0 2.5rem; /* 0 40px */
}

.article-content.centered {
  text-align: center;
  color: white;
  position: relative;
  z-index: 2;
}

.article-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 71px;
  height: 39px;
  background: var(--color-gray-dark);
  color: white;
  border-radius: 100px;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem; /* 20px */
}

.full-width .article-number {
  background: white;
  color: var(--color-gray-dark);
}

.article-content h3 {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 2.5rem; /* 40px */
  line-height: 1.2;
}

.article-content p {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 0.625rem; /* 10px */
}

.full-width .article-content h3,
.full-width .article-content p {
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

.support-btn {
  text-decoration: none;
  background: #fb7e06;
  color: white;
  padding: 0.751rem 2.5rem;
  border-radius: 6px;
  margin-top: 20px;
  font-size: 1.25rem;
  display: inline-block;
}

/* Voting Grid Section */
.voting-grid-section {
  background: var(--color-beige);
  padding: 9.375rem 2.5rem; /* 150px 40px */
  position: relative;
  z-index: 60;
}

.grid-header {
  text-align: center;
  margin-bottom: 5rem; /* 80px */
}

.grid-header h2 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
}

.voting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9375rem; /* 15px */
  max-width: 78.75rem; /* 1260px */
  margin: 0 auto;
}

.voting-card {
  position: relative;
  border-radius: 1.875rem; /* 30px */
  overflow: hidden;
  cursor: pointer;
  padding: 3.125rem 2.5rem 1.25rem; /* 50px 40px 20px */
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid white;
  border-radius: 1.875rem; /* 30px */
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
}

.voting-card__voted {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 1.25rem; /* 20px */
  z-index: 9;
}

.voting-card__voted--show {
  display: flex;
}

.card-bg {
  height: 293px;
  max-width: 320px;
  z-index: 1;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 90%;
  margin: 0 auto;
}

.card-content {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 15px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.vs-text {
  display: flex;
  gap: 0.625rem; /* 10px */
  align-items: center;
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-gray-dark);
}

.vs-text .vs {
  color: rgba(43, 43, 43, 0.7);
}

.vote-button {
  background: var(--color-gray-dark);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem; /* 10px 20px */
  border: none;
  border-radius: 3.125rem; /* 50px */
  cursor: pointer;
  transition: all 0.3s ease;
}

.vote-button:hover {
  background: var(--color-black);
  transform: scale(1.1);
}

.contact-form {
  background: var(--color-white);
  padding: 9.375rem 2.5rem;
  position: relative;
  z-index: 60;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes scrollDown {
  0% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(120px);
  }
}

/* Responsive Design */
@media (max-width: 1440px) {
  .section-title {
    font-size: 6.25rem; /* 100px */
  }

  .card-row {
    gap: 2.5rem; /* 40px */
  }

  .card {
    width: 31.25rem; /* 500px */
    height: 23.4375rem; /* 375px */
    font-size: 2.25rem; /* 36px */
  }

  .voting-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero-title .title-bold,
  .hero-title .title-light {
    font-size: 3rem; /* 48px */
  }

  .section-title {
    font-size: 5rem; /* 80px */
  }

  .card-row {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem; /* 20px */
  }

  .card {
    width: 100%;
    max-width: 37.5rem; /* 600px */
    margin-bottom: 3.125rem; /* 50px */
  }

  .voting-buttons {
    flex-direction: column;
    align-items: center;
  }

  .result-article,
  .result-article.reverse {
    flex-direction: column;
  }

  .voting-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .voting-card {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .cards-container,
  .card-row {
    gap: 100px;
  }

  .card {
    font-size: 1.7rem;
    margin-bottom: 0;
    height: 200px;
  }

  .card:last-child {
    margin-top: 0;
  }

  .card-row:not(.single) .card:last-child {
    margin-top: 0;
  }

  .section-title {
    font-size: 2.5rem; /* 60px */
  }

  .topic-tabs {
    gap: 0.625rem; /* 10px */
  }

  .tab {
    font-size: 1.2rem;
  }

  .topic-question {
    font-size: 1.75rem; /* 28px */
  }

  .vote-btn {
    font-size: 1.25rem; /* 20px */
    padding: 1.25rem 2.5rem; /* 20px 40px */
    width: 100%;
  }

  .results-header h2,
  .grid-header h2 {
    font-size: 2rem; /* 36px */
  }

  .article-content h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .article-number {
    height: 32px;
  }

  .article-content p {
    font-size: 15px;
    line-height: normal;
  }

  .voting-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .text-group.emphasis .text-line {
    font-size: 2rem; /* 32px */
  }

  .text-container > .text-line:first-child {
    font-size: 1.5rem;
  }

  .text-group:nth-child(2) .text-line {
    font-size: 1.4rem;
  }

  .text-group:nth-child(3) .text-line {
    font-size: 1.5rem;
  }

  .text-group.emphasis .text-line {
    font-size: 1.7rem;
  }

  .mid-section-02 {
    padding: 5rem 1rem 10rem;
  }

  .text-group:last-child {
    margin-top: 50px;
  }

  .text-container {
    margin-bottom: 3rem;
  }

  .event-section {
    padding: 10rem 0;
  }

  .tab-container {
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .tab-container::-webkit-scrollbar {
    display: none;
  }

  .topic-tabs {
    min-width: 1260px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-left: 1rem;
  }

  .voting-buttons {
    gap: 1rem;
    padding: 0 1rem;
  }

  .voting-buttons span {
    font-size: 1.2rem;
  }

  .key-visual {
    max-width: 310px;
  }

  #results-section {
    padding: 5rem 1rem;
  }

  .dummy-info {
    width: 100%;
  }

  .dummy-info p {
    font-size: 1.1rem;
  }

  .result-article {
    gap: 2rem;
    margin-bottom: 6rem;
  }

  .result-article.result-article-04 {
    background-image: url("/images/background-section-04-mb.png") !important;
  }

  .result-article.result-article-05 {
    background-image: url("/images/background-section-05-mb.png") !important;
  }

  .result-article.full-width {
    padding: 5rem 1rem;
    min-height: 450px;
  }

  .result-article:nth-child(even) {
    flex-direction: column-reverse;
  }

  .article-content {
    padding: 0;
    flex: unset;
  }

  .article-image {
    width: 100%;
  }

  .placeholder-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }

  .voting-card {
    height: 263px;
    border-radius: 0.7rem;
    padding: 30px 10px 10px 10px;
  }

  .voting-grid-section {
    padding: 6rem 1rem;
  }

  .card-bg {
    width: 150px;
    height: 137px;
  }

  .vs-text {
    font-size: 1.4rem;
    gap: 5px;
    white-space: pre;
  }

  .input-form {
    padding: 0 1rem;
  }

  .voting-card__voted {
    font-size: 1rem;
  }

  .contact-form {
    padding: 0;
  }

  .hero-bg {
    background: black;
  }

  .hero-bg img {
    display: none;
  }

  .campaign-button {
    top: 88vh;
    white-space: pre;
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }
}
