/* Global Styles */
body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-y: auto !important; /* Force scrolling to be enabled */
  position: relative;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  overscroll-behavior: auto; /* Allow normal scroll behavior */
  font-family: "Montserrat", sans-serif;
  background: #1a1a1a;
  color: #e0e0e0;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Character-specific backgrounds */
.hero-banner {
  position: relative;
  min-height: auto;
  height: auto;
  width: 100%;
  overflow: visible; /* Changed from auto */
  background-attachment: scroll; /* Better performance on mobile */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  padding-bottom: 0;
}

.hero-banner[data-character="fancyboots"] {
  background-image: url("/images/characters/fancyboots-bg.jpg");
}

.hero-banner[data-character="farack"] {
  background-image: url("/images/characters/farack-bg.jpg");
}

.hero-banner[data-character="fuyu"] {
  background-image: url("/images/characters/fuyu-bg.jpg");
}

.hero-banner[data-character="bertha"] {
  background-image: url("/images/characters/bertha-bg.jpg");
}

.hero-banner[data-character="soulslayer"] {
  background-image: url("/images/characters/Soulslayer-bg.jpg");
}

.hero-banner[data-character="tezza"] {
  background-image: url("/images/characters/tezza-bg.jpg");
}

.hero-banner[data-character="saph"] {
  background-image: url("/images/characters/saph-bg.jpg");
}

.hero-banner[data-character="jimmy"] {
  background-image: url("/images/characters/Jimmy-bg.jpg");
}

.hero-banner[data-character="isabella"] {
  background-image: url("/images/characters/isabella-bg.jpg");
}

/* Background overlay */
.hero-banner::before {
  content: "";
  position: fixed; /* Changed from absolute */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

/* Ensure content stays above the overlay */
.hero-banner > * {
  position: relative;
  z-index: 2;
}

/* Main Navigation */
.main-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(26, 26, 26, 0.95);
  margin: 0;
  padding: 0;
}

/* Character Navigation Bar */
.character-nav {
  position: sticky;
  top: 60px;
  z-index: 900;
  background-color: rgba(26, 26, 26, 0.95);
  width: 100%;
  margin: 0;
  padding: 0;
  border-top: none;
}

/* Character Profile Container */
.character-profile {
  position: relative;
  height: auto;
  width: 100%;
  overflow: visible; /* Changed from auto/scroll */
  padding: 20px;
}

/* Profile Content */
.character-name,
.character-role,
.profile-section {
  position: relative;
  z-index: 2; /* Keep content above background overlay */
}

/* Smooth transition between profiles */
.character-profile {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  position: absolute;
  width: 100%;
  left: 0;
}

.character-profile.active {
  display: block;
  opacity: 1;
  position: relative;
  height: auto;
  overflow: visible;
}

.character-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.character-nav-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.character-nav-link {
  color: #ffffff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.character-nav-link:hover {
  background-color: rgba(255, 215, 0, 0.2);
}

.character-nav-link.active {
  background-color: gold;
  color: #1a1a1a;
}

@media (max-width: 768px) {
  .character-nav-container {
    padding: 0.5rem;
    gap: 0.5rem;
  }

  .character-nav-link {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
}
/* Newsletter Section */
.newsletter {
  background-color: transparent;
  padding: 20px;
}

.newsletter-content {
  max-width: 100%;
}

.newsletter h2 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

/* Newsletter Form Layout */
.signup-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding: 0 20px; /* Add padding to the form */
}

.form-group {
  position: relative;
  flex-grow: 1;
  max-width: 350px; /* Slightly reduced to make room for button */
  margin: 0;
}

.signup-form input {
  width: 100%;
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  background-color: #333;
  color: #fff;
  height: 35px;
  box-sizing: border-box;
}

.signup-form input::placeholder {
  color: #888;
}

.signup-form button {
  padding: 8px 20px;
  background-color: #d4af37;
  color: #1a1a1a;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
  height: 35px;
  flex-shrink: 0;
  margin-left: 10px; /* Added margin to move button right */
}

.signup-form button:hover {
  background-color: #c4a030;
}

.signup-form button:disabled {
  background-color: #888;
  cursor: not-allowed;
}

.error-message {
  color: #ff6b6b;
  font-size: 0.9rem;
  margin-top: 10px;
  padding: 8px;
  border-radius: 4px;
  text-align: center;
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
}

.error-message.success {
  color: #2ecc71;
  background-color: rgba(46, 204, 113, 0.1);
}

.error-message.warning {
  color: #f1c40f;
  background-color: rgba(241, 196, 15, 0.1);
}

.error-message.error {
  color: #ff6b6b;
  background-color: rgba(255, 107, 107, 0.1);
}

/* Hero Banner */
.hero-banner {
  text-align: center;
  padding: 120px 20px 100px; /* Increased top padding from 80px to 120px */
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("/images/thecrew.png") center center/cover no-repeat;
  position: relative;
}

.hero-content {
  position: absolute;
  top: 45%; /* Adjusted from 35% to 45% */
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 2rem;
  z-index: 2;
  width: 90%;
  max-width: 800px;
  margin-top: 40px; /* Added margin-top */
}

.hero-content h1::before,
.hero-content h1::after {
  content: "☠️";
  font-size: 2.5rem;
  margin: 0 15px;
  vertical-align: middle;
}

.hero-content h2 {
  font-family: "Pirata One", cursive;
  color: #c4a030;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-top: 10px;
  font-size: 2rem;
  text-align: center;
}

.creator-credit {
  font-style: italic;
  margin-bottom: 10px;
  color: #888;
}

.tagline {
  font-weight: bold;
  color: #d4af37;
  margin-bottom: 30px;
}

.reveal-button {
  padding: 10px 25px; /* Reduced padding */
  background-color: #d4af37;
  color: #1a1a1a;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem; /* Slightly smaller font */
  transition: background-color 0.3s;
  font-weight: bold;
  margin: 0 auto; /* Center horizontally */
  display: block; /* Allows margin auto to work */
}

.reveal-button:hover {
  background-color: #c4a030;
}

/* Content Section */
.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.creator-credit {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 5px;
}

.tagline {
  font-size: 0.9rem;
  color: #d4af37;
  font-style: italic;
}

.author-link {
  color: #007bff;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease;
}

.author-link:hover {
  color: #0056b3;
}
pre[class*="language-"] {
  border-radius: 6px;
  margin: 1.5em 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.code-block-header {
  background: #2d2d2d;
  color: #fff;
  padding: 0.5em 1em;
  border-radius: 6px 6px 0 0;
  font-family: monospace;
  font-size: 0.9em;
}

.code-block-container {
  margin: 1.5em 0;
}

/* Optional: Add a copy button */
.copy-button {
  position: absolute;
  right: 0.5em;
  top: 0.5em;
  padding: 0.3em 0.6em;
  background: #444;
  border: none;
  color: white;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.8em;
}

.copy-button:hover {
  background: #555;
}
/* Enhanced animations */
@keyframes rockingBoat {
  0% {
    transform: rotate(-8deg) translateY(0px);
  }
  25% {
    transform: rotate(0deg) translateY(-5px);
  }
  50% {
    transform: rotate(8deg) translateY(0px);
  }
  75% {
    transform: rotate(0deg) translateY(-5px);
  }
  100% {
    transform: rotate(-8deg) translateY(0px);
  }
}

@keyframes fadeInOut {
  0% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}

@keyframes titleFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
  .hero-banner {
    padding-top: 100px; /* Slightly less padding on mobile */
    background-attachment: scroll; /* Better mobile performance */
  }

  .hero-banner::before {
    position: absolute; /* Better for mobile */
  }

  .story-intro {
    bottom: 100px;
    width: 90%; /* Slightly wider on mobile */
    padding: 15px;
    font-size: 0.9rem; /* Smaller font size */
    line-height: 1.4; /* Tighter line height */
    margin: 0 auto 20px;
  }

  .banner-footer {
    margin-top: 60px;
    padding: 15px;
  }

  .creator-credit {
    font-size: 0.9rem; /* Slightly smaller on mobile */
  }

  .tagline {
    font-size: 0.8rem; /* Slightly smaller on mobile */
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content h1::before,
  .hero-content h1::after {
    font-size: 1.8rem;
  }

  .pirate-ship img {
    width: 150px;
  }

  .loading-text {
    font-size: 1.2rem;
  }

  .hero-content {
    top: 40%; /* Adjusted for mobile */
    margin-top: 20px; /* Less margin on mobile */
  }

  .character-profile {
    padding-top: 85px; /* Reduced from 100px */
    margin-bottom: 120px; /* Increase footer spacing on mobile */
  }

  /* Ensure last section has enough space */
  .profile-section:last-of-type {
    margin-bottom: 40px;
  }

  .character-nav {
    top: 50px; /* Adjusted for mobile main nav height */
  }

  html {
    scroll-padding-top: 120px; /* Adjust for mobile nav heights */
  }
}

/* Navigation Styles */
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #d4af37;
}

.nav-logo img {
  height: 40px;
  width: auto;
  margin-right: 10px;
}

.nav-logo span {
  font-family: "Pirata One", cursive;
  font-size: 1.5rem;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-link {
  color: #e0e0e0;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #d4af37;
  background-color: rgba(212, 175, 55, 0.1);
}

.nav-link.active {
  color: #d4af37;
  border-bottom: 2px solid #d4af37;
}

/* Footer Styles */
.site-footer {
  background-color: #2c1810;
  color: #e0e0e0;
  padding: 40px 0 20px;
  position: relative;
  width: 100%;
  z-index: 3;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-section h3 {
  color: #d4af37;
  font-family: "Pirata One", cursive;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #d4af37;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  padding: 8px 16px;
  background-color: rgba(212, 175, 55, 0.1);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #d4af37;
  color: #1a1a1a !important;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/* Mobile Adjustments */
@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
    padding: 0 15px;
  }

  .footer-section ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .footer-section ul li {
    margin-bottom: 0; /* Remove default margin since we're using gap */
  }

  .social-links {
    justify-content: center;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  animation: fadeIn 0.3s ease-in-out;
}

.modal-content {
  position: relative;
  background-color: #2c1810;
  margin: 15% auto;
  padding: 40px;
  width: 90%;
  max-width: 500px;
  border-radius: 8px;
  border: 2px solid #d4af37;
  animation: slideIn 0.3s ease-in-out;
}

.newsletter-content {
  text-align: center;
}

.newsletter-content h2 {
  color: #d4af37;
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-family: "Pirata One", cursive;
}

.newsletter-content p {
  color: #fff;
  margin-bottom: 25px;
  font-size: 1rem;
}

.signup-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
  max-width: 450px;
}

.form-group {
  position: relative;
  flex-grow: 1;
  margin: 0;
}

.signup-form input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 4px;
  font-size: 0.9rem;
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
  height: 40px;
  box-sizing: border-box;
}

.signup-form input:focus {
  outline: none;
  border-color: #d4af37;
}

.signup-form button {
  padding: 0 20px;
  height: 40px;
  background-color: #d4af37;
  color: #1a1a1a;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}

.signup-form button:hover {
  background-color: #c4a030;
}

.error-message {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  font-size: 0.9rem;
  text-align: left;
  padding: 5px 0;
}

.close-modal {
  position: absolute;
  right: 15px;
  top: 15px;
  color: #d4af37;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.close-modal:hover {
  color: #fff;
  background-color: rgba(212, 175, 55, 0.1);
}

/* Mobile Adjustments */
@media screen and (max-width: 600px) {
  .modal-content {
    margin: 10% auto;
    padding: 30px 20px;
  }

  .signup-form {
    flex-direction: column;
    gap: 15px;
  }

  .signup-form button {
    width: 100%;
  }

  .error-message {
    position: static;
    margin-top: 10px;
    text-align: center;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Add to your existing footer styles */
.footer-section a[href^="mailto"] {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.footer-section a[href^="mailto"]:hover {
  color: #d4af37;
  transform: translateX(5px);
}

.footer-section a[href^="mailto"]::after {
  content: "✉️";
  font-size: 0.9em;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-section a[href^="mailto"]:hover::after {
  opacity: 1;
}

/* Optional: Add smooth scroll behavior */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 160px; /* Combined height of both nav bars plus some padding */
}

/* Remove bullet points from trait lists */
.trait-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.trait-list li {
  margin: 0.5rem 0;
  padding: 0.5rem 0;
  width: 100%;
  box-sizing: border-box;
}

/* Content Background Panel */
.profile-section {
  position: relative;
  height: auto;
  overflow: visible; /* Remove any scroll containers */
  margin-bottom: 30px;
  width: 100%;
  margin: 0 0 1.5rem 0;
  padding: 1.5rem;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.85);
  border-radius: 8px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Character Name and Role */
.character-name {
  color: #d4af37;
  font-size: 2.5rem;
  margin-top: -10px; /* Negative margin to pull it up */
  padding-top: 0;
  margin-bottom: 0.5rem;
  font-family: "Pirata One", cursive;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.character-role {
  color: #fff;
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 2rem;
  font-style: italic;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Section Headers */
.profile-section h3 {
  color: #d4af37;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
  padding-bottom: 0.5rem;
}

/* Text Content */
.profile-section p,
.trait-list li {
  color: #fff;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.trait-list li strong {
  color: #d4af37;
}

/* Hover effect on sections */
.profile-section:hover {
  background-color: rgba(0, 0, 0, 0.9);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

/* Mobile Optimization */
@media screen and (max-width: 768px) {
  .hero-banner {
    padding: 0;
  }

  .character-profile {
    padding: 1rem;
    width: 100%;
    box-sizing: border-box;
  }

  .profile-section {
    margin: 0 0 1rem 0;
    padding: 1rem;
    width: 100%;
  }

  .character-name,
  .character-role,
  .profile-section h3 {
    text-align: center;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }

  .profile-section p {
    margin: 1rem 0;
    padding: 0;
    width: 100%;
  }

  /* Ensure proper text wrapping */
  .trait-list li {
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

/* Smaller screens */
@media screen and (max-width: 480px) {
  .character-profile {
    padding: 0.5rem;
  }

  .profile-section {
    padding: 1rem;
    margin-bottom: 0.8rem;
  }
}

/* Ensure touch targets are large enough */
@media (hover: none) {
  .character-nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .trait-list li {
    min-height: 44px;
  }
}

/* Character Name Spacing */
.character-name {
  margin-top: -10px; /* Negative margin to pull it up */
  padding-top: 0;
  margin-bottom: 0.5rem;
}

.character-role {
  margin-top: 0;
  margin-bottom: 2rem;
}

/* Mobile Adjustments */
@media screen and (max-width: 768px) {
  .character-profile {
    padding-top: 85px; /* Reduced from 100px */
  }

  .character-name {
    margin-top: -5px; /* Slightly less negative margin for mobile */
  }
}

/* Reset container styles */
body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

/* Main container adjustments */
.main-content,
.container,
.content-wrapper,
main,
.character-profiles-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Character Profile Base Styles */
.character-profile {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  box-sizing: border-box;
}

.profile-section {
  width: 100%;
  margin: 0 0 1rem 0;
  padding: 1.5rem;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.85);
  border-radius: 8px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  .character-profile {
    padding: 1rem;
    margin: 0;
    width: 100%;
  }

  .profile-section {
    width: 100%;
    margin: 0 0 1rem 0;
    padding: 1rem;
  }

  .profile-section p,
  .trait-list {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .trait-list li {
    width: 100%;
    margin: 0 0 1rem 0;
    padding: 0;
  }

  .character-name,
  .character-role {
    width: 100%;
    text-align: center;
    margin: 0 0 1rem 0;
    padding: 0;
  }
}

/* Fix any potential horizontal scroll */
* {
  max-width: 100%;
  box-sizing: border-box;
}

/* Mobile Optimizations */
@media screen and (max-width: 768px) {
  body {
    position: relative;
    min-height: 100vh;
    overflow-y: auto;
  }

  .hero-banner {
    min-height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  }

  .character-profile {
    padding-top: 85px;
    padding-bottom: 60px; /* Add space at bottom for mobile */
    height: auto;
    overflow-y: visible;
  }

  .profile-section:last-child {
    margin-bottom: 80px; /* Ensure last section is fully scrollable */
  }
}

/* Fix iOS Safari scrolling */
@supports (-webkit-touch-callout: none) {
  .hero-banner {
    background-attachment: scroll;
  }
}

/* Ensure the page scrolls as one unit */
body {
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  position: relative;
  height: auto;
  min-height: 100vh;
}

/* Mobile specific fixes */
@media screen and (max-width: 768px) {
  .hero-banner,
  .character-profile,
  .profile-section {
    overflow: visible;
    height: auto;
    transform: none;
  }
}
