/* ===================================================================
   FUZZYBEAR NFTs on XRPL - Style Sheet
   Extracted & cloned from https://fuzzyxrp.com/nft
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bakbak+One&family=Teko:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700;900&family=Roboto:wght@300;400;500;700&display=swap');

:root {
  --primary: #19ff83;
  --secondary: #188bf6;
  --white: #ffffff;
  --black: #000000;
  --overlay: rgba(0, 0, 0, 0.7);
  
  /* Fuzzybear signature colors */
  --color-m5epjlu0: #5e2c07;
  --color-m5h0upp5: #53270a;
  --color-m5eplaf8: #a7c6f0;
  --color-m5epmspg: #292728;
  --color-accent-pink: #ff1a8b;
  --color-accent-green: #19ff83;
  
  /* Fonts */
  --headlinefont: 'Bakbak One', sans-serif, system-ui;
  --contentfont: 'Teko', sans-serif, system-ui;
  --bodyfont: 'Inter', sans-serif, system-ui;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--color-m5epjlu0);
  color: var(--white);
  font-family: var(--bodyfont);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: inline-block;
}

button, input {
  font-family: inherit;
}

/* Container Utility */
.container {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}

/* ===================================================================
   HEADER SECTION
   =================================================================== */
.site-header {
  background-color: var(--black);
  padding: 24px 0 16px;
  position: relative;
  z-index: 100;
  border-bottom: 2px solid rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand-logo-link {
  display: flex;
  align-items: center;
}

.brand-logo-img {
  width: 200px;
  height: auto;
  transition: transform 0.25s ease;
}

.brand-logo-link:hover .brand-logo-img {
  transform: scale(1.03);
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 18px;
}

.desktop-nav li a {
  font-family: var(--contentfont);
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.5px;
  padding: 4px 6px;
  display: flex;
  align-items: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav li a:hover {
  color: var(--color-m5eplaf8);
  transform: translateY(-1px);
}

.desktop-nav li a.active {
  color: var(--color-accent-green);
}

/* Social Links */
.header-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-socials a, .header-socials div {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.header-socials a:hover {
  transform: scale(1.12);
  filter: brightness(1.2);
}

.header-socials img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  padding: 6px;
}

/* Mobile Drawer */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background-color: var(--overlay);
  backdrop-filter: blur(4px);
  z-index: 999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-drawer-overlay.active {
  display: flex;
  opacity: 1;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 360px;
  height: 100%;
  background-color: var(--color-m5epmspg);
  border-left: 3px solid var(--white);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-drawer-overlay.active .mobile-drawer {
  transform: translateX(0);
}

.mobile-drawer-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  margin-bottom: 24px;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.mobile-nav-links a {
  font-family: var(--contentfont);
  font-size: 34px;
  color: var(--white);
  display: block;
  padding: 8px 12px;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--color-accent-green);
}

.mobile-drawer-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-drawer-socials img {
  width: 36px;
  height: 36px;
}

/* ===================================================================
   PAGE HERO / TOP SECTION (SRAEBYZZUF & TITLE)
   =================================================================== */
.hero-section {
  padding: 36px 0 24px;
  text-align: center;
  background-color: var(--color-m5epjlu0);
}

/* Reverse Button: SRAEBYZZUF */
.sraebyzzuf-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.btn-flashing-reverse {
  font-family: var(--headlinefont);
  font-size: 20px;
  text-decoration: none;
  color: #000000;
  background-color: #19ff83;
  padding: 15px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 240px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-flashing-reverse:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

/* Main Section Heading */
.section-title {
  font-family: var(--headlinefont);
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* NFT Display Image Container */
.nft-showcase-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 30px;
}

.nft-showcase-img {
  width: 550px;
  height: 550px;
  max-width: 90vw;
  max-height: 90vw;
  object-fit: cover;
  border: 3px solid var(--white);
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  background-color: var(--color-m5epjlu0);
}

/* Action Buttons Container */
.nft-actions-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn-action-flashing {
  font-family: var(--headlinefont);
  font-size: 20px;
  text-decoration: none;
  color: #000000;
  background-color: #19ff83;
  padding: 15px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 260px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-action-flashing:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

/* Marketplace Dropdown */
.marketplace-dropdown-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
  margin-bottom: 40px;
}

.fuzzy-explorer-btn {
  width: 350px;
  max-width: 90vw;
  background-color: #19FF83;
  color: #000000;
  font-family: var(--headlinefont);
  font-size: 22px;
  padding: 15px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: background-color 0.25s ease, color 0.25s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.fuzzy-explorer-btn:hover,
.fuzzy-explorer-btn.active {
  background-color: var(--color-m5epmspg);
  color: #19FF83;
}

.fuzzy-explorer-icon {
  transition: transform 0.3s ease;
  display: inline-block;
}

.fuzzy-explorer-icon.rotate {
  transform: rotate(180deg);
}

.fuzzy-explorer-list {
  display: none;
  position: absolute;
  top: 100%;
  width: 350px;
  max-width: 90vw;
  background-color: var(--color-m5epmspg);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  z-index: 100;
  border-radius: 0 0 5px 5px;
  overflow: hidden;
}

.fuzzy-explorer-list.show {
  display: block;
}

.fuzzy-explorer-list a {
  display: block;
  color: #19FF83;
  font-family: var(--headlinefont);
  font-size: 22px;
  padding: 14px 20px;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fuzzy-explorer-list a:hover {
  background-color: #19FF83;
  color: #000000;
}

/* ===================================================================
   COUNTDOWN TIMER SECTION
   =================================================================== */
.countdown-section {
  padding: 30px 0;
  text-align: center;
  background-color: var(--color-m5epjlu0);
}

.countdown-flex-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  text-align: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 90px;
}

.countdown-number {
  font-family: var(--contentfont);
  font-size: 120px;
  line-height: 1;
  color: #19ff83;
  margin: 0;
  font-weight: 500;
  transition: color 0.1s ease;
}

.countdown-label {
  font-family: var(--contentfont);
  font-size: 24px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ===================================================================
   FUZZY BAR SECTION & ACCORDION TIMELINE
   =================================================================== */
.fuzzy-bar-section {
  padding: 30px 0;
  text-align: center;
  background-color: var(--color-m5epjlu0);
}

.btn-view-xrpcafe {
  font-family: var(--headlinefont);
  font-size: 20px;
  text-decoration: none;
  color: #000000;
  background-color: #FF1A8B;
  padding: 15px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 260px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  margin: 20px auto 25px;
}

.golden-ticket-subtitle {
  font-family: var(--headlinefont);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto 20px;
  padding: 0 15px;
}

.timeline-heading {
  font-family: var(--headlinefont);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

/* Accordion Component */
.timeline-accordion-container {
  max-width: 670px;
  margin: 0 auto 20px;
  padding: 0 15px;
}

.timeline-item {
  border: 1.5px solid var(--white);
  border-radius: 10px;
  background-color: var(--color-m5epjlu0);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.timeline-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  cursor: pointer;
  background-color: var(--color-m5epjlu0);
  user-select: none;
  transition: background-color 0.2s ease;
}

.timeline-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.timeline-chevron {
  font-size: 14px;
  transition: transform 0.25s ease;
  color: var(--white);
}

.timeline-item.active .timeline-chevron {
  transform: rotate(180deg);
  color: var(--color-m5eplaf8);
}

.timeline-title {
  font-family: var(--headlinefont);
  font-size: 22px;
  color: var(--white);
  margin: 0;
  font-weight: 400;
}

.timeline-title s {
  opacity: 0.85;
}

.timeline-item.active .timeline-title {
  color: var(--color-m5eplaf8);
}

.timeline-content-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 20px;
  background-color: var(--color-m5epjlu0);
  text-align: left;
}

.timeline-item.active .timeline-content-panel {
  max-height: 200px;
  padding: 12px 20px 16px;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
}

.timeline-content-panel p {
  font-family: var(--contentfont);
  font-size: 23px;
  color: var(--white);
  margin: 0;
  line-height: 1.3;
}

.timeline-footnote {
  font-family: var(--contentfont);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin-top: 12px;
  line-height: 1.3;
}

/* ===================================================================
   BANNER GENERATOR SECTION
   =================================================================== */
.banner-gen-section {
  padding: 40px 0;
  background-color: var(--color-m5epjlu0);
  text-align: center;
}

.banner-gen-subtitle {
  font-family: var(--headlinefont);
  font-size: 23px;
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 400;
}

.banner-gen-box {
  max-width: 650px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 24px;
  border-radius: 10px;
  text-align: center;
}

.gen-input-group {
  margin-bottom: 16px;
  text-align: left;
}

.gen-label {
  display: block;
  font-family: var(--headlinefont);
  color: var(--white);
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.gen-input {
  width: 100%;
  padding: 10px 14px;
  font-family: var(--contentfont);
  font-size: 22px;
  background-color: rgba(255, 255, 255, 0.95);
  color: #111;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.gen-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(25, 255, 131, 0.3);
}

.size-controls-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 16px 0;
  flex-wrap: wrap;
}

.btn-size-step {
  padding: 6px 14px;
  font-family: var(--headlinefont);
  font-size: 16px;
  font-weight: bold;
  background: var(--color-m5eplaf8);
  color: #000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.1s ease, filter 0.2s ease;
}

.btn-size-step:hover {
  filter: brightness(1.1);
  transform: scale(1.05);
}

.btn-size-step:active {
  transform: scale(0.95);
}

.canvas-preview-wrapper {
  margin: 20px 0;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  overflow: hidden;
  background: #222;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

#bannerCanvas {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.gen-error-message {
  color: #ff5555;
  font-weight: bold;
  font-family: var(--bodyfont);
  font-size: 14px;
  min-height: 20px;
  margin-top: 6px;
}

.btn-download-banner {
  margin-top: 14px;
  padding: 14px 28px;
  font-family: var(--headlinefont);
  font-size: 18px;
  font-weight: bold;
  background: #19FF83;
  color: #000000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(25, 255, 131, 0.3);
}

.btn-download-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(25, 255, 131, 0.5);
}

/* Preset background choices selector */
.bg-selector-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 14px 0 20px;
}

.bg-choice-pill {
  font-family: var(--bodyfont);
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.2s ease;
}

.bg-choice-pill:hover,
.bg-choice-pill.active {
  background: #19FF83;
  color: #000;
  border-color: #19FF83;
  font-weight: 600;
}

/* ===================================================================
   EMBED SHOWCASE SECTION
   =================================================================== */
.embed-showcase-section {
  padding: 24px 0;
  text-align: center;
  background-color: var(--color-m5epjlu0);
}

.embed-frame-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
}

.embed-frame {
  width: 550px;
  height: 250px;
  border-radius: 6px;
  border: 3px solid var(--white);
  max-width: 100%;
  background: #111;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* ===================================================================
   FOOTER SECTION
   =================================================================== */
.site-footer {
  padding: 30px 0 50px;
  background-color: var(--color-m5epjlu0);
  border-top: 2px solid rgba(0, 0, 0, 0.3);
  text-align: center;
}

.newsletter-box {
  max-width: 650px;
  margin: 0 auto 30px;
  padding: 0 20px;
}

.newsletter-form-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-input-wrapper {
  position: relative;
  width: 100%;
}

.newsletter-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--white);
  pointer-events: none;
}

.newsletter-input {
  width: 100%;
  background-color: rgba(94, 44, 7, 0.3);
  color: var(--white);
  border: 1px solid var(--white);
  border-radius: 5px;
  padding: 12px 20px 12px 42px;
  font-family: var(--contentfont);
  font-size: 22px;
  outline: none;
  transition: border-color 0.2s ease;
}

.newsletter-input::placeholder {
  color: var(--white);
  opacity: 0.85;
}

.newsletter-input:focus {
  border-color: var(--primary);
}

.newsletter-btn-submit {
  background: #19ff83;
  color: #000000;
  border: none;
  border-radius: 5px;
  padding: 12px 20px;
  font-family: var(--headlinefont);
  font-size: 22px;
  cursor: pointer;
  width: 100%;
  transition: transform 0.15s ease, filter 0.2s ease;
}

.newsletter-btn-submit:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.newsletter-header-text {
  font-family: var(--contentfont);
  font-size: 22px;
  color: var(--white);
  margin-top: 10px;
}

.newsletter-feedback {
  margin-top: 8px;
  font-size: 14px;
  font-family: var(--bodyfont);
  display: none;
}

.newsletter-feedback.success {
  display: block;
  color: var(--primary);
}

/* Footer Social Row */
.footer-social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.footer-social-row a,
.footer-social-row div {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.footer-social-row a:hover,
.footer-social-row div:hover {
  transform: scale(1.15);
}

.footer-social-row img {
  width: 45px;
  height: 45px;
}

/* Rocking Logo */
.rocking-logo-wrapper {
  margin: 10px auto 20px;
  display: inline-block;
}

.rocking-logo-img {
  width: 200px;
  cursor: pointer;
  animation: rocking 2s infinite ease-out;
}

@keyframes rocking {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(0deg); }
  50% { transform: rotate(2deg); }
  75% { transform: rotate(-2deg); }
  100% { transform: rotate(0deg); }
}

/* Footer Legal Links & Copyright */
.footer-links {
  font-family: var(--contentfont);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--color-m5eplaf8);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copyright {
  font-family: var(--contentfont);
  font-size: 18px;
  color: var(--white);
}

.footer-copyright a {
  color: var(--white);
  text-decoration: underline;
}

/* ===================================================================
   XRPL ADDRESS MODAL
   =================================================================== */
.address-modal-overlay {
  position: fixed;
  inset: 0;
  background-color: var(--overlay);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.address-modal-overlay.show {
  display: flex;
}

.address-modal-box {
  background-color: var(--color-m5epmspg);
  border: 10px solid var(--white);
  border-radius: 8px;
  padding: 30px;
  max-width: 620px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.7);
}

.address-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}

.address-modal-title {
  font-family: var(--headlinefont);
  font-size: 24px;
  color: var(--white);
  margin-bottom: 16px;
}

.address-code-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  padding: 12px 16px;
  font-family: monospace;
  font-size: 16px;
  word-break: break-all;
  color: var(--primary);
  margin-bottom: 16px;
  cursor: pointer;
}

.address-modal-btn {
  font-family: var(--headlinefont);
  font-size: 18px;
  background: var(--primary);
  color: #000;
  border: none;
  border-radius: 4px;
  padding: 10px 24px;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.address-modal-btn:hover {
  transform: scale(1.04);
}

/* Toast alert */
.toast-alert {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #19ff83;
  color: #000;
  font-family: var(--headlinefont);
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.toast-alert.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================================
   RESPONSIVE QUERIES
   =================================================================== */
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  .header-socials {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .section-title {
    font-size: 38px;
  }
  .countdown-number {
    font-size: 80px;
  }
  .countdown-label {
    font-size: 18px;
  }
  .countdown-flex-container {
    gap: 20px;
  }
  .nft-showcase-img {
    width: 360px;
    height: 360px;
  }
  .btn-flashing-reverse,
  .btn-action-flashing,
  .btn-view-xrpcafe {
    width: 240px;
    font-size: 18px;
    padding: 12px 20px;
  }
  .fuzzy-explorer-btn,
  .fuzzy-explorer-list {
    width: 300px;
    font-size: 19px;
  }
  .timeline-title {
    font-size: 18px;
  }
  .timeline-content-panel p {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 32px;
  }
  .countdown-number {
    font-size: 64px;
  }
  .countdown-label {
    font-size: 16px;
  }
  .countdown-flex-container {
    gap: 14px;
  }
  .countdown-item {
    min-width: 60px;
  }
  .nft-showcase-img {
    width: 300px;
    height: 300px;
  }
  .fuzzy-explorer-btn,
  .fuzzy-explorer-list {
    width: 280px;
    font-size: 18px;
  }
}
