/* 1. CSS Variables */
:root {
  --primary-color: #ff9800; /* Orange */
  --secondary-color: #c1c1c1;
  --background-color: #1a1a1a;
  --text-color: #fefefe;
  --accent-color: #2980b9;
  --transition-duration: 0.3s;
  --link-color: #5ddad7; /* Aqua accent for links */
}

/* 2. Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: 'Roboto', sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) #0f0f0f;
}
body::-webkit-scrollbar {
  width: 8px;
}
body::-webkit-scrollbar-track {
  background: #0f0f0f;
}
body::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 8px;
}

/* 3. Link Styles */
a {
  text-decoration: none;
  color: var(--link-color);
  transition: color var(--transition-duration);
}
a:hover {
  color: #b4fffb;
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: var(--primary-color);
  z-index: 1200;
}

/* 4. Fixed Header Styles */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--background-color);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  z-index: 1000;
  height: 80px;
  transition: height 0.3s ease, padding 0.3s ease;
}
.fixed-header.shrink {
  height: 60px;
  padding: 0 20px;
}

/* 5. Header Container */
.header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  position: relative;
}

/* 6. Load Custom Font */
@font-face {
  font-family: 'More Sugar Custom';
  src: url('../fonts/MoreSugar-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* 7. Logo (Desktop) */
.logo {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
}
.logo a {
  font-family: 'More Sugar Custom', cursive;
  font-size: 2rem;
  font-weight: bold;
  color: var(--text-color);
  text-transform: uppercase;
  transition: color var(--transition-duration);
}
.logo a:hover {
  color: #fefefe;
}

/* 8. Navigation Links */
.nav-links {
  display: flex;
  gap: 40px;
}
.nav-links a {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  color: var(--secondary-color);
  font-weight: bold;
  transition: color var(--transition-duration);
}
.nav-links a.active {
  color: var(--text-color);
  border-bottom: 3px solid var(--text-color);
}
.nav-links a:hover {
  color: #fefefe;
}

/* 9. Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
}
.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: var(--text-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.toggle .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.toggle .hamburger-line:nth-child(2) {
  opacity: 0;
}
.toggle .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* 10. Main Content Padding */
.main-content {
  flex: 1;
  padding-top: 100px;
  padding-left: 40px;
  padding-right: 40px;
}

/* 11. Introduction Section */
.introduction {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 40px auto;
  max-width: 1000px;
  padding: 0 20px;
  animation: fadeIn 1.5s ease-out forwards;
  opacity: 0;
}
.intro-text {
  flex: none;
  text-align: left;
}
.intro-main {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-color);
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 5px;
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: 0.15em;
  border-right: 0.15em solid #fefefe;
  animation: typing 2s steps(40, end) forwards;
  display: inline-block;
  position: relative;
}
.caret {
  display: inline-block;
  width: 0.15em;
  border-right: 0.15em solid #fefefe;
}
@keyframes blink-caret {
  0%, 100% { border-color: transparent; }
  50% { border-color: #fefefe; }
}
.blink-caret {
  animation: blink-caret 0.75s step-end infinite;
}
.hide-caret {
  border-right: 0.15em solid transparent;
}
.intro-sub,
.intro-location {
  font-family: 'Roboto', sans-serif;
  color: var(--secondary-color);
  font-size: 23.5px;
  margin-bottom: 5px;
  transition: color var(--transition-duration), transform var(--transition-duration);
}
.intro-main:hover,
.intro-sub:hover,
.intro-location:hover {
  color: #fefefe;
  transform: scale(1.05);
}
.intro-location {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.location-pointer {
  width: 19px;
  height: 19px;
  margin-right: 5px;
}
.intro-logo {
  margin-left: 0;
}
.intro-logo-image {
  height: 200px;
  width: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.intro-logo-image:hover {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

/* 12. Footer Styles */
.site-footer {
  width: 100%;
  text-align: center;
  font-size: 1rem;
  color: var(--secondary-color);
  padding: 20px 0;
  background-color: var(--background-color);
}

/* 13. Responsive Adjustments (HOME) */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    left: 10px;
  }
  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--background-color);
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
  }
  .nav-links.nav-active {
    max-height: 500px;
    padding: 20px 0;
  }
  .logo {
    position: static;
    transform: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    margin: 0 auto;
  }
  .introduction {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 100%;
    padding: 0 10px;
  }
  .intro-text {
    text-align: center;
  }
  .intro-sub,
  .intro-location {
    text-align: center;
  }
  .intro-location {
    justify-content: center;
  }
  .intro-logo {
    margin-left: 0;
    margin-top: 10px;
  }
  .intro-logo-image {
    height: 150px;
  }
}

/* 14. Fade-In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  animation: fadeIn 1s ease-out forwards;
}

/* 15. Typing Animation */
@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

/* 16. Back to Top Button */
#back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  display: none;
  background-color: var(--primary-color);
  color: var(--text-color);
  border: none;
  padding: 15px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  transition: background-color var(--transition-duration), transform var(--transition-duration);
  z-index: 100;
}
#back-to-top:hover {
  background-color: #e67e22;
  transform: translateY(-5px);
}

/* 17. Accordion Styles (Optional) */
.accordion-header {
  cursor: pointer;
  padding: 15px;
  background-color: var(--primary-color);
  color: var(--text-color);
  border: none;
  text-align: left;
  outline: none;
  transition: background-color var(--transition-duration);
}
.accordion-header:hover {
  background-color: #e67e22;
}
.accordion-content {
  padding: 0 15px;
  display: none;
  background-color: #f1f1f1;
  color: #333;
}
.accordion-content.show {
  display: block;
}

/* 18. About Page Styles (Cards) */

/* Generic Card */
.card {
  background-color: #2c2c2c;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
  padding: 40px 20px;
  margin-bottom: 60px;
  max-width: 1000px;
  width: 100%;
}

/* HERO CARD - now same width as other cards */
.about-hero-card {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}
.about-hero-card .card {
  /* Remove special max-width & margin so it matches other cards. */
  display: flex;
  flex-direction: column;
  width: 100%; /* same as generic card */
  overflow: hidden;
}
@media (min-width: 768px) {
  .about-hero-card .card {
    flex-direction: row; /* image on one side, text on the other */
  }
}
/* Keep the smaller portrait if desired, or revert to default. 
   For now, we keep it smaller than default, but the card container 
   itself is the same size as others. */
.about-hero-card .card-media img {
  width: 100%;
  max-width: 400px; /* you can adjust if you want smaller or bigger */
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.about-hero-card .card-media img:hover {
  transform: scale(1.03);
}
.about-hero-card .card-content {
  flex: 1;
  padding: 20px;
  text-align: center;
}
.about-hero-card .card-content h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--text-color);
}
.about-hero-card .card-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--secondary-color);
}

/* PERSONAL INTERESTS CARD */
.about-interests-card .card {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.about-interests-media {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.about-interests-media video {
  max-width: 45%;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}
.about-interests-media video:hover {
  transform: scale(1.03);
}

/* INDUSTRY INVOLVEMENT CARD - White Titles, same hover effect for volunteers image */
.about-industry-card .card {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.about-industry-card h2,
.about-industry-card h3 {
  margin-bottom: 10px;
  color: #fff; /* replaced var(--primary-color) with white */
}
/* same scale hover effect as dog/climbing */
.about-industry-card img.about-volunteers {
  margin-top: 20px;
  max-width: 80%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}
.about-industry-card img.about-volunteers:hover {
  transform: scale(1.03);
}

/* CONTACT CARD - link is orange */
.about-contact-card .card {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.about-contact-card .card a {
  color: var(--primary-color);
  text-decoration: underline;
}

/* 19. Contact Page (Desktop) */
.contact-page h1 {
  text-align: center;
  margin-bottom: 20px;
}
.contact-page .contact-container {
  max-width: 600px;
  margin: 40px auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
  background-color: #ffffff;
  color: #1a1a1a;
  padding: 20px;
  border-radius: 8px;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}
.contact-page .contact-container a {
  color: var(--primary-color);
  text-decoration: underline;
}
.contact-page .contact-container a:hover {
  color: #ffcc66;
}
@media (max-width: 768px) {
  .contact-page .contact-container {
    margin: 20px 20px;
    font-size: 1rem;
    line-height: 1.5;
  }
}

/* SECTION SEPARATOR */
.section-separator {
  height: 400px;
  position: relative;
}

/* Animated Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  text-decoration: none;
}
.scroll-arrow {
  font-size: 3rem;
  color: var(--secondary-color);
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(10px);
  }
  60% {
    transform: translateX(-50%) translateY(5px);
  }
}

/* NEW: General Section Spacing */
main > section {
  margin-bottom: 80px;
}

/* NEW: Under Construction Styles */
.under-construction {
  text-align: center;
  margin: 80px auto;
  max-width: 800px;
  padding: 20px;
  background-color: #2c2c2c;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.5);
}
.under-construction h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}
.under-construction p {
  font-size: 1.2rem;
  color: var(--text-color);
}

/* Featured Projects Grid */
.featured-projects {
  margin: 40px auto 100px;
  max-width: 1200px;
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.85rem;
  color: var(--secondary-color);
}
.section-header h2 {
  font-size: 3rem;
  margin: 10px 0;
}
.section-header p {
  color: var(--secondary-color);
}
.featured-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.project-card {
  background-color: #2c2c2c;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.45);
}
.project-card-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.project-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.project-card-meta {
  font-size: 0.9rem;
  color: var(--secondary-color);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.project-card h3 {
  font-size: 1.8rem;
}
.project-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.08);
}
.project-card-link {
  margin-top: 10px;
  color: var(--primary-color);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* Toolchain Strip */
.toolchain {
  margin: 40px auto 60px;
  max-width: 620px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.toolchain.reveal {
  opacity: 1;
  transform: translateY(0);
}
.toolchain-icons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.toolchip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(26,26,26,0.1);
  background: #ffffff;
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.35s ease, opacity 0.35s ease, box-shadow 0.35s ease;
}
.toolchain.reveal .toolchip {
  opacity: 1;
  transform: translateY(0);
}
.toolchip:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 20px rgba(0,0,0,0.4);
}
.toolchip img {
  width: 32px;
  height: 32px;
}
.toolchip-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111;
}

@media (max-width: 768px) {
  .toolchain-icons {
    gap: 12px;
  }
}

/* --- Updated Portfolio Section Styles --- */
.portfolio-piece {
  text-align: left;
  margin: 60px auto;
  max-width: 1500px;
  padding: 40px 20px;
  background-color: #1e1e1e;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}
.portfolio-title {
  font-size: 5rem;
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
.portfolio-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.portfolio-video {
  max-width: 1000px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.5);
}

/* Assignment Summary Section */
.portfolio-assignment-summary {
  max-width: 500px;
  margin: 20px auto 40px;
  background-color: #2c2c2c;
  padding: 30px;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 4px 6px rgba(0,0,0,0.5);
  color: #fff;
}
.assignment-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
  color: #fff;
}
.assignment-content {
  display: block;
}
.assignment-left {
  text-align: left;
}
.assignment-left ul {
  list-style: disc inside;
  margin-left: 20px;
}
.assignment-left h3 {
  color: #fff;
}

/* Portfolio Sidecards */
.portfolio-sidecards {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 40px auto;
  max-width: 1200px;
}
 .portfolio-sidecard {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #2c2c2c;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
  position: relative;
}
.portfolio-sidecard:hover {
  transform: scale(1.02);
}
.portfolio-sidecard .card-text {
  flex: 1;
  color: #fff;
  text-align: left;
}
.portfolio-sidecard .card-text h2 {
  text-align: center;
}
.portfolio-sidecard .card-image {
  flex: 1;
  position: relative;
}
.portfolio-sidecard .card-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.5);
}

/* Portfolio Extra */
.portfolio-extra {
  margin-top: 40px;
}
.portfolio-extra section {
  margin-bottom: 40px;
}

/* Floor Switcher */
.floor-switcher {
  max-width: 1000px;
  margin: 40px auto;
}
.floor-switcher-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.floor-image-container {
  position: relative;
  width: 100%;
  max-width: 800px;
}
.floor-switcher-title {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  background-color: rgba(0,0,0,0.5);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 1.4rem;
  z-index: 2;
}
.floor-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.floor-indicator {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: rgba(0,0,0,0.6);
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 1rem;
  z-index: 2;
}
.arrow {
  cursor: pointer;
  font-size: 2rem;
  color: #fff;
  background-color: #2c2c2c;
  padding: 10px 20px;
  border-radius: 8px;
  user-select: none;
  transition: background-color 0.3s ease;
}
.arrow:hover {
  background-color: #444444;
}

/* Blockout & Reiterations Section */
.blockout-section {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.section-title {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}
.blockout-description {
  background-color: #2c2c2c;
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: left;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.5);
}
.section-divider {
  border: none;
  border-top: 2px solid #555;
  margin: 30px 0;
}

/* Reflections Section */
.reflection-textbox {
  background-color: #2c2c2c;
  color: #fff;
  padding: 30px;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 4px 6px rgba(0,0,0,0.5);
  margin-top: 40px;
  border-left: 5px solid var(--primary-color);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Carousel Styles (same for both LDA & GP2) */
.blockout-carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 20px;
  height: 500px; /* Keep the LDA style by default */
  overflow: hidden;
}
.carousel-container {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}
.carousel-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(44,44,44,0.7);
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}
.carousel-prev {
  left: 10px;
}
.carousel-next {
  right: 10px;
}

/* Responsive Enhancements */
@media (max-width: 1024px) {
  .main-content {
    padding-left: 20px;
    padding-right: 20px;
  }
  .portfolio-piece {
    padding: 30px 20px;
  }
  .portfolio-sidecard {
    flex-direction: column;
    text-align: center;
  }
  .portfolio-sidecard .card-text,
  .portfolio-sidecard .card-image {
    width: 100%;
  }
  .portfolio-title {
    font-size: 3.2rem;
  }
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2.2rem;
  }
  .featured-projects-grid,
  .latest-posts-grid {
    grid-template-columns: 1fr;
  }
  .project-card-media img {
    height: 200px;
  }
  .project-card-body {
    padding: 18px;
  }
  .portfolio-assignment-summary,
  .reflection-textbox,
  .blockout-section {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .portfolio-sidecards {
    gap: 20px;
  }
  .portfolio-extra section {
    margin-bottom: 20px;
  }
  .portfolio-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 500px) {
  .intro-main {
    font-size: 32px;
    letter-spacing: 0.08em;
  }
  .intro-sub,
  .intro-location {
    font-size: 18px;
  }
  .project-card-meta {
    letter-spacing: 0.08em;
  }
  .project-card-link,
  .post-card-link {
    letter-spacing: 0.1em;
  }
  .portfolio-piece {
    padding: 20px;
  }
  .portfolio-assignment-summary {
    padding: 20px;
  }
  .portfolio-sidecard {
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
