.hero-cartoon {
    /* background: #00000084 url('./images/') left center / cover no-repeat; optional background */
    padding: 20px 40px;
    text-align: left;
      font-family: 'Lilita One', cursive !important;
    color: #111;
    /* border-radius: 20px !important;
    border: 4px solid green; */

    
  }

  .hero-box {
    max-width: 800px;
    margin: 2rem auto;
    background: #fff url('./images/comic-halftone-light.png') center center / cover no-repeat;
    border: 6px solid #000;
    border-radius: 20px;
    box-shadow: 10px 10px 0 #000;
    padding: 2.5rem;
    text-align: center;
    transform: rotate(-1.5deg);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .hero-headline {
    font-family: 'Lilita One', cursive;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #29b554;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow:
      -2px -2px 0 #000,
      2px -2px 0 #000,
      -2px 2px 0 #000,
      2px 2px 0 #000;
  }
  
  .hero-subtext {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    font-family: 'Lilita One', sans-serif;
    color: rgb(0, 0, 0) !important;
  }
  
  .hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 25px;
  }
  
  .comic-btn {
    background: #ffde59;
    color: #000;
    border: 3px solid #000;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 4px 4px 0 #000;
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: 'Lilita One', cursive;
  }
  
  .comic-btn:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 #000;
  }
  
  .comic-btn.secondary {
    background: #f76c6c;
    color: #fff;
  }
  
  .hero-extra {
    font-size: 1rem;
    margin-top: 15px;
    color: #000000;
    max-width: 600px;
  }
  

/* Floating gif styles */
.floating-gif {
  position: absolute;
  bottom: 80px;
  right: -130px;
  width: 250px; /* or whatever fits */
  animation: floaty 3s ease-in-out infinite;
  pointer-events: none; /* so it doesn't block any clicks */
}
.floating-gif2 {
  position: absolute;
  bottom: -200px;
  left: 0px;
  width: 250px; /* or whatever fits */
  animation: floaty 3s ease-in-out infinite;
  pointer-events: none; /* so it doesn't block any clicks */
}

@media (min-width: 800px) and (max-width: 900px) {

  .floating-gif {
    position: absolute;
    bottom: 80px;
    right: -220px;
    width: 250px; /* or whatever fits */
    animation: floaty 3s ease-in-out infinite;
    pointer-events: none; /* so it doesn't block any clicks */
  }
  .floating-gif2 {
    position: absolute;
    bottom: -50px;
    left: 0px;
    width: 150px; /* or whatever fits */
    animation: floaty 3s ease-in-out infinite;
    pointer-events: none; /* so it doesn't block any clicks */
  }

  

}
  


  .footer-banner {
    width: 100%;
    overflow: hidden;
  }
  
  .footer-img {
    width: 100%;
    height: auto;
    display: block;
  }
  





  /* WHAT IS NUM 2 SECTION */



  .comic-section {
    position: relative;
    background: radial-gradient(circle at center, #fff 30%, #fbd1d1 100%);
    background-image: url('./images/aboutbg2.png');
    background-size: cover;
    padding: 14rem 2rem;
    display: flex;
    justify-content: center;
    overflow: hidden;
    
  }
  
  /* Overlay using ::before */
  .comic-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.0); /* semi-transparent black */
    z-index: 1;
  }
  
  /* Make sure content stays above the overlay */
  .comic-section > * {
    position: relative;
    z-index: 2;
  }
  
  
  .comic-panel {
    max-width:800px;
    background: #fff;
    border: 6px solid #000;
    border-radius: 16px;
    box-shadow: 8px 8px 0 #000;
    padding: 2rem;
    text-align: center;
    font-family:  'Lilita One', cursive;
    color: #111;

  
  }
  
  .comic-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0 #000000;
    font-family: 'Bangers', sans-serif;
    color: #2db352 !important;
  }
  
  .comic-copy,
  .comic-extra {
    font-size: 1rem !important;
    line-height: 1.6;
    margin: 1rem 0;
  }
  
  .comic-panel:hover {
    transform: scale(1.02);
    box-shadow: 10px 10px 0 #000;
    transition: all 0.3s ease;
  }
  

  .comic-highlight {
    background: #ffde59; /* light pink */
    border: 4px solid #000;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    box-shadow: 6px 6px 0 #000;
 
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .comic-highlight p {
    margin: 0;
    font-size: 1.2rem;
    font-family: 'Lilita One', sans-serif !important;
    color: #000000;
    text-shadow: white 2px 2px;
  }
  
  .comic-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .comic-album {
    flex: 1;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .album-step {
    background: #fff;
    border: 5px solid #000;
    border-radius: 14px;
    box-shadow: 6px 6px 0 #000;
    padding: 1rem;
    text-align: center;
     font-family: 'Bangers', sans-serif;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .album-step:hover {
    transform: scale(1.05) rotate(-1deg);
    box-shadow: 8px 8px 0 #000;
  }
  
  .album-img {
    max-width: 100%;
    border-radius: 8px;
    border: 3px solid #000;
    box-shadow: 4px 4px 0 #000;
    margin-bottom: 0.5rem;
  }
  
  .album-caption {
    font-size: 1.1rem;
    font-family: 'Lilita One', sans-serif;
    color: #222;
    text-shadow: 1px 1px 0 #fff;
  }
  
  /* Right side comic-panel adjusts to fill remaining */
  .comic-panel {
    flex: 2;
    margin-top: 0 !important;
  }
  .comic-container.vertical-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.comic-container.vertical-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Album now becomes a row */
.comic-album-row {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.album-step {
  background: #fff;
  border: 5px solid #000;
  border-radius: 14px;
  box-shadow: 6px 6px 0 #000;
  padding: 0.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  max-width: 180px;
}

.album-step:hover {
  transform: scale(1.05) rotate(-1deg);
  box-shadow: 8px 8px 0 #000;
}

.album-img {
  max-width: 100%;
  border-radius: 8px;
  border: 3px solid #000;
  box-shadow: 4px 4px 0 #000;
}








  /*PRESALE SECTION*/

  .comic-presale {
    background: radial-gradient(circle at center, #fff 30%, #ffecf1 100%);
    background-image: url('./images/presalebg.png');
    background-size: cover;
    padding: 4rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }

  .presale-frame {
    max-width: 500px;
    background: #ffffff89;
    border: 6px solid #000;
    border-radius: 20px;
    box-shadow: 10px 10px 0 #000;
    padding: 2.5rem;
     font-family: 'Lilita One', sans-serif;
    margin-top: 200px !important;
    margin-bottom: 200px !important;
    margin-left: 50px !important;
  }
  
  .comic-images-custom {
    position: relative;
    width: 800px;
    height: 250px;
  }
  
  .comic-images-custom .big-img {
    position: absolute;
    top:-100px;
    left: 160px; /* move big image slightly to the right */
    width: 600px;

    border-radius: 15px;
  
  }
  
  .comic-images-custom .small-img {
    position: absolute;
    bottom: -100px;
    left: 100px; /* keep it on the left */
    width: 180px;
    transition: transform 0.2s;
    z-index: 10;
    transform: rotate(-3deg);
  }
  

  .small-img:hover {
    animation: shakeRotate 0.5s ease-in-out;
  }
  
  /* Keyframes for the shake / rotate wiggle */
  @keyframes shakeRotate {
    0% { transform: rotate(-3deg) translateX(0); }
    25% { transform: rotate(-6deg) translateX(-5px); }
    50% { transform: rotate(3deg) translateX(5px); }
    75% { transform: rotate(-6deg) translateX(-5px); }
    100% { transform: rotate(-3deg) translateX(0); }
  }
  /* Responsive fallback for small screens */
  @media (max-width: 768px) {
    .comic-presale {
      flex-direction: column;
      align-items: center;
    }
  
    .comic-images-custom {
      position: static;
      width: auto;
      height: auto;
      display: flex;
      gap: 1rem;
      justify-content: center;
      margin-top: 2rem;
    }
  
    .comic-images-custom img {
      position: static;
      transform: none;
      width: 40%;
    }
  }
  








  /*COMICWHITELIST SECTION*/


  .comic-whitelist {
    background: radial-gradient(circle at center, #fff 30%, #f0dff7 100%);
    background-image: url('images/whitelistbg2.png');
    background-position: center;
    background-size: cover;
    padding: 10rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .whitelist-frame {
    max-width: 500px;
    background: #87cb2898;
    border: 6px solid #000;
    border-radius: 20px;
    box-shadow: 10px 10px 0 #000;
    padding: 2.5rem;
    text-align: center;
    font-family:  'Lilita One', cursive;
    position: relative;
    margin-left: 100px;
    height: auto;
    margin-right: 100px;
  }
  
  .whitelist-frame h2 {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 #000000;
    color: #924819 !important;
  }
  
  .whitelist-frame p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: 'Lilita One', sans-serif;
    
  }
  
  .comic-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .comic-form input {
    width: 80%;
    padding: 0.8rem 1rem;
    font-size: 1.1rem;
    border: 3px solid #000;
    border-radius: 10px;
    outline: none;
    font-family:  'Lilita One', cursive;
  }
  
  .submit-cta {
    display: inline-block;
    background: #924819;
    color: #fff;
    font-size: 1.3rem;
    font-weight: bold;
    padding: 0.9rem 2rem;
    border: 4px solid #000;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 5px 5px 0 #000;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .submit-cta:hover {
    transform: scale(1.05);
    box-shadow: 7px 7px 0 #000;
  }


  .submit-cta.with-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: visible; /* allow icon to go outside */
  }
  
  /* style the image inside the button */
  .btn-icon {
    position: absolute;
    right: -130px; /* moves it outside the button on right */
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    width: 300px;
    height: auto;
    background: none !important;
    transition: transform 0.3s;
  }
  
  /* hover effect for fun pop */
  .submit-cta.with-icon:hover .btn-icon {
    transform: translateY(-50%) rotate(10deg) scale(1.1);
  }
  
  
  /* Responsive */
  @media (max-width: 768px) {
    .whitelist-frame {
      max-width: 90%;
    }
  
    .comic-form input {
      width: 90%;
    }
  }
  

  .comic-share-box {
    max-width: 600px;
    background: url('./images/bgshare.png') center center / cover no-repeat;
    
  
    padding: 9rem;
    text-align: center;
    font-family: 'Lilita One', cursive;
    margin: 2rem auto;
    transform: rotate(-2deg);
    color: #924819 !important;
    transition: transform 0.3s, box-shadow 0.3s;
 
  }

  
  .comic-share-text {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 0 #ffffff;
    
  }
  
  .share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: #924819;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 0.8rem 2rem;
    margin-top: 10px;
    border: 4px solid #000;
    border-radius: 12px;
    text-decoration: none !important;
    box-shadow: 5px 5px 0 #ffffff;
    transition: all 0.3s;
  }
  
  .share-btn:hover {
    transform: scale(1.05);
    box-shadow: 7px 7px 0 #000;
    color: rgb(255, 255, 255) !important;
  }
  
  .share-btn .x-icon {
    width: 20px;
    height: 20px;

    
    transition: transform 0.3s;
  }
  
 


  .corwnimg{
    width: 200px;
    height: 200px;
    margin-left: 160px !important;
  }










  /*MENIFESTO SECTION*/





  .manifesto-section {
    background: radial-gradient(circle at center, #fff 40%, #ffd8d8 100%);
    padding: 5rem 2rem;
    font-family:  'Lilita One', cursive;
    color: #111;
    text-align: center;
    background-image: url('./images/menifestobg.png');
    background-position: center;
    background-size: cover;
  }

  @media (max-width:768px){
    .manifesto-section{
      background-image: url('./images/menifestmobbg.png') !important;
      background-position: center !important;
      background-size: cover !important;
    }
  }
  
  .manifesto-container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .manifesto-title {
    font-size: 3rem;
    font-family: 'Bangers', sans-serif;
    color: #e60012;
    text-shadow: 3px 3px 0 #000;
    margin-bottom: 2rem;
  }
  
  .manifesto-title span {
    display: block;
    font-size: 1.4rem;
    color: #ffffff;
  }
  
  .manifesto-points-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .comic-burst {
    background: #94471b;
    border: 5px solid #000;
    border-radius: 50% 20% / 10% 40%;
    padding: 1.5rem;
    font-family: 'Lilita One', sans-serif;
    font-size: 1.3rem;
    box-shadow: 6px 6px 0 #000;
    transition: transform 0.3s, box-shadow 0.3s;
    color: white !important;
  }
  
  .comic-burst:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 8px 8px 0 #000;
  }
  
  .speech-box {
    background: #7eb823;
    border: 6px solid #000;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 8px 8px 0 #000;
    display: inline-block;
    position: relative;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .speech-tail {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 30px solid #7eb823;
    filter: drop-shadow(3px 3px 0 #000);
  }
  
  .rise-text {
    font-size: 1.8rem;
    font-family: 'Lilita One', sans-serif;
    color: #e60012;
    text-shadow: 2px 2px 0 #000;
    margin-top: 3rem;
    margin-bottom: 180px !important;
  }
  


  .floating-right-image {
    position: absolute;
    top: 6350px;
    right: 39%;
 
    z-index: 0;
  }
  
  .floating-right-image img {
    width: 300px;
    filter: drop-shadow(4px 4px 0 #000);
  }
  
  /* Floating animation */
  @keyframes floatY {
    0%, 100% {
      transform: translateY(0) rotate(-2deg);
    }
    50% {
      transform: translateY(-20px) rotate(2deg);
    }
  }
  
  /* Hide on small screens */
  @media (max-width: 768px) {
    .floating-right-image {
      display: none;
    }
  }
  
























  /*GRID 12 TOKENS*/



  .dirty-dozen-section {
    background: radial-gradient(circle at center, #fff 40%, #ffdbdb 100%);
    padding: 4rem 2rem;
    background-image: url('./images/gridbg.png');
    background-position: center;
    background-size: cover;
    text-align: center;
     font-family: 'Lilita One', sans-serif;
  }

  @media (max-width:768px){
    .dirty-dozen-section{
      background-image: url('./images/mobbg4.png') !important;
      background-position: center !important;
      background-size: cover !important;
    }
  }

  
  .dirty-title {
    font-size: 3rem;
    font-family: 'Bangers', sans-serif;
    color: #e60012;
    text-shadow: 3px 3px 0 #000;
    margin-bottom: 1rem;
  }
  
  .dirty-subtext, .dirty-footer {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    color: #ffffff;
    font-family: 'Lilita One', sans-serif;
  }
  
  .dirty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto 2rem;
  }
  
  .dirty-card {
    background: #ffeb3b;
    border: 6px solid #000;
    border-radius: 20px;
    box-shadow: 8px 8px 0 #000;
    padding: 1.5rem;
    text-decoration: none;
    color: #111;
    font-family: 'Lilita One', sans-serif;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
  }
  
  .dirty-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  
  .dirty-card p {
    font-size: 1rem;
    line-height: 1.4;
  }
  
  .dirty-card:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 10px 10px 0 #000;
  }
  
  /* Tiny random rotation for comic energy */
  .dirty-card:nth-child(odd) { transform: rotate(-1deg); }
  .dirty-card:nth-child(even) { transform: rotate(2deg); }
  
  /* Responsive */
  @media (max-width: 600px) {
    .dirty-title {
      font-size: 2.2rem;
    }
    .dirty-card h3 {
      font-size: 1.5rem;
    }
  }
  











  /*LEADERBOARD SECTION*/





  .degen-section {
    background: #859d87;
    border: 6px solid #000;
    border-radius: 16px;
    box-shadow: 8px 8px 0 #ffffff;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 4rem auto;
     font-family: 'Lilita One', sans-serif;
    text-align: center;
  }
  
  .degen-title {
    font-size: 3rem;
    font-family: 'Bangers', sans-serif;
    color: #e60013;
    text-shadow: 2px 2px 0 #000;
    margin-bottom: 1rem;
  }
  
  .degen-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    font-family: 'Lilita One', sans-serif;
    color: white;
  }
  .leaderboard {
    max-height: 400px; /* fixed height */
    overflow-y: auto; /* scroll inside */
  }
  
  /* make scrollbar comic styled */
  .leaderboard::-webkit-scrollbar {
    width: 12px;
  }
  .leaderboard::-webkit-scrollbar-track {
    background: #fff;
    border-left: 4px solid #000;
    border-right: 4px solid #000;
  }
  .leaderboard::-webkit-scrollbar-thumb {
    background: #2db352;
    border: 3px solid #000;
    border-radius: 8px;
  }
  
  .leaderboard-list li {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    padding: 0.5rem 0;
    border-bottom: 2px dashed #000;
    font-family: 'Lilita One', sans-serif;
  }
  
  /* fix contest box so it stays natural height */
  .meme-contest {
    margin-top: 50px !important;
    align-self: flex-start; /* prevents stretching to leaderboard height */
  }
  
  
  .degen-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
  }
  
  .leaderboard, .meme-contest {
    background: #fff;
    border: 4px solid #000;
    border-radius: 12px;
    box-shadow: 6px 6px 0 #000;
    padding: 2rem;
    flex: 1 1 300px;
    max-width: 500px;
  }
  
  .leaderboard-title, .meme-title {
    font-family: 'Bangers', sans-serif;
    font-size: 2rem;
    color: #924819;
    text-shadow: 1px 1px 0 #000;
    margin-bottom: 1rem;
  }
  
  .leaderboard-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .leaderboard-list li {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    padding: 0.5rem 0;
    border-bottom: 2px dashed #000;
  }
  
  .meme-desc {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .comic-btn {
    display: inline-block;
    background: #ffde59;
    color: #000;
    border: 4px solid #000;
    border-radius: 12px;
    padding: 0.8rem 1.8rem;
    font-family: 'Bangers', sans-serif;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 4px 4px 0 #000;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .comic-btn:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 6px 6px 0 #000;
  }
  
  .degen-extra {
    margin-top: 3rem;
    font-size: 1.3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Lilita One', sans-serif;
    color: #e60013;
  }
  

















  /*HOW TO BUY SECTION */



  .how-to-buy-section {
    padding: 3rem 2rem;
    background: radial-gradient(circle at center, #fff 30%, #e7f0ff 100%);
    text-align: center;
    font-family:  'Lilita One', cursive;
    background-image: url('./images/htbbg.png');
    background-position: center;
    background-size: cover;
  }
  
  .how-title {
    font-size: 2.8rem;
    font-family: 'Bangers', sans-serif;
    color: #2db352;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 0 #000;
  }
  
  .how-subtext {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #ffffff;
  }
  
  .how-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .how-card {
    background: #fff;
    border: 5px solid #000;
    border-radius: 16px;
    box-shadow: 8px 8px 0 #000;
    padding: 2rem 1rem;
    width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .how-card img {
    width: 40px;
    margin-bottom: 1rem;
    margin-left: 2px !important;
    filter: drop-shadow(3px 3px 0 #000);
  }
  
  .how-card h3 {
    font-size: 1.6rem;
    font-family: 'Lilita One', sans-serif;
    color: #d60000;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 0 #000;
  }
  
  .how-card p {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
  }
  
  .how-card:hover {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 12px 12px 0 #000;
  }
  





  /*Utility Section*/

  .num2-utility-section {
    padding: 4rem 2rem;
    background: #fdf3d1;
    border: 6px solid #000;
    border-radius: 20px;
    max-width: 1000px;
    margin: 4rem auto;
    box-shadow: 8px 8px 0 #ffffff;
    transform: rotate(-1.5deg);
    font-family:  'Lilita One', cursive;
  }
  
  .num2-wrapper {
    transform: rotate(1.5deg); /* counter rotation inside */
  }
  
  .num2-title {
    font-family: 'Bangers', sans-serif;
    font-size: 2.5rem;
    color: #2db352;
    text-shadow: 2px 2px 0 #000;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .num2-uses {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
  }
  
  .num2-uses li {
    background: #fff;
    border: 4px solid #000;
    border-radius: 12px;
    padding: 1rem;
    margin: 0.5rem 0;
    font-size: 1.3rem;
    box-shadow: 4px 4px 0 #000;
    transition: transform 0.2s;
    font-family: 'Lilita One', sans-serif;
  }
  
  .num2-uses li:hover {
    transform: scale(1.03) rotate(-1deg);
    background: #ffe57f;
  }
  
  .num2-copy, .num2-extra {
    font-size: 1.2rem;
    color: #2cb351;
    margin-bottom: 1rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Lilita One', sans-serif;
  }
  







  /*FAQ's SECTION*/



  .faq-section {
    text-align: center;
    padding: 5rem 2rem;
    background: radial-gradient(circle at center, #fff 30%, #fbd1d1 100%);
    background-image: url('./images/faqsbg.png'); /* optional */
    background-size: cover;
  }
  
  .faq-title {
    font-size: 3rem;
    font-family: 'Bangers', sans-serif;
    margin-bottom: 2rem;
    color: #2db352;
    text-shadow: 2px 2px 0 #000;
  }
  
  .faq-columns {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1200px;
   margin-left: 150px !important;
   padding: 4rem 2rem !important;
  }
  
  .faq-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 30%;
    align-items: center; /* ensures items center inside column */
    justify-content: center !important;
    align-self:center !important;
    justify-self: center !important;
   
  }
  
  .faq-img {
    width: 70%;  /* scale down to 70% */
  
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .faq-item:hover .faq-img.default,
  .faq-item:hover .faq-img.answer {
    transform: scale(1.05) rotate(-2deg);

  }
  
  
  .faq-img.answer {
    display: none;
    width: 40% !important;
  }
  
  .faq-cta {
    margin-top: 3rem;
  }
  
  .faq-cta .comic-btn {
    display: inline-block;
    margin: 0 1rem 1rem;
    padding: 1rem 2rem;
    background: #ffde59;
    border: 4px solid #000;
    border-radius: 12px;
    font-family: 'Lilita One', sans-serif;
    font-size: 1.5rem;
    color: #000;
    text-decoration: none;
    box-shadow: 6px 6px 0 #000;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .faq-cta .comic-btn.secondary {
    background: #2db352;
    color: #fff;
  }
  
  .faq-cta .comic-btn:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 10px 10px 0 #000;
  }
  
  .faq-extra {
    margin-top: 2rem;
    font-size: 1.2rem;
    font-family:  'Lilita One', cursive;
    color: #ffffff;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .faq-extra a {
    color: #277d3e;
    text-decoration: underline;
    text-shadow: 1px 1px rgb(0, 0, 0);
  }
  

  .faq-wrapper {
    
    
    background: #ffffff38;
    border: 6px solid #000;
    border-radius: 20px;
    box-shadow: 10px 10px 0 #000;
   
  }
  
  @media (min-width: 800px) and (max-width: 900px) {
    .faq-columns {
      flex-direction: column;
      align-items: center;
      gap: 2rem;
      padding: 2rem;
    }
  
    .faq-column {
      width: 100%;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .faq-img {
      width: 70%;
    }
    .faqbli{
      bottom: -310px !important;
    }
  }
  

  



 /* Hide on large screens */
.faq-mobile {
  display: none;
}

/* Show on mobile */
@media (max-width: 768px) {
  .faq-mobile {
    display: block;
    text-align: center;
    padding: 2rem;
    background-image: url('./images/faqmb.png');
    background-position: center;
    background-size: cover;
  
  }

  .faq-mobile .faq-title {
    font-size: 2.5rem;
    font-family: 'Bangers', sans-serif;
    color: #2db352;
    text-shadow: 2px 2px 0 #000;
    margin-bottom: 2rem;
  }

  .faq-mobile-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .faq-mobile-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 500px;
    cursor: pointer;
  }

  .faq-mobile-item img {
    width: 90%;
    max-width: 500px;
    height: auto;
    transition: transform 0.3s ease;
  }

  .faq-mobile-item:hover img.default,
  .faq-mobile-item:hover img.answer {
    transform: scale(1.02);
  }

  .faq-mobile-item .faq-img.answer {
    display: none;
  }

  .faq-mobile-item.open .faq-img.answer {
    display: block;
  }

  .faq-mobile-item.open .faq-img.default {
    display: none;
  }
}





  /*SOCIAL ICONS*/



  .social-section {
    text-align: center;
    padding: 8rem 2rem;
    background: radial-gradient(circle at center, #fff 30%, #fbd1d1 100%);
    background-image: url('./images/socialbg.png'); /* optional comic bg */
    background-size: cover;
  }

  @media (max-width:768px){
    .social-section{
      background-image: url('./images/socialmobbg.png') !important;
      background-position: center !important;
      background-size: cover !important;
    }
  }
  
  .social-title {
    font-size: 3rem;
    font-family: 'Bangers', sans-serif;
    margin-bottom: 2.5rem;
    color: #2db352;
    text-shadow: 2px 2px 0 #000;
  }
  
  .social-links {
    display: flex;
    flex-direction: column; /* now stacked vertically */
    align-items: center;
    gap: 1.5rem;
  }
  
  .social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 180px; /* FIXED WIDTH for uniform size */
    padding: 0.8rem 1.5rem;
    background: #ffde59;
    border: 4px solid #000;
    border-radius: 50px;
    font-family: 'Lilita One', sans-serif;
    font-size: 1rem;
    color: #000;
    text-decoration: none !important;
    box-shadow: 6px 6px 0 #000;
    transition: transform 0.3s, box-shadow 0.3s;
    
  }
  
  .social-btn:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 10px 10px 0 #000;
  }
  
  .social-btn img {
    width: 25px; /* smaller icon */
    height: 25px;
  }

  .social-intro {
    font-size: 1.4rem;
    font-family:  'Lilita One', sans-serif;
    margin-bottom: 7rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    text-shadow: 2px 2px black;
  }


  
.social-extra {
  font-size: 1rem;
  font-family:  'Lilita One', sans-serif;
  max-width: 500px;
  margin: 1rem auto 0;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.59);
  border: 2px solid white;
  box-shadow: 4px 4px black;
  border-radius: 10px;
  padding: 5px 2px;
}
  
  
  /* Optional: add subtle color tints */
  .social-btn.twitter { background: #1DA1F2; color: #fff; transform: rotate(5deg);  }
  .social-btn.telegram { background: #0088cc; color: #fff; transform: rotate(-3deg); }
  .social-btn.discord { background: #5865F2; color: #fff; transform: rotate(2deg); }
  


















  .comic-footer {
    background: #859d87; /* comic color */
    color: #ffffff;
    padding: 4rem 2rem 2rem;
    border-top: 10px solid #ffffff;
    box-shadow: inset 0 0 0 4px #000;
     font-family: 'Bangers', sans-serif;
    position: relative;
    overflow: hidden;
  }
  
  .footer-top-image {
    position: absolute;
    top: 0px; /* nicely above footer */
    left: 4%;
    transform: translateX(-50%);
    z-index: 10;
  }
  
  @media (max-width:768px){
    .footer-top-image {
      position: absolute;
      top: -5px; /* nicely above footer */
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      width: 100px;
    }
  }
  
  .footer-top-image img {
    width: 120px;
    height: auto;
    
    border-radius: 50%;
   
  }
  
  .footer-top-image img:hover {
    transform: scale(1.1) rotate(-5deg);
  }
  
  .footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  
  .footer-left {
    flex: 1 1 45%;
  }
  
  .footer-headline {
    font-family: 'Lilita One', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 0 #000;
  }
  @media (max-width:768px){
    .footer-headline{
      margin-top: 50px !important;
    }
  }
  
  .footer-copy {
    font-size: 1.2rem;
    max-width: 500px;
  }
  
  .footer-right {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .footer-socials {
    display: flex;
    gap: 1.5rem;
  }
  
  .social-icon {
    width: 80px;
    height: 80px;
    background-image: url('./images/poop.png');
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .social-icon img {
    width: 28px;
    height: 28px;
  }
  
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .footer-nav a {
    background: #924819;
    color: #ffffff;
    padding: 0.5rem 1.2rem;
    font-family: 'Bangers', sans-serif;
    font-size: 1.2rem;
    border: 4px solid #000;
    border-radius: 10px;
    box-shadow: 3px 3px 0 #000;
    text-decoration: none !important;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .footer-nav a:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 5px 5px 0 #000;
    color: #fff !important;
  }
  
  @media (max-width: 768px) {
    .footer-inner {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-left, .footer-right {
      flex: 1 1 100%;
      align-items: center;
      display: flex;
      flex-direction: column;
    }
  
    .footer-socials {
      justify-content: center;
    }
  
    .footer-nav {
      flex-wrap: nowrap;
      overflow-x: auto;
      justify-content: center;
      flex-direction: column !important;
      gap: 1rem;
      padding-bottom: 0.5rem;
    }
  }
  
















  /*MOBILE SECTIONS:*/












  /* Hide mobile by default */
.hero-cartoon-mobile {
  display: none;
}

/* Show on mobile, hide desktop */
@media (max-width: 768px) {
  .hero-cartoon { display: none; }
  .hero-cartoon-mobile {
    display: block;
    position: relative;
    padding: 5rem 1rem 1rem 1rem ;
    text-align: center;
    /* background: radial-gradient(circle at center, #fdf1d3, #fbc1a9); */
    overflow: hidden;
    /* background-image: url('./images/mobbg1.png');
    background-position: center;
    background-size: cover; */
    
  }


  .hero-box-mobile h1,
  .hero-box-mobile p {
    max-width: 90%;
    margin: 0 auto 1rem;
  }

  .hero-headline-mobile {
    font-size: 2rem;
    font-family: 'Bangers', sans-serif !important;
    color: #2db352;
    text-shadow: 2px 2px #000;
  }

  .hero-subtext-mobile,
  .hero-extra-mobile {
    font-size: 1rem;
    font-family: 'Bangers', cursive;
    color: #333;
  }
  .hero-text-box-mobile {
    background: #f9e98e; /* comic style yellow or your color */
    border: 4px solid #000;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 6px 6px 0 #000;
    text-align: center;
  }
  
  .hero-text-box-mobile h1,
  .hero-text-box-mobile p {
    margin-bottom: 1rem;
  }
  
  /* if you want to adjust buttons inside */
  .hero-text-box-mobile .hero-buttons-mobile {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  

  .hero-buttons-mobile {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .hero-buttons-mobile .comic-btn {
    width: 80%;
  }

  /* Floating images for mobile */
  .floating-gif-mobile,
  .floating-gif2-mobile {
    position: absolute;
    width: 200px;
    animation: floaty 4s ease-in-out infinite;
  }

  .floating-gif2-mobile {
    top: -680px;
    left: 0%;
  }

  .floating-gif-mobile {
    top: -680px;
    right: 4%;
  }
}

/* Float animation reuse */
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}



















/* SECTION 2 ABOUT/WHAT IS NUM2*/

/* Hide mobile version by default */
.comic-section-mobile {
  display: none;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .comic-section {
    display: none; /* hides original */
  }
  .comic-section-mobile {
    display: block;
    padding: 2rem 1rem;
    background: #fff7e6; /* or your comic bg */
    text-align: center;
    position: relative;
    background-image: url('./images/mobbg2.png');
    background-position: center;
    background-size: cover;
  }

  .comic-section-mobile .comic-panel {
    background: #fde1b9;
    border: 5px solid #000;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 5px 5px 0 #000;
    position: relative;
  }

  .comic-section-mobile .top-mobile-image {
    width: 120px;
    margin-top: 1.5rem;
  }

  .comic-section-mobile .comic-title {
    font-size: 1.8rem;
    font-family: 'Bangers', sans-serif;
    color: #2db352;
    text-shadow: 2px 2px #000;
    margin-bottom: 1rem;
  }

  .comic-section-mobile .comic-copy,
  .comic-section-mobile .comic-extra {
     font-family: 'Bangers', sans-serif;
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
  }

  .comic-album-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
  }

  .album-img-mobile {
    width: 90%;
    border: 4px solid #000;
    box-shadow: 4px 4px 0 #000;
    border-radius: 10px;
    background: white !important;
  }
}





/*COMCI PRESALE MOBILE */


/* Hide by default */
.comic-presale-mobile {
  display: none;
}

/* Mobile only */
@media (max-width: 768px) {
  .comic-presale {
    display: none; /* hides original */
  }
  .comic-presale-mobile {
    display: block;
    padding: 2rem 1rem;
    background: #fde1b9; /* or your comic bg */
    text-align: center;
    background-image: url('./images/mobbg3.png');
    background-position: center;
    background-size: cover;
  }

  .presale-frame-mobile {
    background: #fff7e6;
    border: 5px solid #000;
    border-radius: 15px;
    box-shadow: 5px 5px 0 #000;
    padding: 1.5rem;
    position: relative;
  }

  .comic-title {
    font-size: 1.8rem;
    font-family: 'Bangers', sans-serif;
    color: #2db352;
    text-shadow: 2px 2px #000;
    margin-bottom: 1rem;
  }

  .comic-copy {
     font-family: 'Bangers', sans-serif;
    font-size: 1rem;
    color: #333;
    margin-bottom: 1.5rem;
  }

  .submit-cta {
    display: inline-block;
    background: #ffde59;
    color: #000;
    padding: 0.75rem 1.5rem;
    font-family: 'Bangers', sans-serif;
    font-size: 1.2rem;
    border: 4px solid #000;
    border-radius: 10px;
    box-shadow: 4px 4px 0 #000;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .submit-cta:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 6px 6px 0 #000;
  }

  .mobile-left-img {
    width: 100px;
    margin-bottom: 1rem;
  }

  .mobile-bottom-img {
    width: 90px;
    margin-top: 1.5rem;
  }
  .mobile-stacked-img {
    width: 160px;
    margin: 1.5rem auto 0;
    display: block;
  }
  
  .mobile-stacked-img2 {
    width: 360px;
    margin: 1.5rem auto 0;
    display: block;
  }
  
}










/*WHITELIST MOBILE SECTION*/


/* Hide mobile by default */
.comic-whitelist-mobile {
  display: none;
}

/* Show on mobile only */
@media (max-width: 768px) {
  .comic-whitelist {
    display: none; /* hide original */
  }

  .comic-whitelist-mobile {
    display: block;
    padding: 2rem 1rem;
    background: #fde1b9;
    text-align: center;
    background-image: url('./images/mobbg5.png');
    background-position: center;
    background-size: cover;
  }

  .whitelist-frame-mobile {
    background: #fff7e6;
    border: 5px solid #000;
    border-radius: 15px;
    box-shadow: 5px 5px 0 #000;
    padding: 1.5rem;
    position: relative;
  }

  .whitelist-frame-mobile .comic-title {
    font-size: 1.8rem;
    font-family: 'Bangers', sans-serif;
    color: #2db352;
    text-shadow: 2px 2px #000;
    margin-bottom: 1rem;
  }

  .whitelist-frame-mobile .comic-copy {
     font-family: 'Bangers', sans-serif;
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
  }

  .whitelist-frame-mobile .comic-form input {
    display: block;
    width: 90%;
    margin: 0.5rem auto;
    padding: 0.75rem;
    border: 3px solid #000;
    border-radius: 10px;
    font-size: 1rem;
  }

  .whitelist-frame-mobile .submit-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffde59;
    color: #000;
    padding: 0.75rem 1.5rem;
    font-family: 'Bangers', sans-serif;
    font-size: 1.2rem;
    border: 4px solid #000;
    border-radius: 10px;
    box-shadow: 4px 4px 0 #000;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top: 1rem;
  }
  .whitelist-frame-mobile .submit-cta:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 6px 6px 0 #000;
  }

  .mobile-bottom-corner-img {
    width: 120px;
    margin: 1.5rem auto 0;
    display: block;
  }

  .comic-share-box-mobile {
    margin-top: 2rem;
    background: #fff7e6;
    border: 4px solid #000;
    border-radius: 12px;
    box-shadow: 4px 4px 0 #000;
    padding: 1rem;
  }

  .comic-share-box-mobile .comic-share-text {
     font-family: 'Bangers', sans-serif;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #000;
  }

  .comic-share-box-mobile .share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #924819;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border: 3px solid #000;
    border-radius: 8px;
    box-shadow: 3px 3px 0 #000;
    font-family: 'Bangers', sans-serif;
    font-size: 1.1rem;
    text-decoration: none;
  }

  .comic-share-box-mobile .share-btn:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 5px 5px 0 #000;
  }
}


















@media (max-width:768px){
  .btlm1{
    margin-left: 100px !important;
    width: 150px !important;
  }

  .bltm2{
    margin-top: 10px !important;
    width: 120px !important;
    margin-left: 50px !important;

  }
  .bri1{
    margin-top: 50px !important;
    width: 140px !important;
    margin-right: 40px !important;
  }
}




















































.comic-slider-section {
  width: 100%;
  overflow: hidden;
  background: #000000; /* dark backdrop */
  padding: 30px 0;
}

.comic-slider {
  width: 100%;
  display: flex;
  align-items: center;
}

.comic-slide-track {
  display: flex;
  animation: scrollSlider 25s linear infinite;
}

/* All images perfectly same size */
.comic-slide {
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin: 0 15px;
  border: 6px solid #28b754;
  border-radius: 20px;
  box-shadow: inset 0 0 8px rgba(255,255,255,0.3), 0 4px 10px rgba(0,0,0,0.5);
  transition: transform 0.4s ease;
}

/* fun pop on hover */
.comic-slide:hover {
  transform: scale(1.1) rotate(-2deg);
}

/* animation loop */
@keyframes scrollSlider {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .comic-slide {
    width: 120px;
    height: 120px;
    margin: 0 8px;
  }
  .comic-slide-track {
    animation: scrollSliderMobile 25s linear infinite;
  }
}

@keyframes scrollSliderMobile {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}









@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left {
    flex-direction: column;
    align-items: center !important;
    text-align: center;
  }

  .footer-left img {
    margin-bottom: -20px;
  }

  .footer-right {
    align-items: center;
    margin-top: 2rem;
  }
}















.comic-tag {
  display: inline-block;
  background: #e7c81d; /* bright comic green */
  color: #000;
  border: 3px solid #000;
  border-radius: 8px;
  padding: 0.3rem 0.8rem;
  font-size: 1rem;
  text-shadow: none;
  box-shadow: 4px 4px 0 #000;
  font-family:  'Lilita One', cursive;
  transition: transform 0.2s, box-shadow 0.2s;
}

.comic-tag:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 6px 6px 0 #000;
}


.comic-label {
  background: #86cb2b;
  border: 3px solid #000;
  border-radius: 10px;
  padding: 0.4rem 0.8rem;
  box-shadow: 4px 4px 0 #000;
  font-family:  'Lilita One', cursive;
  transition: transform 0.2s, box-shadow 0.2s;
}

.comic-label:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 6px 6px 0 #000;
}

.comic-label .comic-icon {
  height: 30px;
  margin-right: 10px;
}
.comic-label p {
  color: #000;
  font-size: 1.2rem;
  margin: 0;
  text-shadow: none;
}






.countdown-comic-box-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 20px auto;
  padding: 10px 15px;
  background: radial-gradient(circle, #fdf089 10%, #ffd900 90%);
  border: 4px solid #000;
  border-radius: 12px;
  box-shadow: 4px 4px 0 #000;
  width: fit-content;
  max-width: 100%;
  font-family: 'Lilita One', cursive;
}

.countdown-segment {
  background-color: #4ddbff;
  border: 3px solid #000;
  border-radius: 8px;
  padding: 8px 10px;
  width: 70px;
  text-align: center;
  box-shadow: 3px 3px 0 #000;
}

.countdown-value {
  font-size: 1.5rem;
  color: #fff;
  text-shadow: 1.5px 1.5px 0 #000;
  line-height: 1;
}

.countdown-label {
  font-size: 0.9rem;
  margin-top: 2px;
  color: #fff;
  text-shadow: 1px 1px 0 #000;
}
