/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Helvetica Neue', sans-serif;
  background: #0a0a0a;
  color: #fefefe;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}


/* Navbar */

header {
  border-bottom: 1px solid;
  color: gray;
  padding-bottom: 1rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
background: rgba(0, 0, 0, 0.6); /* Or your preferred background */
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
   backdrop-filter: blur(6px);
}


/* === NAVIGATION BAR === */
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
              
}

/* === NAVIGATION LINKS === */
.nav-links {
  display: flex;
  gap: 0.1rem;
  list-style: none; /* Removes bullet points */
  padding: 0;
  margin: 0.1rem;
  flex-wrap: nowrap;
}

/* === NAV LINK ITEMS === */
.nav-links li a {
  text-decoration: none;
  color: #fff; /* Adjust for your theme */
  font-weight: bold;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.nav-links li a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ff69b4;
}

/* === RESPONSIVE FIX FOR SMALL SCREENS === */
@media (max-width: 600px) {
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .nav-links li a {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }
}




/* Hero Section */
#hero {
  position: relative;
  width: 100%;
  height: 60vh;
  background: url('images/dexcover.gif') no-repeat center center/cover; /* Replace with your actual image */
  display: flex;
  align-items: flex-end; /* Push content to bottom */
  justify-content: center;
  padding-bottom: 30px; /* Push buttons up from very bottom */
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(1.5px); /* Reduced blur */
  background-color: rgba(0, 0, 0, 0.2); /* Brighter overlay */
  z-index: 1;
  animation: fadeInOverlay 1.5s ease-in-out forwards;
}

@keyframes fadeInOverlay {
  from {
    opacity: 0;
    backdrop-filter: blur(0);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(1.5px); /* match above */
  }
  
}

.hero-buttons {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  padding: 20px;
}

  

.hero-buttons button {
  padding: 12px 26px;
  border: none;
  border-radius: 25px;
  background: linear-gradient(to right, #ff6a00, #ee0979);
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
  white-space: nowrap;
  flex-shrink: 1; 
  min-width: auto;      
}

.hero-buttons button:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-wrap: wrap;
  }
}

#hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px; /* adjust the height of fade */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000 100%);
  z-index: 1;
}





/* Sections */
section {
  padding: 4rem 2rem;
  text-align: center;
}
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  list-style: none;
}
.stats li {
  background: #1a1a1a;
  padding: 1rem;
  border-radius: 10px;
}

/* Community */
.btn {
  display: inline-block;
  margin: 1rem;
  padding: 0.75rem 2rem;
  background: #ff69b4;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}
.btn:hover {
  background: #ff4c9d;
}


/* Footer */
footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.875rem;
}


/* How to Buy */

#how-to-buy {  
padding: 2rem 1rem;
  display: flex;
  justify-content: center;
}

.buy-box {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 2rem;
  max-width: 600px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 20px rgba(255, 105, 180, 0.15);
  border: 3px solid rgba(255, 255, 255, 0.08);
  margin: auto;
}

.buy-box:hover {
  transform: scale(1.03);
}


.buy-box h3 {
  color: #ff69b4;
  font-size: 1.8rem;
 margin-bottom: 1rem; 
}

.buy-box p {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.buy-box ol {
  display: inline-block;
  text-align: left;
  margin: 1rem auto;
  padding-left: 1rem;
  max-width: 100%;
}

.copy-btn:hover {
  background: #666;
}


.buy-box li {
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.buy-box a {
  color: #ff69b4;
  text-decoration: underline;
  margin-left: 5px;
}

.buy-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.buy-btn, .copy-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 30px;
  background: grey;
  color: white;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  font-size: 1rem;
  display: inline-block;
  white-space: nowrap;
}

.copy-btn {
  background: #444;
}

.copy-btn:hover {
  background: #666;
}

.buy-btn:hover {
  background: pink;
}



.about-section {
  padding: 50px 20px;
  background: linear-gradient(to bottom, #0f0f0f, );
  color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  

}

.about-card {
  width: 100%;
  max-width: 900px;
  background: #1e1e1e;
  border-radius: 12px;
padding: 30px;
  overflow: hidden;
  margin: 0 auto;
  box-sizing: border-box;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  margin-top: 0%;
  border: 2px solid rgba(255, 255, 255, 0.08);

}

.about-card:hover {
  transform: scale(1.02);

}



.about-content h3 {
  color: #ff5ca2;
  font-size: 22px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.about-content h2 {
  color: #ff5ca2;
}

.about-content p {
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-content ul {
  margin-left: 80px;
  color: #ddd;
  text-align: center;
}

.about-content ul li {
  margin-bottom: 10px;
  text-align: left;
}




.card {
  background: #1a1a1a;
  border: 2px solid #333;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.card:hover {
  border-color: #ff69b4;
  transform: translateY(-4px);
}

.card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #ff69b4;
}

.card p {
  font-size: 0.95rem;
  color: #ddd;
}

#memes {
  padding: 4rem 2rem;
  text-align: center;
  background: #111;
  border-radius: 16px;
  border: 1px solid;
  color: gray;
}

.memes-desc {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  color: #ccc;
}

.meme-gallery {
  display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 1rem;
 
}

.meme-gallery img {
    background: black;
padding: 1px;
width: 100px;
height: 180px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  object-fit: contain;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #222;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.meme-gallery img:hover {
  transform: scale(1.03);
  border-color: #ff69b4;
}

.lightbox {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
background: rgba(0, 0, 0, 0.9);
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: white;
  cursor: pointer;
}


.community-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 2.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
box-shadow: 0 0 20px rgba(255, 105, 180, 0.15);
border: 1px solid rgba(255, 255, 255, 0.08);
color: #eee;

}


.community-card h3 {
  font-size: 1.8rem;
  color: #ff69b4;
  margin-bottom: 1rem;
}

.community-card p {
  font-size:1.1rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.community-buttons {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1rem;
}

.community-card .btn {
  background: #ff69b4;
  padding: 0.8rem 1.6rem;
  border-radius: 40px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  transition: 0.2s ease;
}

.community-card .btn:hover {
  background: #ff4c9d;
}
 
.community-card:hover {
  transform: scale(1.03);
}


.ily-top-videos {
  padding: 4rem 2rem;
  background: #0d0d0d;
  text-align: center;
  color: #fff;
}

.ily-top-videos h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.ily-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #ccc;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.video-card {
  background: #1a1a1a;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 105, 180, 0.1);
}

.video-card video {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 0.5rem;
}

.video-caption {
  font-size: 0.95rem;
  color: #f4f4f4;
}


.about-img-top {
  width: 100%;
  max-width: 700px;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  margin: 0 auto 20px auto;
  display: block;
  margin-top: 100px;
  margin-bottom: 0px;
}

.tilt-card {
  background-color: #1c1c1c;
  
  border-radius: 16px;
  box-shadow: 0 0 20px 40px rgba(255,105,180,0.15);
  transform-style: flat;
  transition: transform 1.5s ease;
  max-width: 600px;
  margin: 10px auto;
}


/* Image Grid */
.image-grid {
  color: gray;
  border: 2px solid;
  display: grid;
  gap: 10px;
  background-color: #444;
  grid-template-columns: repeat(2, 1fr);
  margin: auto;
  padding: 1rem;
  max-width: 800px;
  margin-top: 20px;
  border-radius: 20px;
  box-shadow: 10px 10px 10px 4px rgba(255, 105, 180, 0.1);
}
.image-grid img {
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  width: 100%;
  height: 150px;
  border-radius: 10px;
  padding: 2px solid;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-card img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

/* Container for the image grid */
/* Image card container */
.image-card {
  display: flex;
  gap: 1rem;
  max-width: 900px;
  margin: 2rem auto;
  padding: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 15px rgba(255, 105, 180, 0.15);
}

/* Left column (2 stacked images) */
.image-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

/* Each image box */
.image-box {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
  min-height: 150px;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* Tall image */
.tall-image {
  flex: 1;
  max-height: 100%;
}

/* REMOVE flex-wrap so layout never stacks */
.image-card {
  flex-wrap: nowrap;
}

/* Optional: Let the card scroll horizontally on very tiny screens */
@media (max-width: 480px) {
  .image-card {
    overflow-x: auto;
  }
}

.copy-container {
  position: relative;
  display: inline-block;
}

.copy-result {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #222;
  color: #00ff88;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
}
















































