html, body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #121212;
    color: #E0E1DD;
    line-height: 1.6;
    overflow-x: hidden;
  }
  

  h1, h2 {
    text-align: center;
    color: #FFD700;
    margin-bottom: 20px;
  }
  
  p {
    margin: 10px 0;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  a:hover {
    color: #000000;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  

  .hero {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  
  .banner-image {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .social-icons {
    display: flex;
    justify-content: center; 
    gap: 20px;
    margin-bottom: 20px; 
  }
  

  .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .social-icons a img {
    width: 30px;
    height: 30px;
    filter: invert(1);
  }
  
  .social-icons a:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px #020202;
  }
  

  .content-background {
    position: relative;
    background: url('../images/logo.jpeg') no-repeat center center fixed;
    background-size: cover;

  }
  @media (max-width: 768px) {
    .content-background {
        background: url('../images/logo.jpeg') no-repeat center top;
        background-size: contain; 
        background-attachment: scroll;
        
    }
}
  
  .content-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.7); /* Overlay */
    z-index: 1;
  }
  
  .content-background > * {
    position: relative;
    z-index: 2;
  }
  

  .section {
    padding: 60px 0;
  }
  

  .coin-section {
   
    border-radius: 10px;
    padding: 40px 20px;
    margin-top: -5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.7);
  }
  
  .coin-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .coin-info .info-item {
    font-size: 1.5rem;
    margin: 15px 0;
    text-align: center;
  }
  
  .address-link {
    word-break: break-all;
  }
  
  .coin-section .highlight {
    color: #FFD700;
    font-weight: bold;
  }
  

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px; 
    height: 0;
    padding-bottom: 56.25%; 
    margin: 20px auto;
    overflow: hidden;
  }
  

  .how-to-buy-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  
  #how-to-buy {

    padding: 60px 0;
    text-align: center;
  }
  

  .countdown-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #1C1C1C;
    border-radius: 10px;
    padding: 40px 20px;
    margin-top: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.7);
  }
  
  .time-wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .time-box {
    background: #2A2A2A;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    min-width: 80px;
  }
  
  .time {
    font-size: 2rem;
    color: #FFD700;
    font-weight: bold;
  }
  
  .label {
    font-size: 1rem;
    color: #E0E1DD;
  }
  

  .burn-tracker {
    text-align: center;
    padding: 20px;
    background: #1C1C1C;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.7);
  }
  
  .progress-container {
    background-color: #2A2A2A;
    border-radius: 10px;
    margin: 20px auto;
    width: 100%;
    max-width: 500px;
    height: 15px;
  }
  
  .progress-bar {
    background-color: #FFD700;
    width: 50%;
    height: 100%;
    border-radius: 10px 0 0 10px;
  }
  

  .wallets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
  }
  
  .wallet-card {
    background-color: #1C1C1C;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
  }
  
  .wallet-card p {
    color: #E0E1DD;
    margin: 10px 0;
  }
  
  .wallet-card a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
  }
  
  .wallet-card a:hover {
    text-decoration: underline;
  }
  

  #media-gallery {
    background-color: #1C1C1C;
    padding: 60px 0;
    text-align: center;
  }
  
  .media-slider {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
  }
  
  .media-slider-inner {
    display: flex;
    transition: transform 0.5s ease;
  }
  
  .media-slide {
    min-width: calc(100% / 3);
    box-sizing: border-box;
    padding: 10px;
  }
  
  .slide-media {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.7);
  }
  
  .media-caption {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #FFD700;
  }
  

  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 215, 0, 0.8);
    border: none;
    padding: 10px 15px;
    font-size: 2rem;
    color: #121212;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
  }
  
  .prev-btn {
    left: 10px;
  }
  
  .next-btn {
    right: 10px;
  }
  
  .slider-btn:hover {
    background-color: #FFD700;
  }
  

  .footer {
    background-color: #0D0D0D;
    text-align: center;
    padding: 20px 0;
  }
  
  .footer p {
    margin: 0;
    color: #E0E1DD;
  }
  

  @media (max-width: 768px) {
    .social-icons a {
      width: 50px;
      height: 50px;
    }
  
    .social-icons a img {
      width: 25px;
      height: 25px;
    }
  
    .time-box {
      min-width: 60px;
    }
  
    .time {
      font-size: 1.5rem;
    }
  
    .slider-btn {
      font-size: 1.5rem;
      padding: 8px 12px;
    }
  
    .prev-btn {
      left: 10px;
    }
  
    .next-btn {
      right: 10px;
    }
  
    .coin-info .info-item {
      font-size: 1.2rem;
    }
  
    .media-slide {
      min-width: 100%;
    }
  }
  
#intro {
    padding: 60px 0;
   
  }
  
  .intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  
  .intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  
  .intro-text strong {
    color: #FFD700;
    font-weight: bold;
  }
  
  .intro-text em {
    font-style: italic;
  }
  

  #intro::after {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    background-color: #FFD700;
    margin: 40px auto 0;
  }
  

  