* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    scroll-behavior: smooth;
  }
  
  .section {
 
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: #000;
  }
  
  .section div {
    flex: 1 1 300px;
    max-width: 600px;
    padding: 10px;
  }
  
  .bearjpeg {
    flex: 1 1 300px;
    max-width: 400px;
    width: 100%;
    border-radius: 20%;
  }
  
  .yellow {
    background-color: white;
  }
  
  .red {
   
    color: #fff;
    display: flex;
    justify-content: space-around;
  }

  .red video {
   width: 400px;
    height: auto;
    border-radius: 20%;
  }

  @media screen and (max-width: 768px) {
  

  .red video {
   width: 300px;
    height: auto;
    border-radius: 20%;

  }
  .red {
    flex-direction: column;
    align-items: center;
   
    height: 50%;
    padding: 0;
  }

   
  }

    @media screen and (max-width: 480px) {
 
  .red video {
   width: 250px;
    height: auto;
    border-radius: 20%;
  }

  }


  
  .section h1 {
    font-size: 5.9vw;
    color: transparent;
    -webkit-text-stroke: 3px black;
    font-weight: bold;
    font-weight: 600;
    font-family: "Londrina Solid", serif;
  }

  @media screen and (max-width: 768px) {
    .section h1 {
      font-size: 2rem;
      -webkit-text-stroke: 2px black;
    }

  }

  @media screen and (max-width: 480px) {
    .section h1 {
      font-size: 2rem;
      -webkit-text-stroke: 1px black;
    }
  }
  
  .section p {
    font-size: 1.5rem;
    margin-top: 1rem;
    font-family: "Tektur", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-variation-settings: "wdth" 100;
  }
  
  img {
    max-width: 100%;
    height: auto;
    margin-top: 2rem;
  }
  
  /* marquee animation */
  .marquee {
    width: 100%;
    overflow: hidden;
    background-color: #975e25;
    border-top: 5px solid #000;
    border-bottom: 5px solid #000;
  }
  
  .marquee-content {
    display: flex;
    width: fit-content;
    animation: scroll 15s linear infinite;
  }
  
  .marquee-content span {
    font-size: 2rem;
    padding: 1rem 2rem;
    white-space: nowrap;
    color: #000;
    font-family: "Tektur", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-variation-settings: "wdth" 100;
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  /* socials */
  .socials {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 1rem;
  }
  
  .socialjpeg {
    width: 50px;
  }
  
  /* banner */
  .breaking-banner {
    font-size: 3rem;
    background-color: transparent;
    color: white;
    font-weight: bold;
    font-family: "Tektur", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-variation-settings: "wdth" 100;
  }
  .breaking-banner {
   
    font-family: "Tektur", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-variation-settings: "wdth" 100;
  }


  
  /* Responsive tweaks */
  @media screen and (max-width: 768px) {
    .section {
      flex-direction: column;
    }
  
    .section h1 {
      font-size: 12vw;
      -webkit-text-stroke: 2px black;
    }
  
    .section p {
      font-size: 1.2rem;
    }
  
    .socialjpeg {
      width: 40px;
    }
  
    .breaking-banner {
      font-size: 2rem;
    }
  }
  
  @media screen and (max-width: 480px) {
    .section h1 {
      font-size: 14vw;
      
    }
  
    .section p {
      font-size: 1rem;
    }
  
    .marquee-content span {
      font-size: 1.2rem;
      padding: 0.5rem 1rem;
    }
  }
  .roadmap-section {
    background: white;
    color: #f6d96b;
    padding: 80px 20px;
    text-align: center;
  }
  
  .roadmap-title {
    font-size: 3rem;
    margin-bottom: 40px;
    text-shadow: 2px 2px #000;
    color: #964B00;
      font-optical-sizing: auto;
      font-weight: 600;
      font-variation-settings: "wdth" 100;
      font-weight: 600;
      font-family: "Londrina Solid", serif;
    
  }
  
  .roadmap-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: auto;
  }
  
  .roadmap-phase {
    background-color: #1c1c1c;
    border-left: 5px solid #964B00;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(246, 217, 107, 0.3);
    text-align: left;
  }
  
  .roadmap-phase h2 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: "Tektur", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-variation-settings: "wdth" 100;
  }
  
  .roadmap-phase ul {
    list-style: disc;
    padding-left: 20px;
  }
  
  .roadmap-phase li {
    margin-bottom: 10px;
    line-height: 1.6;
    font-weight: 600;
    font-family: "Londrina Solid", serif;
  }
  
  /* Responsive */
  @media screen and (max-width: 768px) {
    .roadmap-title {
      font-size: 2rem;
    }
  
    .roadmap-phase h2 {
      font-size: 1.2rem;
    }
  }
    

  /* ANIMATE BEAR */
.bearjpeg {
    animation: floatBear 3s ease-in-out infinite;
    transition: transform 0.3s ease-in-out;
  }
  
  @keyframes floatBear {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
  }
  
  /* DARK MODE */
  body.dark {
    background-color: #111;
    color: #eee;
  }
  
  body.dark .yellow {
    background-color: #333;
    color: #eee;
  }
  
  body.dark .red {
    background-color: #222;
    color: #eee;
  }
  
  body.dark .marquee {
    background-color: #444;
    border-color: #888;
  }
  
  body.dark .marquee-content span {
    color: #fff;
  }
  
  body.dark .section h1 {
    -webkit-text-stroke: 3px white;
  }
  
  /* Dark Toggle Button */
  .dark-toggle {
    position: fixed;
    top: 10px;
    right: 10px;
    background: #ffd700;
    color: #000;
    border: none;
    padding: 10px 15px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    z-index: 999;
  }
  
  /* Nav Buttons */
  .nav-buttons {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 999;
  }
  
  .nav-buttons a {
    text-decoration: none;
     font-weight: 600;
    font-family: "Londrina Solid", serif;
    background-color: #000;
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    transition: background 0.3s;
  }
  
  .nav-buttons a:hover {
    background-color: #fff;
    color: #000;
  }
  

  .rewards-section {
    background:#1a1a1a;
    padding:3rem 2rem;
    border-radius:15px;
    margin:3rem auto;
    max-width:900px;
    box-shadow:0 0 20px rgba(0,0,0,.6);
    width: 80%;
  }
  .rewards-title {
    text-align:center;
    font-family:'Orbitron',sans-serif;
    font-size:2rem;
    color:#ff7f11;
    margin-bottom:1.5rem;
  }
  .rewards-section p {
    margin:1rem 0;
    font-size:1.1rem;
    line-height:1.7;
    color:#eee;
  }
  .rewards-section .highlight {
    color:#ff9f3c;
    font-weight:bold;
  }

  /* Copy Contract Box */
  .contract-box {
    margin-top:2rem;
    padding:1rem;
    background:#0d0d0d;
    border-radius:10px;
    border:1px solid #333;
    width: 80%;
  }
  .contract-row {
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:0.5rem;
    background:#222;
    padding:0.6rem 1rem;
    border-radius:8px;
    font-family:monospace;
    color:#ff9f3c;
  }

  .contractAddress {
    font-size:1rem;
   
    flex:1;
    width: 80%;
  }

  @media (max-width: 600px) {
 
    .contractAddress {
      font-size:0.7rem;
     
       width: 80%;
    }
  } 

    @media (max-width: 480px) {
 
    .contractAddress {
      font-size:0.5rem;
      word-break:break-all;
      width: 80%;
    }
  } 
  .copy-btn {
    background:#ff7f11;
    border:none;
    padding:0.4rem 0.8rem;
    border-radius:6px;
    cursor:pointer;
    font-weight:bold;
    color:#fff;
    transition:0.3s;
  }
  .copy-btn:hover {
    background:#ff9f3c;
  }
  .copy-msg {
    margin-top:0.6rem;
    font-size:0.9rem;
    color:#38bdf8;
  }




/* =========================
     RESPONSIVE DESIGN
  ========================= */
  @media (max-width: 768px) {
    .rewards-section {
      padding:2rem 1rem;
    }
    .rewards-title {
      font-size:1.6rem;
    }
    .rewards-section p {
      font-size:1rem;
    }
    .contract-row {
      flex-direction:column;
      align-items:flex-start;
      gap:0.5rem;
    }
    .copy-btn {
      width:100%;
      text-align:center;
    }
  }

  @media (max-width: 480px) {
     .rewards-section {
      padding:1rem 0.5rem;
    }
    .rewards-title {
      font-size:1.4rem;
    }
    .rewards-section p {
      font-size:0.9rem;
      line-height:1.5;
    }
    .contract-row span {
      font-size:0.9rem;
    }
    .copy-btn {
      font-size:0.9rem;
      padding:0.5rem;
    }
  }