  /* Reset and base styles */
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: linear-gradient(174deg, #6977e2 0%, #6c4b9c 100%);
      height: 100vh;
      color: white;
      overflow: hidden;
      display: flex;
      flex-direction: column;
  }

  /* Layout components */
  .main-container {
      width: 100%;
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      overflow-y: auto;
      position: relative;
  }

  .content-wrapper {
      width: 100%;
      max-width: 1440px;
      margin: 0 auto;
      padding: 0px 16px 16px 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .hero-section {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      /* text-align: center; */
      /* margin-top: 30px; */
      position: relative;
  }

  .founder-badge {
      background-color: rgba(255, 255, 255, 0.83);
      color: #696dd3;
      font-family: 'Heebo', sans-serif;
      font-weight: 700;
      font-size: 12px;
      line-height: 18px;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 8px 16px;
      display: inline-block;
      border: 2px solid rgba(255, 255, 255, 0.29);
      border-radius: 20px 20px 20px 0px;
      margin-bottom: 24px;
      z-index: 10;
      transition: all 0.3s ease;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  /* Typography */
  .hero-title {
      font-size: 32px;
      font-weight: 700;
      line-height: 38px;
      color: #ffffff;
      margin-bottom: 16px;
      margin-top: 40px;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .hero-description {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      font-size: 14px;
      font-weight: 400;
      line-height: 20px;
      color: rgba(255, 255, 255, 0.9);
      text-align: center;
      margin-bottom: 24px;
      max-width: 90%;
      letter-spacing: 0.2px;
  }

  .quote-text {
      font-size: 14px;
      font-weight: 400;
      line-height: 18px;
      color: rgba(255, 255, 255, 0.8);
      text-align: center;
      margin-bottom: 32px;
      font-style: italic;
      position: relative;
      padding: 0 20px;
  }

  .quote-text::before,
  .quote-text::after {
      content: '"';
      font-size: 24px;
      color: rgba(255, 255, 255, 0.6);
  }

  /* Showcase container */
  .showcase-container {
      width: 100%;
      max-width: 600px;
      position: relative;
      margin-bottom: 32px;
  }

  /* Character showcase */
  .character-showcase {
      /* Properties moved to the new .showcase-container wrapper */
  }

  .character-card {
      background-color: rgba(255, 255, 255, 0.83);
      border-radius: 24px;
      padding: 24px;
      box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.2);
      position: relative;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .character-card:hover {
      transform: translateY(-5px);
      box-shadow: 0px 12px 40px rgba(0, 0, 0, 0.25);
  }

  .character-image-container {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      margin-bottom: 20px;
  }

  .character-image {
      width: 100%;
      height: auto;
      max-width: 400px;
      border-radius: 24px;
      display: block;
      margin: 0 auto;
      transition: opacity 0.3s ease;
  }

  .character-info {
      position: absolute;
      bottom: 20px;
      left: 24px;
      right: 24px;
      text-align: center;
      color: #333;
      background: rgba(255, 255, 255, 0.95);
      padding: 16px;
      border-radius: 16px;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .character-card:hover .character-info {
      opacity: 1;
      transform: translateY(0);
  }

  .character-name {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 8px;
      color: #696dd3;
  }

  .character-role {
      font-size: 14px;
      font-weight: 500;
      color: #666;
  }

  .navigation-arrows {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 92%;
      display: flex;
      justify-content: space-between;
      padding: 0 16px;
      pointer-events: none;
      z-index: 10;
  }

  .nav-arrow {
      width: 48px;
      height: 48px;
      background-color: rgba(255, 255, 255, 0.85);
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      pointer-events: all;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .nav-arrow:hover {
      background-color: rgba(255, 255, 255, 1);
      transform: scale(1.1);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  }

  .nav-arrow:active {
      transform: scale(0.95);
  }

  .nav-arrow img {
      width: 20px;
      height: 20px;
      filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
  }

  .nav-arrow.next img {
      transform: rotate(180deg);
  }

  .action-buttons {
      position: absolute;
      bottom: -20px;
      right: 16px;
      display: flex;
      gap: 16px;
      z-index: 10;
  }

  .action-btn {
      width: 40px;
      height: 40px;
      background-color: rgba(255, 255, 255, 0.9);
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .action-btn:hover {
      background-color: rgba(255, 255, 255, 1);
      transform: scale(1.1) rotate(10deg);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  }

  .action-btn:active {
      transform: scale(0.95);
  }

  .action-btn img {
      width: 20px;
      height: 20px;
  }

  .action-item {
      position: relative;
  }

  .vote-count {
      position: absolute;
      top: -15px;
      right: -9px;
      width: 24px;
      height: 24px;
      background: #F44336;
      /* Red for likes, like a notification */
      color: white;
      font-size: 10px;
      font-weight: 700;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid white;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      user-select: none;
      z-index: 11;
  }

  #dislikeCount {
      background: #6C4B9C;
      /* Purple to match dislike icon */
  }

  /* Pagination dots */
  .pagination-dots {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-bottom: 32px;
  }

  .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.3);
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
      cursor: pointer;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .dot:hover {
      background-color: rgba(255, 255, 255, 0.5);
      transform: scale(1.2);
  }

  .dot.active {
      width: 16px;
      height: 16px;
      background-color: #ffffff;
      border: none;
      transform: scale(1.2);
  }

  /* Credit section */
  .credit-section {
      text-align: center;
      margin-top: 32px;
      margin-bottom: 32px;
  }

  .credit-text {
      font-size: 14px;
      line-height: 18px;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 16px;
      letter-spacing: 1.5px;
  }

  .credit-highlight {
      font-weight: 700;
      color: #fff;
  }

  /* Footer */
  .footer {
      background-color: rgba(255, 255, 255, 0.29);
      padding: 12px 16px;
      box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.15);
      backdrop-filter: blur(10px);
      width: 100%;
      margin-top: auto;
  }

  .footer-content {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      flex-wrap: wrap;
      max-width: 1440px;
      margin: 0 auto;
  }

  .copyright-symbol {
      background: transparent;
      color: rgba(255, 255, 255, 0.8);
      border: 2px solid rgba(255, 255, 255, 0.59);
      border-radius: 10px;
      padding: 2px 6px;
      font-size: 14px;
      font-weight: 700;
      font-family: 'Roboto', sans-serif;
  }

  .footer-text {
      font-size: 14px;
      line-height: 20px;
      color: #ffffff;
  }

  .footer-bold {
      font-weight: 700;
  }

  /* Interactive states */
  .founder-badge:hover {
      background-color: rgba(255, 255, 255, 0.95);
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  }

  /* Progress bar */
  .progress-bar {
      width: 100%;
      height: 4px;
      background-color: rgba(255, 255, 255, 0.2);
      border-radius: 2px;
      margin-bottom: 24px;
      overflow: hidden;
  }

  .progress-fill {
      height: 100%;
      background-color: #ffffff;
      width: 0%;
      transition: width 0.3s ease;
      border-radius: 2px;
  }

  /* Stats section */
  .stats-section {
      display: flex;
      justify-content: center;
      gap: 24px;
      margin: 24px 0;
      flex-wrap: wrap;
  }

  .stat-item {
      text-align: center;
      background: rgba(255, 255, 255, 0.15);
      padding: 16px;
      border-radius: 16px;
      min-width: 100px;
      backdrop-filter: blur(5px);
  }

  .stat-number {
      font-size: 24px;
      font-weight: 700;
      color: white;
      margin-bottom: 4px;
  }

  .stat-label {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.8);
  }

  /* Responsive media queries */
  @media (min-width: 640px) {
      .content-wrapper {
          padding: 0px 24px 24px 24px;
      }

      .hero-title {
          font-size: 42px;
          line-height: 50px;
      }

      .hero-description {
          font-size: 16px;
          line-height: 22px;
          max-width: 80%;
      }

      .quote-text {
          font-size: 16px;
          line-height: 20px;
      }

      .founder-badge {
          font-size: 14px;
          line-height: 20px;
          padding: 10px 20px;
      }

      .character-card {
          padding: 32px;
      }

      .nav-arrow {
          width: 56px;
          height: 56px;
          border-radius: 50%;
      }

      .nav-arrow img {
          width: 24px;
          height: 24px;
      }

      .action-btn {
          width: 48px;
          height: 48px;
          border-radius: 50%;
      }

      .action-btn img {
          width: 24px;
          height: 24px;
      }

      .action-buttons {
          bottom: -24px;
      }
  }

  @media (min-width: 768px) {
      .content-wrapper {
          padding: 0px 32px 32px 32px;
      }

      .hero-section {
          /* margin-top: 40px; */
      }

      .hero-title {
          font-size: 48px;
          line-height: 58px;
      }

      .hero-description {
          font-size: 17px;
          line-height: 24px;
          max-width: 75%;
      }

      .quote-text {
          font-size: 17px;
          line-height: 21px;
      }

      .credit-text {
          font-size: 16px;
          line-height: 20px;
      }

      .footer-text {
          font-size: 16px;
          line-height: 22px;
      }

      .stats-section {
          gap: 32px;
      }

      .stat-item {
          padding: 20px;
          min-width: 120px;
      }

      .stat-number {
          font-size: 28px;
      }
  }

  @media (min-width: 1024px) {
      .content-wrapper {
          padding: 0px 48px 48px 48px;
      }

      .hero-section {
          /* margin-top: 50px; */
      }

      .hero-title {
          font-size: 52px;
          line-height: 63px;
      }

      .hero-description {
          font-size: 18px;
          line-height: 26px;
          max-width: 70%;
      }

      .quote-text {
          font-size: 18px;
          line-height: 21px;
      }

      .founder-badge {
          font-size: 16px;
          line-height: 24px;
          padding: 12px 24px;
      }

      .character-card {
          padding: 48px;
      }

      .nav-arrow {
          width: 70px;
          height: 70px;
      }

      .nav-arrow img {
          width: 28px;
          height: 28px;
      }

      .action-btn {
          width: 56px;
          height: 56px;
      }

      .action-btn img {
          width: 28px;
          height: 28px;
      }

      .action-buttons {
          bottom: -28px;
      }

      .showcase-container {
          max-width: 800px;
      }

      .credit-text {
          font-size: 18px;
          line-height: 22px;
      }

      .footer-text {
          font-size: 18px;
          line-height: 24px;
      }

      .stat-number {
          font-size: 32px;
      }
  }

  @media (min-width: 1280px) {
      .showcase-container {
          max-width: 1000px;
      }
  }

  /* Animation keyframes */
  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(20px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .animate-fade-in-up {
      animation: fadeInUp 0.6s ease forwards;
  }

  .delay-1 {
      animation-delay: 0.1s;
  }

  .delay-2 {
      animation-delay: 0.2s;
  }

  .delay-3 {
      animation-delay: 0.3s;
  }

  .delay-4 {
      animation-delay: 0.4s;
  }

  /* Pulse animation for action buttons */
  @keyframes pulse {
      0% {
          box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
      }

      70% {
          box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
      }

      100% {
          box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
      }
  }

  .pulse {
      animation: pulse 2s infinite;
  }

  /* For the selected button state */
  .selected-like {
      /* background-color: #ff69b4 !important; */
      /* Pink for selected like */
      /* Add any other visual effects here */
  }

  .selected-dislike {
      /* background-color: #ff6347 !important; */
      /* Tomato for selected dislike */
      /* Add any other visual effects here */
  }