/* Base Styles */
/* Diamond Paws Theme Highlights */
.diamond-paws {
  color: var(--accent-color);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.diamond-paws::after {
  content: '💎';
  font-size: 0.8em;
  margin-left: 3px;
}

.sheds-weak {
  color: var(--primary-color);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.sheds-weak::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  box-shadow: 0 0 5px var(--primary-color);
}

:root {
  --primary-color: #b400ff; /* Purple neon */
  --secondary-color: #00f0ff; /* Cyan tech */
  --accent-color: #ff5722; /* Orange fire */
  --highlight-color: #ffcc00; /* Yellow eyes */
  --bg-color: #0a0a12; /* Dark background */
  --bg-light: #14141f; /* Slightly lighter bg */
  --bg-aura: #1a0a2e; /* Purple background aura */
  --text-color: #ffffff;
  --text-secondary: #b3b3cc;
  --font-primary: 'Orbitron', sans-serif;
  --font-secondary: 'Rajdhani', sans-serif;
  --border-radius: 4px;
  --transition: all 0.3s ease;
  --grid-lines: rgba(180, 0, 255, 0.2); /* Purple grid lines */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

a {
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Special Effects */
.noise {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(10, 10, 18, 0) 0%, rgba(10, 10, 18, 0.8) 100%);
  pointer-events: none;
  z-index: 2;
}

.glitch {
  position: relative;
  color: var(--text-color);
  font-family: var(--font-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.glitch::before {
  color: var(--accent-color);
  animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.glitch::after {
  color: var(--secondary-color);
  animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
  0% {
    clip-path: inset(70% 0 10% 0);
    transform: translate(-2px, -2px);
  }
  10% {
    clip-path: inset(10% 0 60% 0);
    transform: translate(2px, 2px);
  }
  20% {
    clip-path: inset(30% 0 40% 0);
    transform: translate(-1px, 1px);
  }
  30% {
    clip-path: inset(50% 0 30% 0);
    transform: translate(1px, -1px);
  }
  40% {
    clip-path: inset(20% 0 20% 0);
    transform: translate(2px, -2px);
  }
  50% {
    clip-path: inset(60% 0 70% 0);
    transform: translate(-2px, 1px);
  }
  60% {
    clip-path: inset(80% 0 10% 0);
    transform: translate(2px, 2px);
  }
  70% {
    clip-path: inset(10% 0 90% 0);
    transform: translate(-1px, -1px);
  }
  80% {
    clip-path: inset(40% 0 50% 0);
    transform: translate(1px, 2px);
  }
  90% {
    clip-path: inset(50% 0 30% 0);
    transform: translate(-2px, -2px);
  }
  100% {
    clip-path: inset(20% 0 60% 0);
    transform: translate(2px, -1px);
  }
}

@keyframes glitch-anim-2 {
  0% {
    clip-path: inset(20% 0 60% 0);
    transform: translate(2px, -1px);
  }
  10% {
    clip-path: inset(50% 0 30% 0);
    transform: translate(-2px, -2px);
  }
  20% {
    clip-path: inset(40% 0 50% 0);
    transform: translate(1px, 2px);
  }
  30% {
    clip-path: inset(10% 0 90% 0);
    transform: translate(-1px, -1px);
  }
  40% {
    clip-path: inset(80% 0 10% 0);
    transform: translate(2px, 2px);
  }
  50% {
    clip-path: inset(60% 0 70% 0);
    transform: translate(-2px, 1px);
  }
  60% {
    clip-path: inset(20% 0 20% 0);
    transform: translate(2px, -2px);
  }
  70% {
    clip-path: inset(50% 0 30% 0);
    transform: translate(1px, -1px);
  }
  80% {
    clip-path: inset(30% 0 40% 0);
    transform: translate(-1px, 1px);
  }
  90% {
    clip-path: inset(10% 0 60% 0);
    transform: translate(2px, 2px);
  }
  100% {
    clip-path: inset(70% 0 10% 0);
    transform: translate(-2px, -2px);
  }
}

.floating {
  animation: floating 6s ease-in-out infinite;
}

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

.divider {
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 15px auto 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px 2px var(--primary-color);
}

.divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: divider-shine 3s infinite;
}

@keyframes divider-shine {
  to {
    left: 100%;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition);
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
  transition: 0.5s;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-color);
  box-shadow: 0 0 15px 0 rgba(180, 0, 255, 0.5);
}

.btn-primary:hover {
  background-color: #9000cc;
  transform: translateY(-3px);
  box-shadow: 0 0 20px 0 rgba(180, 0, 255, 0.7);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-color);
  border: 2px solid var(--accent-color);
  box-shadow: 0 0 10px 0 rgba(255, 87, 34, 0.4);
}

.btn-secondary:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 0 15px 0 rgba(255, 87, 34, 0.6);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  background-color: rgba(10, 10, 18, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  z-index: 2;
}

.logo {
  height: 40px;
  transition: var(--transition);
}

.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-family: var(--font-primary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition);
  box-shadow: 0 0 5px 0 var(--accent-color);
}

.nav-link:hover {
  color: var(--accent-color);
}

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 0 40px;
  position: relative;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  z-index: 3;
}

.hero-content {
  flex: 1;
}

.hero h1 {
  font-size: 64px;
  margin-bottom: 20px;
  text-shadow: 0 0 15px var(--primary-color);
}

.hero-tagline {
  font-size: 22px;
  margin-bottom: 30px;
  color: var(--text-secondary);
  max-width: 600px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat {
  text-align: center;
}

.stat h3 {
  font-family: var(--font-primary);
  font-size: 32px;
  color: var(--accent-color);
  text-shadow: 0 0 10px var(--accent-color);
}

.hero-image {
  flex: 1;
  max-width: 500px;
  filter: drop-shadow(0 0 20px rgba(255, 87, 34, 0.5));
}

.hero-image img {
  max-height: 500px;
  object-fit: contain;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: bounce 2s infinite;
  color: var(--text-secondary);
}

.scroll-indicator i {
  margin-top: 10px;
}

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

/* About Section */
.about {
  padding: 100px 0;
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

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

.section-header h2 {
  font-size: 36px;
  text-shadow: 0 0 10px var(--primary-color);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-image {
  flex: 1;
  max-width: 450px;
  filter: drop-shadow(0 0 20px rgba(255, 87, 34, 0.5));
}

.about-image img {
  max-height: 400px;
  object-fit: contain;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-family: var(--font-primary);
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.about-text p {
  margin-bottom: 20px;
  font-size: 18px;
}

.about-quote {
  padding: 20px;
  margin: 30px 0;
  border-left: 4px solid var(--accent-color);
  background-color: rgba(255, 87, 34, 0.1);
  box-shadow: 0 0 20px rgba(255, 87, 34, 0.2);
  border-radius: var(--border-radius);
}

.about-quote blockquote {
  font-family: var(--font-primary);
  font-size: 22px;
  font-style: italic;
  color: var(--accent-color);
}

/* Tokenomics Section */
.tokenomics {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.tokenomics-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.tokenomics-chart {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.tokenomics-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(180, 0, 255, 0.3);
}

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(180, 0, 255, 0.5);
}

.info-icon i {
  color: var(--text-color);
  font-size: 20px;
}

.info-text h3 {
  font-family: var(--font-primary);
  margin-bottom: 5px;
}

.info-text p {
  color: var(--text-secondary);
}

/* Roadmap Section */
.roadmap {
  padding: 100px 0;
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.roadmap-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background-color: var(--primary-color);
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--primary-color);
}

.roadmap-item {
  position: relative;
  width: calc(50% - 30px);
  margin-bottom: 50px;
  padding: 20px;
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.roadmap-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(180, 0, 255, 0.3);
}

.roadmap-item:nth-child(odd) {
  margin-right: auto;
}

.roadmap-item:nth-child(even) {
  margin-left: auto;
}

.roadmap-item::before {
  content: '';
  position: absolute;
  top: 20px;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
  box-shadow: 0 0 5px var(--primary-color);
}

.roadmap-item:nth-child(odd)::before {
  right: -30px;
}

.roadmap-item:nth-child(even)::before {
  left: -30px;
}

.roadmap-item::after {
  content: '';
  position: absolute;
  top: 17px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--accent-color);
  box-shadow: 0 0 10px var(--accent-color);
}

.roadmap-item:nth-child(odd)::after {
  right: -36px;
}

.roadmap-item:nth-child(even)::after {
  left: -36px;
}

.roadmap-item.completed::after {
  background-color: var(--primary-color);
  box-shadow: 0 0 10px var(--primary-color);
}

.roadmap-phase {
  font-family: var(--font-primary);
  font-size: 14px;
  color: var(--primary-color);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.roadmap-title {
  font-family: var(--font-primary);
  font-size: 22px;
  margin-bottom: 10px;
}

.roadmap-description {
  color: var(--text-secondary);
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

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

.faq-item {
  margin-bottom: 20px;
  border: 1px solid rgba(180, 0, 255, 0.3);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: 0 0 15px rgba(180, 0, 255, 0.3);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: var(--bg-light);
  transition: var(--transition);
}

.faq-question h3 {
  font-family: var(--font-primary);
  font-size: 18px;
  margin: 0;
}

.faq-question i {
  transition: var(--transition);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-question {
  background-color: rgba(180, 0, 255, 0.1);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 20px;
}

/* Community Section */
.community {
  padding: 100px 0;
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.community-content {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.community-text {
  flex: 1;
}

.community-text p {
  font-size: 18px;
  margin-bottom: 30px;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(180, 0, 255, 0.3);
  background-color: var(--primary-color);
}

.social-link i {
  color: var(--accent-color);
}

.social-link:hover i {
  color: var(--text-color);
}

/* Share Section */
.share-section {
  margin-top: 40px;
  padding: 30px;
  background-color: var(--bg-aura);
  border-radius: var(--border-radius);
  box-shadow: 0 0 25px rgba(180, 0, 255, 0.25);
  border: 1px solid rgba(180, 0, 255, 0.3);
  position: relative;
  overflow: hidden;
}

/* Cyber grid background for share section */
.share-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, var(--grid-lines) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-lines) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}

.share-section h3 {
  font-family: var(--font-primary);
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--secondary-color);
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
  position: relative;
}

.share-section p {
  margin-bottom: 20px;
  color: var(--text-secondary);
  position: relative;
}

.share-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  position: relative;
}

.share-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 15px;
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-color);
  background-color: rgba(10, 10, 18, 0.7);
  position: relative;
  overflow: hidden;
}

.share-button::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transition: var(--transition);
}

.share-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.share-button i {
  font-size: 18px;
  transition: var(--transition);
}

.share-button.twitter::after {
  background-color: #1DA1F2;
  box-shadow: 0 0 10px #1DA1F2;
}

.share-button.twitter:hover {
  background-color: rgba(29, 161, 242, 0.15);
}

.share-button.twitter:hover i {
  color: #1DA1F2;
}

.share-button.facebook::after {
  background-color: #4267B2;
  box-shadow: 0 0 10px #4267B2;
}

.share-button.facebook:hover {
  background-color: rgba(66, 103, 178, 0.15);
}

.share-button.facebook:hover i {
  color: #4267B2;
}

.share-button.telegram::after {
  background-color: #0088cc;
  box-shadow: 0 0 10px #0088cc;
}

.share-button.telegram:hover {
  background-color: rgba(0, 136, 204, 0.15);
}

.share-button.telegram:hover i {
  color: #0088cc;
}

.share-button.whatsapp::after {
  background-color: #25D366;
  box-shadow: 0 0 10px #25D366;
}

.share-button.whatsapp:hover {
  background-color: rgba(37, 211, 102, 0.15);
}

.share-button.whatsapp:hover i {
  color: #25D366;
}

.share-button.copy::after {
  background-color: var(--secondary-color);
  box-shadow: 0 0 10px var(--secondary-color);
}

.share-button.copy:hover {
  background-color: rgba(0, 240, 255, 0.15);
}

.share-button.copy:hover i {
  color: var(--secondary-color);
}

.share-message {
  height: 24px;
  margin-top: 15px;
  color: var(--accent-color);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 14px;
  letter-spacing: 0.5px;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  min-height: 24px;
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

.newsletter {
  flex: 1;
  padding: 30px;
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.newsletter h3 {
  font-family: var(--font-primary);
  font-size: 24px;
  margin-bottom: 10px;
}

.newsletter p {
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 12px 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(180, 0, 255, 0.3);
  border-radius: var(--border-radius);
  color: var(--text-color);
  font-family: var(--font-secondary);
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(180, 0, 255, 0.3);
}

.form-message {
  margin-top: 15px;
  text-align: center;
}

.form-message.success {
  color: #4CAF50;
}

.form-message.error {
  color: #F44336;
}

/* Footer */
.footer {
  padding: 50px 0;
  background-color: rgba(10, 10, 18, 0.9);
  position: relative;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-logo img {
  height: 40px;
}

.footer-info {
  max-width: 500px;
}

.footer-info p {
  margin-bottom: 10px;
  color: var(--text-secondary);
  font-size: 14px;
}

.disclaimer {
  font-size: 12px;
  opacity: 0.7;
}

.footer-links ul {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-color);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--text-color);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 100;
  box-shadow: 0 0 15px rgba(180, 0, 255, 0.5);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #9000cc;
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(180, 0, 255, 0.7);
}

/* Notifications */
.notifications-container {
  position: fixed;
  top: 100px;
  right: 20px;
  max-width: 300px;
  z-index: 1010;
}

.notification {
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: var(--border-radius);
  background-color: var(--bg-light);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.3s forwards;
  position: relative;
}

.notification.info {
  border-left: 4px solid var(--primary-color);
}

.notification.success {
  border-left: 4px solid #4CAF50;
}

.notification.error {
  border-left: 4px solid #F44336;
}

.notification-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background-color: var(--primary-color);
  animation: progress 5s linear forwards;
}

.notification.success .notification-progress {
  background-color: #4CAF50;
}

.notification.error .notification-progress {
  background-color: #F44336;
}

.notification-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes progress {
  from {
    width: 100%;
  }
  to {
    width: 0%;
  }
}

/* Media Queries */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 48px;
  }
  
  .hero-tagline {
    font-size: 18px;
  }
  
  .about-content, .community-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .tokenomics-info {
    grid-template-columns: 1fr;
  }
  
  .about-quote {
    text-align: left;
  }
  
  .roadmap-item {
    width: calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: var(--bg-light);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
    transition: var(--transition);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  }
  
  .nav-list.show {
    right: 0;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links ul {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .roadmap-timeline::before {
    left: 20px;
  }
  
  .roadmap-item {
    width: calc(100% - 40px);
    margin-left: 40px !important;
    margin-right: 0 !important;
  }
  
  .roadmap-item::before {
    left: -20px !important;
    right: auto !important;
    width: 20px;
  }
  
  .roadmap-item::after {
    left: -26px !important;
    right: auto !important;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
  
  .share-buttons {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 36px;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .about-text h3 {
    font-size: 22px;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 10px;
  }
  
  .hero-stats {
    gap: 20px;
  }
  
  .stat h3 {
    font-size: 24px;
  }
  
  .btn {
    padding: 10px 20px;
    width: 100%;
  }
  
  .social-feeds-container {
    grid-template-columns: 1fr;
  }
}

/* Social Feeds Section */
.social-feeds-section {
  margin-top: 60px;
}

.section-header-small {
  margin-bottom: 30px;
}

.section-header-small h3 {
  font-size: 24px;
}

.divider-small {
  width: 100px;
  margin: 15px auto;
}

.social-feeds-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.social-feed {
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  position: relative;
  height: 600px;
}

.social-feed::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: 1;
}

.twitter-feed::before {
  background: linear-gradient(90deg, #1DA1F2, var(--primary-color));
}

.instagram-feed::before {
  background: linear-gradient(90deg, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
}

.social-feed:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(180, 0, 255, 0.2);
}

.social-feed-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background-color: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.social-feed-header i {
  color: var(--text-color);
}

.social-feed-header h4 {
  font-family: var(--font-primary);
  margin: 0;
  font-size: 18px;
}

.twitter-feed-container,
.instagram-feed-container {
  height: calc(100% - 51px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--bg-light);
}

/* Custom scrollbars for the feed containers */
.twitter-feed-container::-webkit-scrollbar,
.instagram-feed-container::-webkit-scrollbar {
  width: 6px;
}

.twitter-feed-container::-webkit-scrollbar-track,
.instagram-feed-container::-webkit-scrollbar-track {
  background: var(--bg-light);
}

.twitter-feed-container::-webkit-scrollbar-thumb,
.instagram-feed-container::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 20px;
}

/* Customize the Twitter widget */
.twitter-timeline {
  height: 100% !important;
}

/* Override Instagram embed default styles */
.instagram-media {
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 auto !important;
  max-width: 100% !important;
  min-width: auto !important;
  padding: 0 !important;
  width: 100% !important;
}