/* Party Loot Landing Page Styles */

:root {
  --primary-accent-color: #473a00;
  --secondary-accent-color: #bd9a00;
  --tertiary-accent-color: #dab200;
  --discord-purple: #5865f2;
}

/* General animations and effects */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes shine {
  0% {
    background-position: -100px;
  }
  40% {
    background-position: 300px;
  }
  100% {
    background-position: 300px;
  }
}

@keyframes floatCoin {
  0% {
    transform: translateY(0) rotate(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 0 10px rgba(189, 154, 0, 0.8);
  }
  50% {
    box-shadow: 0 0 20px rgba(189, 154, 0, 0.8), 0 0 30px rgba(189, 154, 0, 0.6);
  }
  100% {
    box-shadow: 0 0 10px rgba(189, 154, 0, 0.8);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes floatCoin {
  0% {
    transform: translateY(0) rotate(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    transform: translateY(-50vh) rotate(180deg);
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Body setup for the landing page */
body {
  background-image: none !important;
  font-family: "modesto-poster", sans-serif;
  color: #fff;
  overflow-x: hidden;
  background-color: #000 !important;
}

section {
  margin-bottom: 0 !important;
}

.discord-purple {
  color: var(--discord-purple) !important;
}

/* Navbar styling */
.navbar {
  background-color: rgba(0, 0, 0, 0.4);
  transition: background-color 0.3s ease, padding 0.3s ease;
  padding: 15px 0;
  z-index: 1000;
  min-height: 100px !important;
}

.navbar.scrolled {
  background-color: rgba(0, 0, 0, 1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  padding: 10px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: rotate(10deg);
}

.navbar .nav-link {
  position: relative;
  padding: 8px 15px;
  margin: 0 5px;
  transition: color 0.3s ease;
  color: #fff !important;
  opacity: 1 !important;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--secondary-accent-color);
  transition: width 0.3s ease, left 0.3s ease;
}

.navbar .nav-link:hover::after {
  width: 100%;
  left: 0;
}

.navbar .btn-outline-primary {
  border: 1px solid var(--secondary-accent-color);
  color: var(--secondary-accent-color) !important;
  transition: all 0.3s ease;
}

.navbar .btn-outline-primary:hover {
  background-color: var(--secondary-accent-color);
  color: #000 !important;
}

/* Particles background */
.particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Hero section enhancements */
.hero-section {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      #000000 100%
    ),
    url("/images/party-loot-splash-alt2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  margin-bottom: 0px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  background-color: #000;
  opacity: 0.5;
  z-index: 2;
}

.hero-content * {
  text-shadow: 3px 3px 0px rgb(0, 0, 0);
}

.hero-content h1 {
  font-size: 6rem;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.hero-content .btn,
.hero-content .btn > *,
i {
  text-shadow: none !important;
}

.app-logo {
  animation: float 3s ease-in-out infinite;
  margin-bottom: 20px;
}

.hero-title {
  text-shadow: 3px 3px 0px rgb(0, 0, 0);
  opacity: 1;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards 0.5s;
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--secondary-accent-color);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  opacity: 0;
  animation: fadeIn 1s forwards 1.5s;
  font-size: 1.8rem;
  margin-bottom: 25px;
  font-weight: 500;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.lead {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.currency-display {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.currency-display .currency-icon {
  font-size: 1.8rem;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.currency-display .currency-icon:hover {
  transform: scale(1.3) rotate(15deg);
  filter: drop-shadow(0 0 8px currentColor);
}

/* Floating currency coins */
.floating-coin {
  position: absolute;
  font-size: 1.5rem;
  z-index: 1;
  opacity: 0;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
  animation: floatCoin 15s linear infinite;
}

/* Currency colors */
.plat {
  color: #8b8b8b;
}

.gold {
  color: #ffd700;
}

.silver {
  color: #f0f0f0;
}

.copper {
  color: #cd7f32;
}

/* Rotating effect for currency icons */
.rotating {
  animation: rotate 2s linear infinite;
}

/* Scroll arrow */
.scroll-arrow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-15px) translateX(-50%);
  }
  60% {
    transform: translateY(-7px) translateX(-50%);
  }
}

/* Button enhancements */
.glow-btn {
  animation: glow 2s infinite;
}

.btn-discord {
  position: relative;
  overflow: hidden;
  background: #5865f2;
  color: white !important;
  border: none;
}

.btn-discord:hover {
  background: #4752c4;
}

.btn-particle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: white;
  border-radius: 50%;
  opacity: 0;
  animation: particleAnimation 2s ease-out infinite;
}

@keyframes particleAnimation {
  0% {
    transform: translate(-50%, -50%);
    opacity: 0;
    width: 5px;
    height: 5px;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -300%);
    width: 2px;
    height: 2px;
  }
}

/* Section styles */
section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--secondary-accent-color);
}

.section-title p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  color: #ddd;
}

/* Features section */
.feature-card {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.4s ease, border-color 0.4s ease;
  overflow: hidden;
  position: relative;
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  border: 1px solid #333;
  position: relative;
}

.sub-banner {
  background: linear-gradient(
    145deg,
    var(--primary-accent-color),
    var(--secondary-accent-color)
  );
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  color: #fff;
  text-align: center;
}

.feature-card-image img {
  max-height: 70px;
  height: 100%;
  width: auto;
  border-radius: 10px;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  border-color: var(--secondary-accent-color);
}

.feature-card:after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(189, 154, 0, 0.1) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.feature-card:hover:after {
  opacity: 1;
  transform: scale(1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-accent-color);
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.2);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-card p {
  color: #bbb;
  margin-bottom: 1.5rem;
}

/* Feature card demo elements */
.mini-item,
.mini-transaction {
  background-color: rgba(30, 30, 30, 0.7);
  padding: 8px 12px;
  border-radius: 6px;
  margin-bottom: 8px;
  border-left: 3px solid var(--secondary-accent-color);
}

.text-purple {
  color: #9b59b6;
}

.text-blue {
  color: #3498db;
}

.share-link-demo {
  background-color: #222;
  color: #ddd;
  border-color: #444;
}

.copy-btn {
  transition: all 0.3s ease;
}

.copy-btn:hover {
  background-color: var(--secondary-accent-color);
  color: black;
}

.theme-swatches {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.theme-swatch {
  width: 100%;
  height: 30px;
  border-radius: 4px;
  display: inline-block;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #444;
}

.theme-swatch:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(189, 154, 0, 0.5);
}

/* Interactive Demo Section */
.interactive-demo-section {
  padding: 5rem 0;
}

.demo-wrapper {
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid #333;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.roadmap-header {
  text-align: center;
  margin-bottom: 2rem;
}

.roadmap-header h3 {
  color: var(--secondary-accent-color);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.gif-showcase-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: nowrap;
}

.gif-card {
  background: #000;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #333;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.4s ease, border-color 0.4s ease;
  cursor: pointer;
  position: relative;
  flex: 1;
  min-width: 0; /* Allows flex items to shrink below content size */
}

.gif-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border-color: var(--secondary-accent-color);
}

.gif-card:after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(189, 154, 0, 0.1) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.gif-card:hover:after {
  opacity: 1;
  transform: scale(1);
}

.gif-container {
  width: 100%;
  height: 240px; /* Fixed height for GIFs */
  overflow: hidden;
  position: relative;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-gif {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gif-card:hover .feature-gif {
  transform: scale(1.05);
}

.gif-content {
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(189, 154, 0, 0.3);
}

.gif-content h3 {
  color: var(--secondary-accent-color);
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.gif-content p {
  color: #bbb;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
}

/* Custom carousel controls */
.carousel-control-prev,
.carousel-control-next {
  width: 10%;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.prev-icon,
.next-icon {
  background-color: rgba(189, 154, 0, 0.5);
  border-radius: 50%;
  padding: 10px;
  min-height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Custom indicators */
.carousel-indicators {
  bottom: 20px;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 0 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-indicators button.active {
  background-color: var(--secondary-accent-color);
  transform: scale(1.2);
}

/* Caption styling */
.carousel-caption {
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  padding: 15px;
  padding-bottom: 40px !important;
  bottom: 0 !important;
  max-width: 100% !important;
  margin: 0 auto;
  left: 0 !important;
  right: 0 !important;
  position: relative !important;
}

.carousel-caption h3 {
  color: var(--secondary-accent-color);
  margin-bottom: 5px;
  font-size: 1.4rem;
}

.carousel-caption p {
  font-size: 1rem;
  margin-bottom: 0;
}

/* Add fade transition effect */
.carousel-item {
  transition: transform 0.6s ease-in-out;
}

/* Stats section */
.stats-section {
  padding: 5rem 0;
  margin-top: -1px;
}

.stats-header {
  text-align: center;
  margin-bottom: 2rem;
}

.stats-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-accent-color);
}

.stat-card {
  padding: 2rem;
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid #333;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  border-color: var(--secondary-accent-color);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-accent-color);
}

.stat-counter {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.gold-counter {
  color: #ffd700;
}

#roadmap h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--secondary-accent-color);
}

/* Simplified Testimonials Section Styles */
.testimonials-section {
  padding: 80px 0;
  margin-bottom: 0px;
}

/* Main carousel container */
#testimonialCarousel {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-container {
  padding: 20px;
}

.testimonial-card {
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid #333;
  position: relative;
  margin: 0 auto;
  height: 100%;
}

.testimonial-card:before {
  content: '"';
  font-size: 5rem;
  color: var(--secondary-accent-color);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-style: italic;
  color: #ddd;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
  border: 2px solid var(--secondary-accent-color);
}

.testimonial-info {
  flex: 1;
}

.testimonial-info h4 {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
  font-weight: 700;
  color: var(--secondary-accent-color);
}

.testimonial-info p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 0.4rem;
}

.testimonial-rating {
  color: #ffd700;
  font-size: 0.9rem;
}

/* Custom carousel controls */
#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
  width: 8%;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

#testimonialCarousel .carousel-control-prev:hover,
#testimonialCarousel .carousel-control-next:hover {
  opacity: 1;
}

#testimonialCarousel .prev-icon,
#testimonialCarousel .next-icon {
  background-color: rgba(189, 154, 0, 0.5);
  border-radius: 50%;
  padding: 10px;
  min-height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Custom indicators */
#testimonialCarousel .carousel-indicators {
  bottom: -40px;
}

#testimonialCarousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 0 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

#testimonialCarousel .carousel-indicators button.active {
  background-color: var(--secondary-accent-color);
  transform: scale(1.2);
}

/* Add fade transition effect */
#testimonialCarousel .carousel-item {
  transition: opacity 0.6s ease;
  transition: transform 0.6s ease-in-out;
}

/* Make sure carousel items have consistent height */
#testimonialCarousel .carousel-inner {
  min-height: 300px;
}

/* Call to Action Section */
.cta-section {
  padding: 5rem 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)),
    url("../images/party-loot-splash-alt2.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 0px;
  background-attachment: fixed;
}

.animated-dice {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.dice {
  position: absolute;
  width: 30px;
  height: 30px;
  background-image: url("../images/party-loot-logo-no-bg.png");
  background-size: cover;
  opacity: 0.3;
  animation: diceFloat 15s linear infinite;
}

.d20 {
  top: 20%;
  left: 10%;
  animation-duration: 20s;
  width: 40px;
  height: 40px;
}
.d12 {
  top: 60%;
  left: 20%;
  animation-duration: 25s;
  animation-delay: 2s;
}
.d10 {
  top: 30%;
  left: 80%;
  animation-duration: 18s;
  animation-delay: 1s;
}
.d8 {
  top: 70%;
  left: 70%;
  animation-duration: 22s;
  animation-delay: 3s;
}
.d6 {
  top: 40%;
  left: 40%;
  animation-duration: 19s;
  animation-delay: 4s;
}
.d4 {
  top: 80%;
  left: 30%;
  animation-duration: 17s;
  animation-delay: 5s;
}

@keyframes diceFloat {
  0% {
    transform: translateY(0) rotate(0);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    45deg,
    var(--secondary-accent-color),
    var(--tertiary-accent-color)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(189, 154, 0, 0.5);
}

/* Footer Enhancements */
.footer {
  background-color: #0a0a0a;
  padding: 3rem 0 1.5rem;
  color: #aaa;
  position: relative;
}

.footer-logo {
  width: 100px;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: rotate(10deg);
}

.footer-links h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #fff;
  position: relative;
  display: inline-block;
}

.footer-links h4::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary-accent-color);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-link-animated::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--secondary-accent-color);
  transition: width 0.3s ease;
}

.footer-link-animated:hover::before {
  width: 100%;
}

.footer-links a:hover {
  color: var(--secondary-accent-color);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #222;
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  position: relative;
}

.social-links a:hover {
  background-color: var(--secondary-accent-color);
  transform: translateY(-3px);
}

.social-links a::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 10px;
  border-radius: 4px;
  background-color: #222;
  color: #fff;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  margin-bottom: 10px;
}

.social-links a:hover::after {
  opacity: 1;
  visibility: visible;
}

.copyright {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #333;
  text-align: center;
  font-size: 0.9rem;
  position: relative;
}

.back-to-top {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--secondary-accent-color);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.back-to-top:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 10px rgba(189, 154, 0, 0.5);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation for multiple elements */
.feature-card.reveal {
  transition-delay: calc(var(--reveal-index, 0) * 0.1s);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-accent-color);
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}

#preloader.fade-out {
  opacity: 0;
}

/* Roadmap Teaser Section Styles */
.roadmap-teaser-section {
  position: relative;
  overflow: hidden;
}

.roadmap-teaser-container {
  border-radius: 15px;
  position: relative;
  z-index: 1;
}

/* Floating Roadmap Elements */
.roadmap-teaser-container::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(189, 154, 0, 0.1) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  top: -150px;
  right: -150px;
  z-index: -1;
}

.roadmap-teaser-container::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(189, 154, 0, 0.05) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  bottom: -100px;
  left: -100px;
  z-index: -1;
}

/* Status Cards */
.roadmap-status-card {
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
  border-radius: 15px;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #333;
  border-top: 3px solid transparent;
}

.roadmap-status-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.roadmap-status-card .status-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.roadmap-status-card:hover .status-icon {
  transform: scale(1.2);
}

.roadmap-status-card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.roadmap-status-card p {
  color: #aaa;
  font-size: 0.9rem;
}

/* Card Color Variations */
.released-card {
  border-top-color: #4caf50;
}

.released-card .status-icon {
  color: #4caf50;
}

.inprogress-card {
  border-top-color: #2196f3;
}

.inprogress-card .status-icon {
  color: #2196f3;
}

.planned-card {
  border-top-color: #ff9800;
}

.planned-card .status-icon {
  color: #ff9800;
}

/* Feature Highlights */
.roadmap-highlight-item {
  background: rgba(30, 30, 30, 0.7);
  border-radius: 10px;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.roadmap-highlight-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  left: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(189, 154, 0, 0.3),
    transparent
  );
}

.roadmap-highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.roadmap-highlight-item h5 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  color: #fff;
}

.roadmap-highlight-item p {
  color: #bbb;
  margin-bottom: 0;
}

/* Status Badges */
.status-badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.status-badge.released {
  background-color: rgba(76, 175, 80, 0.2);
  color: #4caf50;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.status-badge.inprogress {
  background-color: rgba(33, 150, 243, 0.2);
  color: #2196f3;
  border: 1px solid rgba(33, 150, 243, 0.3);
}

.status-badge.planned {
  background-color: rgba(255, 152, 0, 0.2);
  color: #ff9800;
  border: 1px solid rgba(255, 152, 0, 0.3);
}

/* CTA Section */
.roadmap-cta p {
  font-size: 1.1rem;
  color: #ddd;
}

/* Fade-in animation for the section */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.roadmap-teaser-section .reveal {
  animation: fadeInUp 1s ease-out forwards;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .hero-subtitle {
    font-size: 1.6rem;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }

  .cta-content h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  body {
    padding-top: 30px; /* Adjust this value based on your navbar height */
  }

  .hero-section {
    padding-top: 70px;
    min-height: calc(100vh - 60px);
  }

  .navbar {
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  }
  .navbar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.4) 100%
    );
    z-index: -1;
  }
  .navbar-collapse {
    background-color: rgba(0, 0, 0, 0.95);
    border-radius: 0 0 10px 10px;
    padding: 10px;
    margin-top: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }

  /* Space out nav items on mobile */
  .navbar-nav .nav-item {
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 5px;
  }

  .navbar-nav .nav-item:last-child {
    border-bottom: none;
  }

  /* Make navigation links more visible */
  .navbar .nav-link {
    padding: 10px 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
  }

  /* Button styling improvements */
  .navbar .btn {
    width: 100%;
    margin: 5px 0;
    padding: 10px;
    text-align: center;
  }

  /* Enhance the logo & brand area */
  .navbar-brand {
    display: flex;
    align-items: center;
    margin-right: auto;
  }

  .navbar-brand img {
    width: 35px;
    height: auto;
  }

  .navbar-brand span {
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  }

  .navbar .nav-item:last-child {
    margin-bottom: 10px;
  }

  .navbar .nav-link.btn {
    display: inline-block;
    margin: 5px 0;
  }

  .navbar .nav-link.btn-primary {
    color: white !important;
    border: none;
    padding: 8px 20px;
    margin-top: 10px;
  }

  .navbar .nav-link.btn-sm {
    font-size: 0.9rem;
  }

  .hero-section {
    padding: 120px 0 80px;
  }

  .hero-title {
    font-size: 4rem !important;
  }

  #particles-canvas {
    opacity: 0.5 !important;
  }

  .floating-coin {
    display: none !important;
  }

  .hero-subtitle {
    font-size: 1.4rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .feature-card {
    margin-bottom: 2rem;
  }

  .feature-release-card {
    display: flex;
    flex-direction: column;
  }

  .carousel-slide {
    width: 90%;
  }

  .cta-content h2 {
    font-size: 2.2rem;
  }

  .theme-swatches {
    flex-direction: column;
  }

  .theme-swatch {
    width: 100%;
    height: 90px;
    margin-bottom: 10px;
  }

  .input-group {
    flex-direction: column;
  }

  .gif-showcase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .gif-card {
    flex: 0 0 100%;
    margin-bottom: 0;
  }

  .gif-container {
    height: 200px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .hero-section {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 3rem !important;
  }

  .app-logo {
    width: 120px;
    height: auto;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .stat-counter {
    font-size: 2rem;
  }

  .feature-card,
  .testimonial-card,
  .screenshot-card {
    transform: none !important; /* Disable 3D effect on mobile */
  }

  .floating-coin {
    display: none; /* Hide floating coins on mobile */
  }

  .carousel-container {
    height: 300px;
  }

  .fund-value {
    min-width: 70px;
    padding: 10px;
  }

  .demo-tabs {
    flex-wrap: wrap;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }
  .carousel-caption {
    padding: 10px;
    bottom: 20px;
  }

  .carousel-caption h3 {
    font-size: 1.2rem;
  }

  .carousel-caption p {
    font-size: 0.9rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .testimonial-avatar {
    width: 50px;
    height: 50px;
  }

  #testimonialCarousel .carousel-inner {
    min-height: 350px;
  }

  .roadmap-status-card {
    margin-bottom: 1rem;
  }

  .roadmap-teaser-container {
    padding: 1.5rem;
  }

  .roadmap-cta .btn {
    width: 100%;
  }

  .gif-container {
    height: 200px;
  }

  .gif-showcase-row {
    grid-template-columns: 1fr;
  }

  .gif-content h3 {
    font-size: 1.2rem;
  }

  .gif-content p {
    font-size: 0.9rem;
  }

  .gif-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .app-logo {
    width: 100px;
    height: auto;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .section-title p {
    font-size: 1rem;
  }

  .demo-tabs {
    flex-direction: column;
    width: 100%;
  }

  .demo-tab {
    width: 100%;
  }

  .funds-display {
    flex-direction: column;
    align-items: center;
  }

  .fund-value {
    width: 100%;
  }

  .demo-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .demo-item .item-qty {
    margin-top: 5px;
  }

  .carousel-container {
    height: 250px;
  }

  .carousel-caption {
    position: relative;
    background-color: #111;
    border-radius: 0 0 10px 10px;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
  }

  .carousel-indicators {
    bottom: 0;
    position: relative;
    margin-top: 10px;
  }

  .carousel-slide {
    width: 100%;
  }

  .carousel-info h3 {
    font-size: 1.2rem;
  }

  .carousel-info p {
    font-size: 0.9rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .footer-logo {
    width: 80px;
  }
  .testimonial-card {
    padding: 1.2rem;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-avatar {
    margin-right: 0;
    margin-bottom: 10px;
  }

  #testimonialCarousel .carousel-inner {
    min-height: 400px;
  }

  .gif-container {
    height: 180px;
  }

  .gif-content {
    padding: 15px;
  }

  .gif-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
}

/* Recently Released Features Section Styling */
.recently-released-section {
  padding: 20px 0 40px;
  position: relative;
}

.release-title {
  position: relative;
  display: inline-block;
  color: var(--secondary-accent-color);
  font-size: 1.8rem;
  font-weight: 700;
  padding: 0 15px;
}

.release-title:before,
.release-title:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 50px;
  height: 2px;
  background: linear-gradient(
    to var(--direction, right),
    var(--secondary-accent-color),
    transparent
  );
}

.release-title:before {
  right: 100%;
  --direction: right;
}

.release-title:after {
  left: 100%;
  --direction: left;
}

.feature-cards-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 10px;
}

.feature-release-card {
  display: flex;
  align-items: center;
  background: linear-gradient(
    145deg,
    rgba(26, 26, 26, 0.8),
    rgba(10, 10, 10, 0.9)
  );
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  border: 1px solid #333;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-release-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(189, 154, 0, 0.05), transparent);
  z-index: 0;
}

.feature-release-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
  border-color: var(--secondary-accent-color);
}

.feature-release-card:after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(189, 154, 0, 0.1) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.feature-release-card:hover:after {
  opacity: 1;
  transform: scale(1);
}

.feature-icon {
  min-width: 60px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: var(--secondary-accent-color);
  font-size: 1.5rem;
  border: 1px solid rgba(189, 154, 0, 0.3);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.feature-release-card:hover .feature-icon {
  transform: rotate(15deg);
  border-color: var(--secondary-accent-color);
}

.feature-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.feature-content h4 {
  margin: 0 0 5px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
}

.feature-content p {
  margin: 0;
  color: #bbb;
  font-size: 0.9rem;
}

.feature-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4caf50;
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 5px rgba(76, 175, 80, 0.3));
}

/* Enhanced Gem Divider Styling */
.section-divider {
  height: 3px;
  background: linear-gradient(
    to right,
    transparent,
    var(--secondary-accent-color),
    transparent
  );
  margin: 30px 0;
  position: relative;
}

/* Crystal gem styling */
.divider-gem {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 0 15px rgba(189, 154, 0, 0.8);
  z-index: 10;
}

/* Create gem facets with multiple layers */
.divider-gem:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #ffd700, #bd9a00, #8b4513);
  z-index: -1;
}

/* For better mobile appearance */
@media (max-width: 768px) {
  .divider-gem {
    width: 25px;
    height: 25px;
  }
}
