/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;
  color-scheme: light dark;
  background-color: #0d0d0d;
  color: #ebecf3;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: #0d0d0d;
  color: #fff;
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  height: 100%;
}

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

/* Full-width animated header background */
.container::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100vw;
  right: -100vw;
  height: 600px;
  background-image: 
    linear-gradient(rgba(67, 56, 202, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(67, 56, 202, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: gridMove 20s linear infinite;
  z-index: 0;
}

/* Full-width animated squares */
.container::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100vw;
  right: -100vw;
  height: 600px;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(67, 56, 202, 0.15) 2px, transparent 2px),
    radial-gradient(circle at 80% 70%, rgba(103, 65, 255, 0.15) 2px, transparent 2px),
    radial-gradient(circle at 60% 20%, rgba(149, 122, 255, 0.15) 2px, transparent 2px),
    radial-gradient(circle at 30% 80%, rgba(67, 56, 202, 0.15) 2px, transparent 2px),
    radial-gradient(circle at 40% 60%, rgba(149, 122, 255, 0.1) 3px, transparent 3px),
    radial-gradient(circle at 70% 40%, rgba(67, 56, 202, 0.12) 2px, transparent 2px);
  background-size: 60px 60px, 80px 80px, 100px 100px, 120px 120px, 90px 90px, 110px 110px;
  animation: squareFloat 15s ease-in-out infinite;
  z-index: 0;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(162, 162, 162, 0.1);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

/* Remove old header backgrounds */
header::before,
header::after {
  display: none;
}

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 60px 0;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.hero-section .hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero section secondary button styling */
.hero-section .secondary-btn .btn-wrapper {
  background: linear-gradient(to bottom, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-section .secondary-btn .btn-inner {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.hero-section .secondary-btn:hover .btn-inner {
  background: rgba(255, 255, 255, 0.15);
}

/* Remove old hero backgrounds */
.hero-section::before,
.hero-section::after {
  display: none;
}

/* Moving Grid Animation */
@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(30px, 30px);
  }
}

/* Floating Squares Animation */
@keyframes squareFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translate(10px, -5px) scale(1.1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-5px, 10px) scale(0.9);
    opacity: 0.4;
  }
  75% {
    transform: translate(15px, 5px) scale(1.05);
    opacity: 0.6;
  }
}

/* Ensure all header content is above background */
.logo,
.header-buttons,
.hero-title,
.hero-description,
.cta-btn {
  position: relative;
  z-index: 2;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(67, 56, 202, 0.3);
  border-radius: 10px;
  overflow: hidden;
  background: none;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.logo-text {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #FFFFFF;
  text-shadow: none;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-btn {
  /* Inherit button styles from main button system */
  background: linear-gradient(to top, #222222, #303030);
  padding: 3px;
  border-radius: 1rem;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  font-family: inherit;
  transition: opacity 0.3s ease;
}

.secondary-header-btn .btn-wrapper {
  background: linear-gradient(to bottom, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.2);
}

.secondary-header-btn .btn-inner {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.secondary-header-btn:hover .btn-inner {
  background: rgba(255, 255, 255, 0.15);
}

.primary-header-btn .btn-wrapper {
  background: linear-gradient(to bottom, #957AFF, #6741FF);
  border: 1px solid #1D1D1D;
}

.primary-header-btn .btn-inner {
  background: #6741FF;
  color: white;
}

.primary-header-btn:hover .btn-inner {
  background: rgba(103, 65, 255, 0.75);
}

/* Button Styles - Exact recreation with proper nested structure */
.connect-btn, .cta-btn, .primary-btn, .secondary-btn {
  /* Outer wrapper with dark gradient border */
  background: linear-gradient(to top, #222222, #303030);
  padding: 3px;
  border-radius: 1rem; /* 16px */
  border: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  font-family: inherit;
  transition: opacity 0.3s ease;
}

/* First inner wrapper with purple gradient */
.btn-wrapper {
  padding: 2px;
  border-radius: 0.75rem; /* 12px */
  width: 100%;
  height: 100%;
  position: relative;
  background: linear-gradient(to bottom, #957AFF, #6741FF);
  border: 1px solid #1D1D1D;
}

/* Inner button content */
.btn-inner {
  position: relative;
  height: 2.5rem; /* 40px */
  min-width: 2.5rem;
  overflow: hidden;
  border-radius: 10px;
  transition: background-color 0.3s ease;
  padding: 0 1rem;
  width: 100%;
  background: #6741FF;
  color: white;
  font-weight: bold;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem; /* 6px */
  margin-left: auto;
  cursor: pointer;
  text-shadow: 0px 2px rgba(0, 0, 0, 0.5);
}

.connect-btn:hover .btn-inner, 
.cta-btn:hover .btn-inner, 
.primary-btn:hover .btn-inner {
  background: rgba(103, 65, 255, 0.75);
}

/* Hover radial gradient overlay */
.btn-inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(68.53% 169.15% at 50% -27.56%, #D787FF 0%, #6741FF 100%);
  transition: opacity 0.5s ease;
  z-index: 1;
  opacity: 0;
  mix-blend-mode: screen;
  border-radius: 10px;
}

.connect-btn:hover .btn-inner::after, 
.cta-btn:hover .btn-inner::after, 
.primary-btn:hover .btn-inner::after {
  opacity: 0.2;
}

/* Icon and text styling */
.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  stroke-width: 2;
  color: currentColor;
}

/* Ensure text is above overlay */
.btn-inner span {
  position: relative;
  z-index: 2;
}

/* Secondary button styling */
.secondary-btn .btn-inner {
  background: rgba(255, 255, 255, 0.1);
}

.secondary-btn:hover .btn-inner {
  background: rgba(255, 255, 255, 0.15);
}

/* CTA button larger size */
.cta-btn {
  font-size: 1.2rem;
}

.cta-btn .btn-inner {
  padding: 0 2.25rem;
  height: 3rem;
}

.cta-btn .btn-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFFFFF;
  line-height: 1.1;
}

.hero-description {
  font-size: 1.3rem;
  color: #A2A2A2;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.feature-card {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 32px;
  background: rgba(29, 29, 29, 0.8);
  border: 1px solid rgba(48, 48, 48, 0.6);
  height: 140px;
  width: 100%;
  border-radius: 16px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  background: rgba(35, 35, 35, 0.9);
  border-color: rgba(67, 56, 202, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(67, 56, 202, 0.15);
}

/* Left Icon Box for Feature Cards */
.feature-icon-box {
  height: 72px;
  width: 72px;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s ease;
  background: transparent;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover .feature-icon-box {
  transform: scale(1.05);
  border-color: rgba(67, 56, 202, 0.3);
}

/* Centered Feature Icon */
.feature-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.75rem;
  height: 1.75rem;
  z-index: 2;
  color: #FFFFFF;
  stroke-width: 2;
}

/* Feature Content */
.feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.feature-card p {
  font-size: 0.875rem;
  font-weight: 500;
  color: #B8B8B8;
  margin: 0;
  line-height: 1.4;
}

/* Decorative Overlay for Feature Cards */
.feature-card::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: radial-gradient(circle at 85% 25%, rgba(67, 56, 202, 0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* Glass morphism effect */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: 16px;
  pointer-events: none;
  z-index: 0;
}

/* Bot Features Section - Two Column Layout */
.bot-features-section {
  margin-bottom: 60px;
}

.bot-features-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #FFFFFF;
}

.bot-features-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Column - Features Content */
.bot-features-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(29, 29, 29, 0.6);
  border: 1px solid rgba(48, 48, 48, 0.4);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-item:hover {
  background: rgba(35, 35, 35, 0.8);
  border-color: rgba(67, 56, 202, 0.3);
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(67, 56, 202, 0.1);
}

/* Glass morphism effect for feature items */
.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border-radius: 12px;
  pointer-events: none;
  z-index: 0;
}

.feature-bullet {
  width: 1.5rem;
  height: 1.5rem;
  color: #6741FF;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  z-index: 1;
}

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

.feature-text h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.feature-text p {
  font-size: 0.9rem;
  font-weight: 400;
  color: #A2A2A2;
  margin: 0;
  line-height: 1.5;
}

/* Bot Features Actions */
.bot-features-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Right Column - Phone Mockup */
.bot-phone-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-container {
  position: relative;
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.3s ease;
}

.phone-container:hover {
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg) scale(1.02);
}

.phone-frame {
  width: 280px;
  height: 560px;
  background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
  border-radius: 32px;
  padding: 8px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 8px 20px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #333;
  border-radius: 2px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Phone Header */
.phone-header {
  background: #2a2a2a;
  color: white;
  flex-shrink: 0;
}

.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

.phone-time {
  color: white;
}

.phone-indicators {
  display: flex;
  gap: 4px;
  align-items: center;
}

.phone-signal,
.phone-wifi,
.phone-battery {
  width: 0.8rem;
  height: 0.8rem;
  color: white;
  stroke-width: 2;
}

.telegram-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bot-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.bot-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bot-info h4 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
}

.bot-status {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Phone Chat */
.phone-chat {
  flex: 1;
  background: #1a1a1a;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
}

/* Telegram Banner */
.telegram-banner {
  border-radius: 12px;
  margin: 8px 0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.banner-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Message Block */
.message-block {
  background: #2a2a2a;
  border-radius: 12px;
  padding: 12px;
  margin: 4px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.message-content h3 {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.message-content p {
  font-size: 0.75rem;
  color: #cccccc;
  margin: 0;
  line-height: 1.4;
}

.message-content .message-time {
  font-size: 0.65rem;
  color: #888;
  margin-top: 6px;
  display: block;
  text-align: right;
}

/* Telegram Menu */
.telegram-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 4px 0;
}

.menu-row {
  display: flex;
  gap: 6px;
}

.menu-btn {
  flex: 1;
  background: #3a3a3a;
  border: 1px solid #4a4a4a;
  border-radius: 8px;
  padding: 8px 6px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-family: inherit;
}

.menu-btn:hover {
  background: #4a4a4a;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.menu-icon {
  font-size: 1rem;
  line-height: 1;
}

.menu-btn span:last-child {
  font-size: 0.7rem;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
}

/* Specific button colors for dark theme */
.wallets-btn:hover {
  background: #4a3a2a;
  border-color: #6a5a4a;
}

.swap-btn:hover {
  background: #2a3a4a;
  border-color: #4a5a6a;
}

.launch-btn {
  background: #3a3a3a;
  color: white;
  border-color: #4a4a4a;
}

.launch-btn:hover {
  background: #4a4a4a;
  transform: translateY(-1px);
}

.launch-btn span:last-child {
  color: white;
  font-weight: 500;
}

/* Chat Messages */
.chat-message {
  display: flex;
  max-width: 85%;
}

.bot-message {
  align-self: flex-start;
}

.user-message {
  align-self: flex-end;
}

.message-bubble {
  padding: 10px 14px;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.bot-message .message-bubble {
  background: white;
  border-bottom-left-radius: 4px;
}

.user-message .message-bubble {
  background: #0088cc;
  color: white;
  border-bottom-right-radius: 4px;
}

.message-bubble p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
}

.message-time {
  font-size: 0.7rem;
  opacity: 0.7;
  margin-top: 4px;
  display: block;
}

/* Responsive Design for Bot Features */
@media (max-width: 1024px) {
  .bot-features-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .phone-container {
    transform: none;
  }
  
  .phone-container:hover {
    transform: scale(1.02);
  }
}

@media (max-width: 768px) {
  .bot-features-section h2 {
    font-size: 2rem;
  }
  
  .phone-frame {
    width: 240px;
    height: 480px;
  }
  
  .bot-features-actions {
    justify-content: center;
  }
}

/* Footer */
footer {
  background: rgba(34, 34, 34, 0.8);
  border-top: 1px solid rgba(162, 162, 162, 0.1);
  padding: 60px 0 30px 0;
  margin-top: 80px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Company Info Section */
.footer-section.company-info {
  margin-bottom: 40px;
}

.company-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.company-logo .logo-icon {
  width: 48px;
  height: 48px;
  margin-right: 12px;
  background: none;
  border-radius: 10px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(67, 56, 202, 0.3);
}

.company-logo .logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.company-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
}

.company-description {
  color: #A2A2A2;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.legal-text {
  color: #A2A2A2;
  line-height: 1.6;
  font-size: 0.9rem;
  margin-bottom: 30px;
}

.legal-text strong {
  color: #FFFFFF;
  font-weight: 600;
}

/* Regulatory Info Section */
.footer-section.regulatory-info {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
  padding: 25px;
  background: rgba(48, 48, 48, 0.4);
  border-radius: 16px;
  border: 1px solid rgba(162, 162, 162, 0.1);
}

.regulatory-icon {
  flex-shrink: 0;
}

.cert-badge {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #10F4B1, #00FFAD);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(16, 244, 177, 0.3);
}

.cert-symbol {
  color: #000;
  width: 1.5rem;
  height: 1.5rem;
  stroke-width: 3;
}

.regulatory-text {
  color: #A2A2A2;
  line-height: 1.6;
  font-size: 0.9rem;
  flex: 1;
}

/* Footer Bottom Section */
.footer-bottom {
  border-top: 1px solid rgba(162, 162, 162, 0.1);
  padding-top: 30px;
}

.contact-info {
  display: flex;
  gap: 60px;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-label {
  color: #A2A2A2;
  font-size: 0.9rem;
  font-weight: 500;
}

.contact-link {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #7b2ff2;
}

/* Social Section */
.social-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 75%;
  margin-bottom: 30px;
}

@media (min-width: 640px) {
  .social-section {
    flex-direction: row;
    width: max-content;
  }
}

/* Social Cards */
.social-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.social-card a {
  text-decoration: none;
  color: inherit;
}

.social-card:hover {
  transform: translateY(-5px);
  border-color: #6741FF;
  box-shadow: 0 10px 30px rgba(103, 65, 255, 0.3);
}

/* Animated Top-Right Badge */
.social-card::before {
  content: attr(data-badge);
  position: absolute;
  top: -6px;
  right: -12px;
  z-index: 3;
  transform: rotate(3deg);
  padding: 1px;
  background: linear-gradient(to bottom right, #38ff9c, #63ffaa);
  border-radius: 8px;
  transition: transform 0.3s cubic-bezier(.17,1.66,.68,1.01);
}

.social-card:hover::before {
  transform: translateX(4px) translateY(-4px) rotate(6deg);
}

.social-card::after {
  content: attr(data-badge);
  position: absolute;
  top: -5px;
  right: -11px;
  z-index: 4;
  background-color: #204E2D;
  padding: 5px 12px;
  font-size: 0.875rem;
  border-radius: 7px;
  color: white;
  font-weight: 500;
  transform: rotate(3deg);
  transition: transform 0.3s cubic-bezier(.17,1.66,.68,1.01);
}

.social-card:hover::after {
  transform: translateX(4px) translateY(-4px) rotate(6deg);
}

/* Twitter Card Badge */
.twitter-card::before,
.twitter-card::after {
  content: "Follow now";
}

/* Discord Card Badge */
.discord-card::before,
.discord-card::after {
  content: "Join";
}

/* Main Card Content (Flex Layout) */
.social-card-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  background: linear-gradient(to right, #1D1D1D 50%, #27432F 120%);
  overflow: hidden;
}

.social-icon-wrapper {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0D0D0D;
  border-radius: 6px;
  flex-shrink: 0;
}

.social-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: white;
  stroke-width: 2;
}

.social-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.social-platform {
  font-size: 0.75rem;
  color: #C4C4C4;
  line-height: 1;
}

.social-action {
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  line-height: 1;
}

/* Background Pattern (Optional) */
.social-card-content::before {
  content: '';
  position: absolute;
  top: 0;
  right: -20px;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 70% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Remove old social styles */
.social-item,
.social-label,
.social-btn,
.social-text,
.follow-btn,
.join-btn {
  display: none;
}

/* Footer Bottom Info */
.footer-bottom-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(162, 162, 162, 0.1);
}

.copyright {
  color: #A2A2A2;
  font-size: 0.9rem;
  margin: 0;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(48, 48, 48, 0.6);
  border: 1px solid rgba(162, 162, 162, 0.2);
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.language-selector:hover {
  background: rgba(48, 48, 48, 0.8);
  border-color: rgba(162, 162, 162, 0.3);
}

.flag {
  width: 1rem;
  height: 1rem;
  color: #A2A2A2;
  stroke-width: 2;
}

.language {
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 500;
}

.dropdown-arrow {
  width: 0.8rem;
  height: 0.8rem;
  color: #A2A2A2;
  stroke-width: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 15px;
  }
  
  header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .logo {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .bot-info-card {
    padding: 30px;
  }
  
  .action-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-section.regulatory-info {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-info {
    flex-direction: column;
    gap: 20px;
  }
  
  .social-section {
    flex-direction: column;
    gap: 20px;
  }
  
  .footer-bottom-info {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .connect-btn, .cta-btn, .primary-btn, .secondary-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  
  .cta-btn {
    padding: 16px 32px;
    font-size: 1.1rem;
  }
  
  footer {
    padding: 40px 0 20px 0;
  }
  
  .social-item {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* Secondary button styling for bot features */
.bot-features-actions .secondary-btn .btn-wrapper {
  background: linear-gradient(to bottom, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.2);
}

.bot-features-actions .secondary-btn .btn-inner {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.bot-features-actions .secondary-btn:hover .btn-inner {
  background: rgba(255, 255, 255, 0.15);
} 