 /* Universal Styles */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  body {
    background: #000;
    color: #fff;
    scroll-behavior: smooth;
  }

  /* Navigation Bar */
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 999;
  }

  nav .logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: gold;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  nav .logo img {
    height: 50px;
    width: auto;
  }

  nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }

  nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }

  nav ul li a:hover {
    color: gold;
  }

  /* Hero Section with Video */
  .hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
  }

  .hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
  }

  .hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: #fff;
    padding: 0 2rem;
  }

  .hero-content img {
    width: 200px;
    margin-bottom: 1rem;
  }

  .hero-title {
    font-size: 3rem;
    color: gold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px #000;
  }

  .hero-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
    color: #ddd;
  }

  .cta-button {
    margin-top: 2rem;
    padding: 0.75rem 2rem;
    background-color: gold;
    color: #000;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .cta-button:hover {
    background-color: #b39700;
  }

  /* Section Styling */
  section {
    padding: 4rem 2rem;
    background: #000;
  }

  section h2 {
    font-size: 2rem;
    color: gold;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px #000;
  }

  .content-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #eee;
    line-height: 1.6;
  }

  /* Gallery (Imaginary Images) */
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
  }

  .gallery img {
    width: 100%;
    height: auto;
    border: 2px solid gold;
    border-radius: 8px;
  }

  .text-image-fill {
    font-size: 48px;
    font-weight: bold;
    background: url('../images/logo.png') no-repeat center;
    background-size: cover;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
  }

  .floating-social {
position: fixed;
bottom: 70px;
right: 20px;
display: flex;
flex-direction: column;
gap: 10px;
z-index: 1000;
}

.floating-social a {
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(0, 0, 0, 0.8);
border-radius: 50%;
transition: transform 0.3s, background 0.3s;
}

.floating-social a:hover {
transform: scale(1.1);
background: rgba(255, 215, 0, 0.8);
}

.floating-social img {
width: 30px;
height: 30px;
}

.header-actions {
position: fixed;
top: 10px;
right: 10px;
display: flex;
align-items: center;
gap: 15px;
background: rgba(0, 0, 0, 0.7);
padding: 8px 15px;
border-radius: 8px;
z-index: 1000;
}

.social-media {
display: flex;
gap: 10px;
}

.social-media a {
color: gold;
text-decoration: none;
font-weight: bold;
padding: 5px 10px;
transition: color 0.3s, transform 0.2s;
}

.social-media a:hover {
color: #fff;
transform: scale(1.1);
}

.buy-button {
background: gold;
color: black;
font-weight: bold;
padding: 8px 15px;
text-decoration: none;
border-radius: 5px;
font-size: 16px;
box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
transition: background 0.3s, transform 0.2s;
}

.buy-button:hover {
background: #b39700;
transform: scale(1.1);
}


.logo-text {
font-size: 14px;
color: white;
text-align: center;
margin-top: 2px;
}
.buy-button-fixed {
position: fixed;
bottom: 20px;
left: 20px;
background: linear-gradient(45deg, gold, orange);
color: black;
font-weight: bold;
padding: 12px 24px;
text-decoration: none;
border-radius: 8px;
font-size: 18px;
box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
text-align: center;
z-index: 1000;
}

/* Hover Effect */
.buy-button-fixed:hover {
background: linear-gradient(45deg, orange, gold);
transform: scale(1.1);
box-shadow: 0 0 25px rgba(255, 215, 0, 1);
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
.buy-button-fixed {
  bottom: 10px;
  right: 10px;
  padding: 10px 20px;
  font-size: 16px;
}
}

/* Exchanges Section */
/* Exchanges Section - Moving Ticker with Clickable Logos */
.exchanges {
padding: 4rem 2rem;

text-align: center;
overflow: hidden;
white-space: nowrap;
position: relative;
}

.exchange-container {
display: flex;
width: 100%;
overflow: hidden;
}

.exchange-list {
display: flex;
gap: 20%;
will-change: transform;
animation: scroll-left 15s linear infinite;
}

.exchange-item {
display: flex;
align-items: center;
gap: 10px;
cursor: pointer;
transition: transform 0.3s;
}

.exchange-item:hover {
transform: scale(1.1);
}

.exchange-item img {
width: 100px;
height: auto;
filter: brightness(0.9);
}

.dex-img{
width: 100px;
height: auto;
filter: brightness(0.9);
}

.exchange-item span {
font-size: 18px;
color: white;
font-weight: bold;
}

/* Keyframes for scrolling animation */
@keyframes scroll-left {
from {
  transform: translateX(100%);
}
to {
  transform: translateX(-100%);
}
}


/* Responsive Exchanges Section */
@media (max-width: 768px) {
.exchange-list {
  flex-wrap: nowrap;
  animation: scroll-left 20s linear infinite;
}

.exchange-item {
  flex-direction: column;
  text-align: center;
}

.exchange-item img {
  width: 80px;
}

.exchange-item span {
  font-size: 14px;
}
}

@media (max-width: 480px) {
.exchange-item img {
  width: 60px;
}

.exchange-item span {
  font-size: 12px;
}
}







  /* Footer */
  footer {
    background: rgba(0, 0, 0, 0.85);
    text-align: center;
    padding: 2rem;
    color: #bbb;
  }

  footer a {
    color: gold;
    text-decoration: none;
    transition: color 0.3s;
  }

  footer a:hover {
    color: #fff;
  }


  /* Rotating 3D Coin Tokenomics */
.tokenomics {
padding: 4rem 2rem;
text-align: center;
}

.coin-container {
margin-bottom: 5%;
position: relative;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

.coin {
width: 150px;
height: 150px;
background: url('../images/logo.png') no-repeat center;
background-size: cover;
border-radius: 50%;
box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
animation: spin 6s linear infinite;
transition: transform 0.3s;
}

.coin:hover {
animation-play-state: paused;
}

@keyframes spin {
from {
  transform: rotateY(0deg);
}
to {
  transform: rotateY(360deg);
}
}


/* Tokenomics Ancient Scroll Animation */
.tokenomics-scroll {
text-align: center;
padding: 4rem 2rem;
background: #111;
position: relative;
overflow: hidden;
}

/* Scroll Container */
.scroll-container {
margin-top: 5%;
position: relative;
width: 80%;
margin: auto;
height: auto;
/* background: url('papyrus-texture.jpg') no-repeat center; */
background-size: cover;
border-radius: 10px;
padding: 20px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
box-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
transform: scaleY(0);
transform-origin: top;
animation: unroll 2s ease-out forwards;
/* max-height: 450px; */
overflow-y: auto;
}

/* Unroll Animation */
@keyframes unroll {
from {
  transform: scaleY(0);
}
to {
  transform: scaleY(1);
}
}

/* Tokenomics Sections */
.scroll-section {
width: 90%;
margin: 8px 0;
padding: 10px;
background: rgba(255, 215, 0, 0.1);
color: gold;
font-weight: bold;
border: 1px solid gold;
border-radius: 5px;
font-weight: bold;
text-align: center;
cursor: pointer;
transition: transform 0.3s, background 0.3s;
}

.scroll-section:hover {
transform: scale(1.05);
background: rgba(255, 215, 0, 0.3);
}

/* Ensure the container adjusts dynamically */
@media (max-width: 768px) {
.scroll-container {
  padding: 15px;
}

.scroll-section {
  font-size: 14px;
  padding: 8px;
}
}


/* FAQ Section */
.faq-section {
  padding: 4rem 2rem;
  
  text-align: center;
}

.faq-container {
  max-width: 800px;
  margin: auto;
}

.faq-item {
  background: #333;
  color: white;
  border-radius: 8px;
  margin: 10px 0;
  padding: 15px;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}

.faq-item:hover {
  background: #444;
}

.faq-answer {
  display: none;
  padding: 10px;
  color: gold;
  font-size: 14px;
}

.faq-item.active .faq-answer {
  display: block;
}


/* Community Announcement Banner */
.announcement-banner {
  background: #b22222;          /* deep red for urgency */
  color: #fff;
  text-align: center;
  padding: 0.75rem 1rem;
  font-weight: 600;
  z-index: 999;
}

