@font-face {
  font-family: "Trade Gothic Bold";
  src: url("assets/fonts/Trade\ Gothic\ LT\ Bold.ttf");
}

@font-face {
  font-family: "Trade Gothic";
  src: url("assets/fonts/Trade\ Gothic\ LT\ Bold.ttf");
}

@font-face {
  font-family: "Trade Gothic Italic";
  src: url("assets/fonts/Trade\ Gothic\ LT\ Bold.ttf");
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #fbf5ee;
  background-size: 100%;
  color: white;
  overflow-x: hidden;
}

main {
  font-family: "Trade Gothic Bold";
  max-width: 1700px;
  margin: 0 auto;
  width: 100%;
}

.hero-image {
  /* background-image: url("./assets/images/wc-100-banner-img.jpeg"); */
  background-image: url("./assets/images/WC-A1-19-2-26.jpeg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.logo {
  width: 150px;
}

.header-logo {
  width: 100%;
}

.top-section {
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.hero-image {
  width: 100%;
  aspect-ratio: 16 / 9; /* Adjust based on your banner image aspect ratio */
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Optional overlay for better text readability */
/* .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2));
  z-index: 1;
  pointer-events: none;
} */

/* Wrapper for content above video */
.hero-content-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.header-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 20px;
  width: 100%;
  max-width: 1400px;
}

/* Banner Content - Bottom Left */
.banner-content {
  width: 100%;
  max-width: 1400px;
  padding: 0 0 110px 65px;
  text-align: left;
  align-self: flex-start;
}

.banner-content h1 {
  font-family: "Trade Gothic Bold";
  font-size: 3.5rem;
  color: #fff;
  margin: 0 0 10px 0;
  /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); */
}

.banner-content p {
  font-family: "Trade Gothic";
  font-size: 1.5rem;
  color: #fff;
  margin: 0 0 25px 0;
  /* text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3); */
}

.banner-btn {
  display: inline-block;
  font-family: "Trade Gothic Bold";
  font-size: 14px;
  padding: 15px 40px;
  background-color: #cebee3;
  color: #333;
  text-decoration: none;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.banner-btn:hover {
  background-color: #b8a5d4;
  transform: scale(1.05);
}

/* ========================================
   RESPONSIVE STYLES - MOBILE OPTIMIZATIONS
   ======================================== */

/* Laptops (1024px) */
@media (max-width: 1024px) {
  .banner-content {
    padding: 0 0 60px 40px;
  }
}

/* Tablets (768px) */
@media (max-width: 768px) {
  .header-section {
    justify-content: center;
  }

  .hero-image {
    aspect-ratio: 16 / 9;
    background-image: url("./assets/images/mob-WC-A1-19-2-26.png");
    background-size: cover;
  }

  .banner-content {
    padding: 20px 20px;
  }

  .banner-content h1 {
    font-size: 2.5rem;
  }

  .banner-content p {
    font-size: 1.2rem;
  }
}

/* Mobile devices (576px) */
@media (max-width: 576px) {
  .top-section {
    flex-direction: column;
    margin-top: 0px;
  }

  .hero-image {
    /* Fill full viewport height on mobile */
    height: 100vh;
    aspect-ratio: auto;
    border-radius: 0;
    background-image: url("./assets/images/mob-WC-A1-19-2-26.png");
    background-size: cover;
    background-position: center;
  }

  .banner-content {
    padding: 15px 15px;
  }

  .banner-content h1 {
    font-size: 1.5rem;
  }

  .banner-content p {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }

  .banner-btn {
    padding: 10px 25px;
    font-size: 11px;
  }

  .logo {
    margin: 0px auto;
    width: 100px;
  }
}

/* Small mobile devices (480px) */
@media (max-width: 480px) {
  .hero-image {
    /* keep full-height behavior on small mobiles too */
    height: 100vh;
    aspect-ratio: auto;
    border-radius: 0;
    background-image: url("./assets/images/mob-WC-A1-19-2-26.png");
    background-size: cover;
    background-position: center;
  }

  .banner-content {
    padding: 10px 10px;
  }

  .banner-content h1 {
    font-size: 1.2rem;
  }

  .banner-content p {
    font-size: 0.8rem;
    margin-bottom: 10px;
  }

  .banner-btn {
    padding: 8px 20px;
    font-size: 10px;
  }

  .logo {
    margin-top: -10px;
    display: block;
    width: 80px;
  }
}

/* Landscape orientation fixes for mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-image {
    aspect-ratio: 21 / 9; /* Wider ratio for landscape */
  }
}

/* ========================================
   WHAT IS WORLD CLASS SECTION
   ======================================== */

.what-is-world-class {
  background-color: #fbf5ee; /* same as page background */
  padding: 50px 20px 100px 20px;
  text-align: center;
  position: relative;
  overflow: visible;
}

.what-is-world-class-container {
  max-width: 900px;
  margin: 0 auto;
}

.what-is-world-class h2 {
  font-family: "Trade Gothic Bold";
  font-size: 28px;
  color: #000000;
  margin-bottom: 25px;
}

.what-is-world-class h2 span {
  background-color: #cebee3;
  padding: 6px 8px;
  border-radius: 10px;
}

.what-is-world-class p {
  font-family: "Trade Gothic";
  font-size: 18px;
  line-height: 1.5;
  color: #7d7d7d;
  max-width: 820px;
  margin: 0 auto;
  z-index: 100;
}

/* Vector Images Positioning */
.bird-vector {
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: auto;
  z-index: 5;
}

.cocktail-vector {
  position: absolute;
  bottom: 18%;
  right: 10%;
  transform: translateX(50%);
  width: 80px;
  height: auto;
  z-index: 5;
}

/* Tablet */
@media (max-width: 992px) {

  .what-is-world-class h2 {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .what-is-world-class {
    padding: 30px 20px;
  }

  .what-is-world-class h2 {
    font-size: 22px;
  }

  .what-is-world-class p {
    font-size: 15px;
  }

  .bird-vector,
  .cocktail-vector {
    display: none;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .what-is-world-class {
    padding: 20px 15px;
  }

  .what-is-world-class h2 {
    font-size: 18px;
  }

  .what-is-world-class p {
    font-size: 12px;
  }

  .bird-vector,
  .cocktail-vector {
    display: none;
  }
}

/* ========================================
   TOP 3 BARTENDERS LIVE VOTE SECTION
   ======================================== */

.top-three-bartenders {
  background-color: #fbf5ee;
  padding: 50px 20px 10px 20px;
  text-align: center;
  position: relative;
}

.top-three-container {
  max-width: 1200px;
  margin: 0 auto;
}

.top-three-container h2 {
  font-family: "Trade Gothic Bold";
  font-size: 28px;
  color: #000000;
  margin-bottom: 25px;
}

.top-three-container h2 span {
  background-color: #cebee3;
  padding: 6px 12px;
  border-radius: 10px;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

/* Top 3 Grid */
.top-three-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  /* margin-bottom: 30px; */
}

/* Dynamic grid layouts based on card count */
.top-three-grid.count-1 {
  grid-template-columns: 1fr;
  justify-content: center;
  max-width: 400px;
  margin: 0 auto;
}

.top-three-grid.count-2 {
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Hidden section style */
.top-three-bartenders.hidden {
  display: none !important;
}

.top-three-card {
  background: linear-gradient(135deg, #ffffff 0%, #f9f6ff 100%);
  border-radius: 20px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}



/* Bartender Profile */
.bartender-profile {
  margin-bottom: 25px;
}

.bartender-name {
  font-family: "Trade Gothic Bold";
  font-size: 22px;
  color: #333;
  margin: 0 0 8px 0;
}

.bartender-location {
  font-family: "Trade Gothic";
  font-size: 14px;
  color: #888;
  margin: 0;
}

/* Vote Count Section */
.vote-count-section {
  background-color: rgba(206, 190, 227, 0.15);
  border-radius: 15px;
  padding: 20px 15px;
}

.vote-label {
  display: block;
  font-family: "Trade Gothic";
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.vote-number {
  display: block;
  font-family: "Trade Gothic Bold";
  font-size: 36px;
  color: #9b7fc7;
  font-weight: bold;
}

/* Tablet Responsive */
@media (max-width: 992px) {
  .top-three-bartenders {
    padding: 50px 20px 10px 20px;
  }

  .top-three-container h2 {
    font-size: 26px;
  }

  .top-three-grid {
    gap: 25px;
  }

  .top-three-card {
    padding: 25px 15px;
  }

  .bartender-name {
    font-size: 20px;
  }

  .vote-number {
    font-size: 32px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .top-three-bartenders {
    padding: 40px 15px 0px 15px;
  }

  .top-three-container h2 {
    font-size: 22px;
  }

  .top-three-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto 10px auto;
  }

  /* Override dynamic classes on mobile - always use single column */
  .top-three-grid.count-1,
  .top-three-grid.count-2 {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .top-three-card {
    padding: 20px 20px;
  }

  .bartender-name {
    font-size: 20px;
  }

  .vote-number {
    font-size: 32px;
  }
}

/* Small Mobile */
@media (max-width: 576px) {
  .top-three-bartenders {
    padding: 30px 15px 0px 15px;
  }

  .top-three-container h2 {
    font-size: 18px;
  }

  .top-three-card {
    padding: 15px 15px;
  }

  .bartender-name {
    font-size: 18px;
  }

  .bartender-location {
    font-size: 13px;
  }

  .vote-number {
    font-size: 28px;
  }
}

/* ========================================
   DISCOVER WORLD CLASS SECTION
   ======================================== */

.discover-world-class {
  background-color: #cebee3;
  text-align: center;
  position: relative;
  overflow: visible;
}

.discover-container {
  padding: 40px 40px 60px 40px;
  margin: 0 -1px;
  background-color: #f8eedf;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.discover-container h2 {
  font-family: "Trade Gothic Bold";
  font-size: 28px;
  color: #000000;
  margin-bottom: 50px;
  display: inline-block;
  padding: 0;
}

.discover-container h2 span {
  background-color: #cebee3;
  padding: 7px 10px;
  border-radius: 10px;
}

/* Tablet */
@media (max-width: 992px) {
  .discover-container {
    padding: 30px 20px 50px 20px;
  }

  .discover-container h2 {
    font-size: 26px;
    margin-bottom: 25px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .discover-container {
    padding: 25px 15px 40px 15px;
  }

  .discover-container h2 {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

.top-border-vector {
  position: absolute;
  top: 7px;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  z-index: 10;
  transform: translateY(-99%);
  display: block;
}

/* ========================================
   100 BARTENDERS SECTION
   ======================================== */

/* Region Toggle Buttons */
.region-toggle {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.region-btn {
  font-family: "Trade Gothic Bold";
  font-size: 14px;
  padding: 12px 30px;
  border: 2px solid #cebee3;
  border-radius: 30px;
  background-color: transparent;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.region-btn:hover {
  background-color: #e5daf0;
}

.region-btn.active {
  background-color: #cebee3;
  color: #333;
}

/* Bartender Video Cards Grid */
.bartender-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1400px;
  margin: 0 auto;
}

.bartender-card {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
}

.bartender-video {
  position: relative;
  width: 100%;
  padding-bottom: 150%; /* 2:3 vertical aspect ratio */
  background-color: #f0f0f0;
}

.bartender-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.bartender-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Video Thumbnail with Play Button */
.video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Cocktail Name Overlay */
.cocktail-name-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-family: "Trade Gothic Bold";
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 25px;
  max-width: 75%;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Description Overlay - Bottom Left Gradient */
.description-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 16px 16px 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  color: #fff;
  font-family: "Trade Gothic";
  font-size: 13px;
  line-height: 1.4;
  z-index: 2;
  pointer-events: none;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background-color: rgba(206, 190, 227, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.play-button svg {
  width: 30px;
  height: 30px;
  color: #333;
  margin-left: 4px; /* Offset to center the play icon visually */
}

.video-thumbnail:hover .play-button {
  background-color: rgba(184, 165, 212, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.bartender-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}

.bartender-details {
  text-align: left;
}

.bartender-info h4 {
  font-family: "Trade Gothic Bold";
  font-size: 18px;
  color: #333;
  margin: 0;
}

.outlet-name {
  font-family: "Trade Gothic";
  font-size: 12px;
  color: #666;
  margin: 4px 0 0 0;
}

.city-name {
  font-family: "Trade Gothic";
  font-size: 11px;
  color: #888;
  margin: 2px 0 0 0;
}

.vote-btn {
  font-family: "Trade Gothic Bold";
  font-size: 14px;
  padding: 12px 35px;
  background-color: #cebee3;
  border: none;
  border-radius: 25px;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vote-btn:hover {
  background-color: #b8a5d4;
  transform: scale(1.05);
}

/* Registration Form Modal */
.form-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.form-overlay.hidden {
  display: none;
}

.form-modal {
  background-color: #fff;
  padding: 40px;
  border-radius: 20px;
  max-width: 450px;
  width: 90%;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.form-modal .close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  transition: color 0.3s ease;
}

.form-modal .close-btn:hover {
  color: #333;
}

.form-modal h3 {
  font-family: "Trade Gothic Bold";
  font-size: 24px;
  color: #333;
  margin: 0 0 25px 0;
  text-align: center;
}

.form-modal h3 span {
  color: #9b7fc7;
}

#registrationForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#registrationForm input {
  font-family: "Trade Gothic";
  font-size: 16px;
  padding: 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.3s ease;
}

#registrationForm input:focus {
  border-color: #cebee3;
}

#registrationForm input::placeholder {
  color: #999;
}

#registrationForm button {
  font-family: "Trade Gothic Bold";
  font-size: 16px;
  padding: 15px;
  background-color: #cebee3;
  border: none;
  border-radius: 10px;
  color: #333;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
}

#registrationForm button:hover {
  background-color: #b8a5d4;
}

#registrationForm button:disabled {
  background-color: #e0d5ec;
  cursor: not-allowed;
  opacity: 0.8;
}

/* Button Loading Spinner */
.btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #666;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Thank You Content */
.thank-you-content {
  text-align: center;
  padding: 20px 0;
}

.thank-you-content.hidden {
  display: none;
}

.form-content.hidden {
  display: none;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #cebee3 0%, #9b7fc7 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 25px;
}

.thank-you-icon svg {
  width: 40px;
  height: 40px;
  color: #fff;
}

.thank-you-content h3 {
  font-family: "Trade Gothic Bold";
  font-size: 28px;
  color: #333;
  margin: 0 0 10px 0;
}

.thank-you-content p {
  font-family: "Trade Gothic";
  font-size: 16px;
  color: #666;
  margin: 0 0 25px 0;
}

.close-thank-you-btn {
  font-family: "Trade Gothic Bold";
  font-size: 16px;
  padding: 15px 40px;
  background-color: #cebee3;
  border: none;
  border-radius: 10px;
  color: #333;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.close-thank-you-btn:hover {
  background-color: #b8a5d4;
}

/* Already Registered Modal */
.already-registered-content {
  text-align: center;
  padding: 40px 30px;
}

.already-registered-content.hidden {
  display: none;
}

.already-registered-content h3 {
  font-family: "Trade Gothic Bold";
  font-size: 24px;
  color: #8b5fb7;
  margin: 0 0 15px 0;
}

.already-registered-content p {
  font-family: "Trade Gothic";
  font-size: 16px;
  color: #666;
  margin: 0 0 25px 0;
}

.close-already-registered-btn {
  font-family: "Trade Gothic Bold";
  font-size: 16px;
  padding: 15px 40px;
  background-color: #cebee3;
  border: none;
  border-radius: 10px;
  color: #333;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.close-already-registered-btn:hover {
  background-color: #b8a5d4;
}

/* Responsive - Tablet */
@media (max-width: 992px) {
  .bartender-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .region-btn {
    padding: 10px 25px;
    font-size: 13px;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .bartender-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .region-toggle {
    gap: 10px;
    margin-bottom: 30px;
  }

  .region-btn {
    padding: 10px 20px;
    font-size: 12px;
  }

  .bartender-info {
    padding: 15px;
  }

  .bartender-info h4 {
    font-size: 16px;
  }

  .vote-btn {
    padding: 10px 25px;
    font-size: 12px;
  }

  .play-button {
    width: 60px;
    height: 60px;
  }

  .play-button svg {
    width: 25px;
    height: 25px;
  }

  .cocktail-name-overlay {
    top: 15px;
    right: 15px;
    font-size: 14px;
    padding: 10px 16px;
  }

  .description-overlay {
    font-size: 12px;
    padding: 30px 12px 12px 12px;
  }

  .form-modal {
    padding: 30px 25px;
  }

  .form-modal h3 {
    font-size: 20px;
  }
}

/* Responsive - Small Mobile */
@media (max-width: 576px) {
  .bartender-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .region-btn {
    padding: 8px 18px;
    font-size: 11px;
  }

  .play-button {
    width: 50px;
    height: 50px;
  }

  .play-button svg {
    width: 22px;
    height: 22px;
  }

  .cocktail-name-overlay {
    top: 15px;
    right: 15px;
    font-size: 12px;
    padding: 8px 14px;
    border-radius: 20px;
  }

  .description-overlay {
    font-size: 11px;
    padding: 25px 10px 10px 10px;
  }

  .form-modal {
    padding: 25px 20px;
  }

  #registrationForm input {
    padding: 12px 15px;
    font-size: 14px;
  }

  #registrationForm button {
    padding: 12px;
    font-size: 14px;
  }
}

/* BIG Vote Button Container */
.vote-btn {
    position: relative;
    overflow: hidden;

    /* 🔥 BUTTON SIZE — MAKE IT BIGGER HERE */
    padding: 16px 40px;  
    border-radius: 30px;
    font-size: 16px;

    background-color: #cebee3;
    border: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* 🔥 TEXT VIEWPORT — ONE LINE ONLY */
.vote-btn .text-wrapper {
    position: relative;
    height: 22px;        /* only THIS stays fixed */
    line-height: 22px;
    overflow: hidden;
}

/* Text layers stacked */
.vote-btn span {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;

    height: 22px;        /* must match wrapper height */
    line-height: 22px;

    transition: transform 0.45s ease-in-out;
}

/* Default state */
.vote-default {
    transform: translateY(0%);
}
.vote-rolling {
    transform: translateY(100%);   /* hidden below */
}

/* Animation state */
.vote-btn.animating .vote-default {
    transform: translateY(-100%);  /* roll up */
}
.vote-btn.animating .vote-rolling {
    transform: translateY(0%);     /* roll in */
}



/* New popup css - start */
/* Overlay background */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    /* hidden initially */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Popup box */
.popup-box {
    background: linear-gradient(to right, #041412, #0A3F38);
    padding: 25px;
    width: 65%;
    border-radius: 8px;
    text-align: center;
    position: relative;
    height: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    font-size: 22px;
    font-weight: 600;
    color: #ecbc58;
    font-family: "Trade Gothic Bold";
}

/* Close button */
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 23px;
    cursor: pointer;
    /* background: #cebee3; */
    color: #ecbc58;
    /* width: 30px;
    height: 30px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center; */
}

@media only screen and (max-width: 767px) {
    .popup-box {
        width: 80%;
        height: 40%;
    }

    .content {
        font-size: 18px;
    }
}
/* New popup css - end */