/* ========== RESET & BASE ========== */
:root {
  --primary-color: #7c3aed;
  --secondary-color: #06b6d4;
  --accent-color: #f59e0b;
  --bg-dark: #0f172a;
  --bg-darker: #020617;
  --bg-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --text-light: #f8fafc;
  --text-gray: #94a3b8;
  --border-color: #334155;
  --card-bg: rgba(30, 41, 59, 0.5);
  --card-border: rgba(148, 163, 184, 0.1);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --border-radius: 16px;
  --border-radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* ========== UTILITY CLASSES ========== */
.text-gradient {
  background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}



.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-light) 0%, var(--text-gray) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ========== NAVIGATION ========== */
.navbar {
  background: #000000;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--card-border);
  transition: var(--transition);
  padding: 0.3rem 0;
  min-height: auto;
}

.navbar-brand img {
  transition: var(--transition);
  filter: drop-shadow(0 2px 8px rgba(124, 58, 237, 0.3));
}

.navbar-brand:hover img {
  transform: scale(1.08);
  filter: drop-shadow(0 4px 12px rgba(124, 58, 237, 0.5));
}

.navbar-brand {
  position: relative;
}

.navbar-brand::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-brand:hover::after {
  width: 100%;
}

.navbar-nav .nav-link {
  color: var(--text-gray) !important;
  font-weight: 500;
  margin: 0 0.3rem;
  padding: 0.3rem 0.8rem !important;
  border-radius: var(--border-radius);
  transition: var(--transition);
  font-size: 0.9rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--text-light) !important;
  background: var(--card-bg);
}

.navbar-toggler {
  padding: 0.2rem 0.5rem;
  font-size: 1rem;
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Navbar Launch Button */
.navbar-launch-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
  border: none !important;
  padding: 0.5rem 1rem !important;
  margin-left: 1rem !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3) !important;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
}

.navbar-launch-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5) !important;
  background: linear-gradient(135deg, #8b5cf6, #0891b2) !important;
}

.navbar-launch-btn:active {
  transform: translateY(0) !important;
}

.navbar-launch-btn i {
  font-size: 1rem;
}

/* ========== HERO SECTION ========== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-gradient);
  overflow: hidden;
  padding-top: 100px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 40% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-30px) rotate(1deg); }
  66% { transform: translateY(-15px) rotate(-1deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-left: 2rem;
  margin-top: -4.5rem;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

@keyframes titleGlow {
  from {
    text-shadow: 
      0 0 20px rgba(124, 58, 237, 0.8),
      0 0 40px rgba(6, 182, 212, 0.6),
      0 4px 15px rgba(0, 0, 0, 0.3);
  }
  to {
    text-shadow: 
      0 0 30px rgba(124, 58, 237, 1),
      0 0 60px rgba(6, 182, 212, 0.8),
      0 0 80px rgba(245, 158, 11, 0.4),
      0 4px 15px rgba(0, 0, 0, 0.3);
  }
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #e2e8f0;
  margin-bottom: 2.5rem;
  max-width: 650px;
  font-weight: 400;
  line-height: 1.6;
}

.hero-buttons .btn {
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
  font-size: 1.1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 50%, #f59e0b 100%);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.6);
  animation-duration: 1.5s;
}

.btn-primary::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: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-outline-light {
  border: 2px solid var(--text-gray);
  color: var(--text-light);
  background: transparent;
}

.btn-outline-light:hover {
  background: var(--text-light);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

.hero-stats {
  border-top: 1px solid var(--card-border);
  padding-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--text-gray);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2rem;
}

.floating-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: var(--transition);
}

.floating-card-link:hover {
  transform: translateY(-5px);
  text-decoration: none;
  color: inherit;
}

.floating-card-link:hover .floating-card {
  border-color: rgba(124, 58, 237, 0.6);
  box-shadow: 
    0 25px 50px rgba(124, 58, 237, 0.3),
    0 0 100px rgba(6, 182, 212, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.floating-card {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(6, 182, 212, 0.1));
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: var(--border-radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  backdrop-filter: blur(15px);
  box-shadow: 
    0 20px 40px rgba(124, 58, 237, 0.2),
    0 0 80px rgba(6, 182, 212, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: floatCard 6s ease-in-out infinite;
  position: relative;
  overflow: hidden;
  max-width: 300px;
  margin: 0 auto;
  transition: var(--transition);
  cursor: pointer;
}

.card-link-indicator {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  background: rgba(124, 58, 237, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(124, 58, 237, 0.3);
}

.card-link-indicator i {
  font-size: 1rem !important;
  color: var(--primary-color) !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  filter: none !important;
  animation: none !important;
  margin: 0 !important;
}

.floating-card-link:hover .card-link-indicator {
  opacity: 1;
  background: rgba(124, 58, 237, 0.4);
  transform: scale(1.1);
}

.floating-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

.floating-card i {
  font-size: 4.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 8px rgba(124, 58, 237, 0.3));
  animation: iconGlow 2s ease-in-out infinite alternate;
}

.floating-card h4 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff, #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

.floating-card p {
  color: #94a3b8;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes iconGlow {
  from {
    filter: drop-shadow(0 4px 8px rgba(124, 58, 237, 0.3));
    transform: scale(1);
  }
  to {
    filter: drop-shadow(0 6px 15px rgba(124, 58, 237, 0.6)) drop-shadow(0 0 20px rgba(6, 182, 212, 0.4));
    transform: scale(1.05);
  }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px) rotateY(0deg); }
  50% { transform: translateY(-20px) rotateY(5deg); }
}

/* ========== SECTIONS ========== */
.networks-section,
.features-section,
.about-section,
.faq-section,
.contact-section {
  background: var(--bg-darker);
  position: relative;
}

.networks-section::before,
.features-section::before,
.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-color) 50%, transparent 100%);
}

/* ========== NETWORK CARDS ========== */
.network-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius);
  padding: 2rem 1rem;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  height: 100%;
}

.network-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.1);
}

.network-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  border-radius: 50%;
  object-fit: contain;
  transition: var(--transition);
}

.crypto-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  font-size: 1.8rem;
  transition: var(--transition);
}

.crypto-icon.bitcoin { background: linear-gradient(135deg, #f7931a, #ff9500); }
.crypto-icon.ethereum { background: linear-gradient(135deg, #627eea, #8a92b2); }
.crypto-icon.litecoin { background: linear-gradient(135deg, #bfbbbb, #f0f0f0); }
.crypto-icon.dogecoin { background: linear-gradient(135deg, #c2a633, #d4af37); }
.crypto-icon.binance { background: linear-gradient(135deg, #f3ba2f, #f0b90b); }
.crypto-icon.polygon { background: linear-gradient(135deg, #8247e5, #9f4ae5); }
.crypto-icon.ripple { background: linear-gradient(135deg, #0596aa, #00d4aa); }

.crypto-icon.bitcoin::before { content: '₿'; }
.crypto-icon.ethereum::before { content: 'Ξ'; }
.crypto-icon.litecoin::before { content: 'Ł'; }
.crypto-icon.dogecoin::before { content: 'Ð'; }
.crypto-icon.binance::before { content: 'B'; }
.crypto-icon.polygon::before { content: 'P'; }
.crypto-icon.ripple::before { content: 'X'; }

.network-card h5 {
  font-weight: 600;
  margin-bottom: 0;
}

/* ========== FEATURE CARDS ========== */
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  height: 100%;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  position: relative;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary-color);
  box-shadow: 0 20px 40px rgba(6, 182, 212, 0.1);
}

.step-card {
  position: relative;
  overflow: visible;
}

.step-number {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  box-shadow: var(--shadow-lg);
  z-index: 10;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.feature-icon i {
  font-size: 1.8rem;
  color: white;
}

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

.feature-card p {
  color: var(--text-gray);
  margin-bottom: 0;
}

/* ========== ABOUT SECTION ========== */
.about-section {
  background-image: url('https://telegram.ngo/crypto-craft-1/img-5.png');
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.about-section .container {
  position: relative;
  z-index: 2;
}

.about-section * {
  transition: none !important;
  animation: none !important;
}

.about-content {
  padding: 3rem 4rem 3rem 2rem;
  position: relative;
  z-index: 3;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 75%;
}

.about-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #6d28d9;
  text-shadow: none;
  position: relative;
}



.about-content p {
  font-size: 1.3rem;
  color: #f1f5f9;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.about-section .btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
  border: none !important;
  padding: 1rem 2.5rem !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3) !important;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
  text-shadow: none !important;
}

.about-section .btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5) !important;
  background: linear-gradient(135deg, #8b5cf6, #0891b2) !important;
}

.about-section .stat-box {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(124, 58, 237, 0.8);
  border-radius: var(--border-radius);
  padding: 0.8rem;
  text-align: center;
  backdrop-filter: blur(15px);
  transition: none !important;
  animation: none !important;
}

.about-section .stat-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #8b5cf6;
  margin-bottom: 0.3rem;
  transition: none !important;
  animation: none !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.about-section .stat-box p {
  color: #f1f5f9;
  margin-bottom: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: none !important;
  animation: none !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* ========== FAQ SECTION ========== */
.accordion {
  border-radius: var(--border-radius);
  overflow: hidden;
}

.accordion-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  margin-bottom: 1rem;
  border-radius: var(--border-radius) !important;
  backdrop-filter: blur(10px);
}

.accordion-button {
  background: transparent;
  color: var(--text-light);
  border: none;
  padding: 1.5rem;
  font-weight: 600;
  border-radius: var(--border-radius) !important;
}

.accordion-button:not(.collapsed) {
  background: var(--primary-color);
  color: white;
  box-shadow: none;
}

.accordion-button::after {
  filter: brightness(0) invert(1);
}

.accordion-body {
  background: var(--card-bg);
  color: var(--text-gray);
  padding: 1.5rem;
}



/* ========== FOOTER ========== */
.footer-section {
  background: var(--bg-dark);
  border-top: 1px solid var(--card-border);
}

.footer-brand p {
  color: var(--text-light);
  max-width: 300px;
}

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

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

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

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

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

.footer-contact li {
  color: var(--text-light);
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
}

.footer-contact a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--primary-color);
}

.footer-divider {
  border-color: var(--card-border);
  margin: 1rem 0;
}

.footer-copyright {
  color: var(--text-light);
  margin-bottom: 0;
}

/* ========== PRIVACY POLICY PAGE ========== */
.privacy-policy-section {
  background: var(--bg-darker);
  min-height: 100vh;
  padding-top: 120px;
}

.privacy-content {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-xl);
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.content-block {
  margin-bottom: 2rem;
}

.content-block h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.5rem;
}

.content-block p {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.content-block ul {
  color: var(--text-gray);
  padding-left: 1.5rem;
}

.content-block li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.content-block a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.content-block a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* ========== RESPONSIVE ========== */

/* Reset mobile styles for desktop */
@media (min-width: 769px) {
  .footer-brand p {
    width: auto !important;
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    position: static !important;
    left: auto !important;
    transform: none !important;
  }
  
  .footer-section .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.2rem 0;
  }
  
  .navbar-brand img {
    height: 30px !important;
  }
  
  .navbar-nav .nav-link {
    padding: 0.4rem 0.8rem !important;
    font-size: 0.85rem;
  }
  
  .navbar-launch-btn {
    margin-left: 0 !important;
    margin-top: 0.5rem !important;
    padding: 0.4rem 0.8rem !important;
    font-size: 0.8rem !important;
    width: auto !important;
  }
  
  .hero-section {
    padding-top: 100px;
  }

  .hero-content {
    padding-left: 1rem;
    margin-top: -1rem;
  }

  .floating-card-link:hover {
    transform: translateY(-3px);
  }

  .floating-card {
    max-width: 250px;
    padding: 2rem 1.5rem;
  }

  .card-link-indicator {
    width: 28px;
    height: 28px;
    top: 0.8rem;
    right: 0.8rem;
  }

  .card-link-indicator i {
    font-size: 0.9rem !important;
  }

  .floating-card i {
    font-size: 3.5rem;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }

  .feature-icon i {
    font-size: 1.6rem;
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
    top: -12px;
    right: -12px;
  }

  .floating-card h4 {
    font-size: 1.5rem;
  }

  .floating-card p {
    font-size: 1rem;
  }

  .hero-visual {
    padding-top: 2rem;
    height: 400px;
  }

  .hero-title {
    font-size: 2.4rem;
    font-weight: 600;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .about-section {
    min-height: 80vh;
    background-size: cover;
    background-position: center;
  }

  .about-content {
    padding: 1.5rem;
    margin-top: 0;
    height: 80vh;
    width: 100%;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .about-content p {
    font-size: 1.1rem;
  }

  .about-section .stat-box {
    padding: 0.6rem;
    margin-bottom: 1rem;
  }

  .about-section .stat-box h3 {
    font-size: 1.2rem;
  }

  .about-section .stat-box p {
    font-size: 0.7rem;
  }

  .about-stats .row {
    gap: 0.5rem;
  }

  .about-stats .col-6 {
    flex: 0 0 auto;
    width: calc(50% - 0.25rem);
  }
  
  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .feature-card,
  .network-card {
    margin-bottom: 2rem;
  }

  .network-icon {
    width: 70px;
    height: 70px;
  }

  .crypto-icon {
    width: 70px;
    height: 70px;
    font-size: 1.6rem;
  }

  .privacy-content {
    padding: 2rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .content-block h2 {
    font-size: 1.3rem;
  }

  /* Footer mobile layout */
  .footer-section {
    padding: 1.5rem 0 !important;
  }

  .footer-section .container {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    width: 100vw;
  }

  .footer-section .row:first-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem 1rem;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  .footer-section .col-lg-4:first-child {
    grid-column: 1 / span 2;
    grid-row: 1;
  }

  .footer-section .col-lg-4:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .footer-section .col-lg-4:last-child {
    grid-column: 2;
    grid-row: 2;
  }

  .footer-brand p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    text-align: center;
    width: 100vw;
    padding: 0 5px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-section .col-lg-4:first-child {
    grid-column: 1 / span 2;
    grid-row: 1;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer-section .col-lg-4:first-child .footer-brand {
    width: 100%;
    text-align: center;
  }

  .footer-section h6 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .footer-links,
  .footer-contact {
    font-size: 0.8rem;
  }

  .footer-links li,
  .footer-contact li {
    margin-bottom: 0.2rem;
  }

  .footer-contact li a {
    word-break: break-all;
  }

  .footer-section .col-lg-4:nth-child(2),
  .footer-section .col-lg-4:last-child {
    padding-top: 0.5rem;
  }
}

@media (max-width: 576px) {
  .navbar {
    padding: 0.15rem 0;
  }
  
  .navbar-brand img {
    height: 28px !important;
  }
  
  .navbar-nav .nav-link {
    padding: 0.3rem 0.6rem !important;
    font-size: 0.8rem;
  }
  
  .navbar-launch-btn {
    margin-left: 0 !important;
    margin-top: 0.4rem !important;
    padding: 0.35rem 0.7rem !important;
    font-size: 0.75rem !important;
    width: 100% !important;
    text-align: center !important;
  }
  
  .hero-section {
    padding-top: 90px;
  }

  .hero-content {
    padding-left: 0.5rem;
    margin-top: 0rem;
  }

  .floating-card-link:hover {
    transform: translateY(-2px);
  }

  .floating-card {
    max-width: 220px;
    padding: 1.5rem 1rem;
  }

  .card-link-indicator {
    width: 24px;
    height: 24px;
    top: 0.6rem;
    right: 0.6rem;
  }

  .card-link-indicator i {
    font-size: 0.8rem !important;
  }

  .floating-card i {
    font-size: 3rem;
  }

  .floating-card h4 {
    font-size: 1.3rem;
  }

  .feature-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 0.8rem;
  }

  .feature-icon i {
    font-size: 1.4rem;
  }

  .step-number {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
    top: -10px;
    right: -10px;
  }

  .floating-card p {
    font-size: 0.9rem;
  }

  .hero-visual {
    padding-top: 1rem;
    height: 350px;
  }

  .hero-title {
    font-size: 2rem;
    font-weight: 600;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    font-weight: 400;
  }
  
  .section-title {
    font-size: 1.75rem;
  }

  .about-section {
    min-height: 70vh;
    background-size: cover;
    background-position: center;
  }

  .about-content {
    padding: 1rem;
    height: 70vh;
    width: 100%;
  }

  .about-content h2 {
    font-size: 1.8rem;
  }

  .about-content p {
    font-size: 1rem;
  }

  .about-section .stat-box {
    padding: 0.5rem;
    margin-bottom: 1rem;
  }

  .about-section .stat-box h3 {
    font-size: 1.1rem;
  }

  .about-section .stat-box p {
    font-size: 0.65rem;
    line-height: 1.2;
  }

  .about-stats .row {
    gap: 0.4rem;
  }

  .about-stats .col-6 {
    flex: 0 0 auto;
    width: calc(50% - 0.2rem);
  }
  
  .feature-card,
  .network-card {
    padding: 1.2rem;
  }

  .network-icon {
    width: 65px;
    height: 65px;
  }

  .crypto-icon {
    width: 65px;
    height: 65px;
    font-size: 1.5rem;
  }

  .privacy-content {
    padding: 1.5rem;
  }

  .page-title {
    font-size: 1.8rem;
  }

  .content-block h2 {
    font-size: 1.2rem;
  }

  /* Footer mobile layout - very small screens */
  .footer-section {
    padding: 1rem 0 !important;
  }

  .footer-section .container {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    width: 100vw;
  }

  .footer-section .row:first-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.75rem 0.75rem;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  .footer-section .col-lg-4:first-child {
    grid-column: 1 / span 2;
    grid-row: 1;
  }

  .footer-section .col-lg-4:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .footer-section .col-lg-4:last-child {
    grid-column: 2;
    grid-row: 2;
  }

  .footer-brand p {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    text-align: center;
    width: 100vw;
    padding: 0 2px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-section .col-lg-4:first-child {
    grid-column: 1 / span 2;
    grid-row: 1;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer-section .col-lg-4:first-child .footer-brand {
    width: 100%;
    text-align: center;
  }

  .footer-section h6 {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
  }

  .footer-links,
  .footer-contact {
    font-size: 0.75rem;
  }

  .footer-links li,
  .footer-contact li {
    margin-bottom: 0.15rem;
  }

  .footer-copyright {
    font-size: 0.75rem;
    margin-top: 0.5rem;
  }

  .footer-contact li a {
    word-break: break-word;
    line-height: 1.2;
  }

  .footer-section .col-lg-4:nth-child(2),
  .footer-section .col-lg-4:last-child {
    padding-top: 0.4rem;
  }
}

/* ========== ANIMATIONS ========== */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes textPulse {
  from {
    filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.8));
    transform: scale(1);
  }
  to {
    filter: drop-shadow(0 0 25px rgba(139, 92, 246, 1)) drop-shadow(0 0 35px rgba(6, 182, 212, 0.6));
    transform: scale(1.02);
  }
}

.text-gradient {
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

/* ========== SCROLL ANIMATIONS ========== */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}

/* ========== CUSTOM SCROLLBAR ========== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

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