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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Custom Properties */
:root {
  --primary-color: #f0bc74;
  --primary-dark: #d4a574;
  --secondary-color: #2c3e50;
  --dark-color: #1a1a1a;
  --light-color: #f8f9fa;
  --text-color: #333;
  --text-muted: #6c757d;
  --border-color: #dee2e6;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Bootstrap Overrides */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #000;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #000;
  transform: translateY(-2px);
}

.text-primary {
  color: var(--primary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

/* Navigation */
.navbar {
  background: rgba(26, 26, 26, 0.95) !important;
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23f0bc74" stop-opacity="0.1"/><stop offset="100%" stop-color="%23f0bc74" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

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

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.hero-stats {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

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

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

.stat-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.hero-buttons .btn {
  margin: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 50px;
}

/* Token Sale Widget */
.token-sale-widget {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.widget-header {
  display: flex;
  justify-content: between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.widget-header h3 {
  color: var(--text-color);
  font-size: 1.5rem;
  font-weight: 600;
}

.sale-progress {
  margin-bottom: 1.5rem;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.progress {
  height: 10px;
  border-radius: 10px;
  background-color: #e9ecef;
}

.progress-bar {
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  border-radius: 10px;
}

.token-info .row {
  margin-bottom: 1rem;
}

.info-item {
  text-align: center;
  padding: 0.5rem;
}

.info-item .label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.info-item .value {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
}

.countdown-timer {
  text-align: center;
  margin: 1.5rem 0;
}

.countdown-timer h5 {
  color: var(--text-color);
  margin-bottom: 1rem;
}

.timer-display {
  display: flex;
  justify-content: space-around;
  margin-bottom: 1rem;
}

.time-unit {
  text-align: center;
}

.time-unit span {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  background: rgba(240, 188, 116, 0.1);
  border-radius: 10px;
  padding: 0.5rem;
  min-width: 50px;
}

.time-unit label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
  padding: 120px 0 80px;
  text-align: center;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* Section Styles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1rem;
}

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

/* Feature Cards */
.feature-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-icon i {
  font-size: 2rem;
  color: #000;
}

.feature-card h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Allocation Section */
.allocation-list {
  margin-top: 2rem;
}

.allocation-item {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

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

.allocation-color {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 1rem;
}

.allocation-label {
  flex: 1;
  font-weight: 500;
  color: var(--text-color);
}

.allocation-value {
  font-weight: 600;
  color: var(--primary-color);
}

.chart-container {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Roadmap */
.roadmap-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.roadmap-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
  text-align: right;
  padding-right: 2rem;
}

.timeline-item:nth-child(even) .timeline-content {
  padding-left: 2rem;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 0 4px #fff, var(--shadow);
}

.timeline-item.completed .timeline-marker {
  background: #28a745;
}

.timeline-item.active .timeline-marker {
  background: var(--primary-color);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 4px #fff, 0 0 0 8px rgba(240, 188, 116, 0.3);
  }
  50% {
    box-shadow: 0 0 0 4px #fff, 0 0 0 8px rgba(240, 188, 116, 0.1);
  }
  100% {
    box-shadow: 0 0 0 4px #fff, 0 0 0 8px rgba(240, 188, 116, 0.3);
  }
}

.timeline-marker i {
  color: #000;
  font-size: 1.5rem;
}

.timeline-content {
  flex: 1;
  background: #fff;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.timeline-content h4 {
  color: var(--text-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.timeline-status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.timeline-item.completed .timeline-status {
  background: #d4edda;
  color: #155724;
}

.timeline-item.active .timeline-status {
  background: rgba(240, 188, 116, 0.2);
  color: #856404;
}

.timeline-item:not(.completed):not(.active) .timeline-status {
  background: #e2e3e5;
  color: #6c757d;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: #000;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.cta-buttons .btn {
  margin: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 50px;
}

/* About Page Styles */
.story-stats .stat-card {
  background: #fff;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.story-stats .stat-card:hover {
  transform: translateY(-5px);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.stat-icon i {
  font-size: 1.5rem;
  color: #000;
}

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

.stat-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* MVV Cards */
.mvv-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  height: 100%;
  transition: transform 0.3s ease;
}

.mvv-card:hover {
  transform: translateY(-5px);
}

.mvv-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.mvv-icon i {
  font-size: 2rem;
  color: #000;
}

.mvv-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.mvv-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

.values-list {
  list-style: none;
  text-align: left;
  margin-top: 1rem;
}

.values-list li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.values-list strong {
  color: var(--text-color);
}

/* Team Cards */
.team-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.team-avatar i {
  font-size: 3rem;
  color: #000;
}

.team-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-bio {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.team-social a {
  width: 40px;
  height: 40px;
  background: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: var(--primary-color);
  color: #000;
  transform: translateY(-2px);
}

/* Advisor Cards */
.advisor-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.advisor-card:hover {
  transform: translateY(-5px);
}

.advisor-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.advisor-avatar i {
  font-size: 2rem;
  color: #000;
}

.advisor-info h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.advisor-role {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.advisor-bio {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Contact Page Styles */
.contact-info-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-10px);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.contact-icon i {
  font-size: 2rem;
  color: #000;
}

.contact-info-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.contact-info-card p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.contact-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--primary-dark);
}

/* Contact Form */
.contact-form-wrapper {
  background: #fff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.contact-form .form-control {
  border: 2px solid var(--border-color);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(240, 188, 116, 0.25);
}

.contact-form .form-select {
  border: 2px solid var(--border-color);
  border-radius: 10px;
  padding: 0.75rem 1rem;
}

.contact-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(240, 188, 116, 0.25);
}

.contact-form .form-label {
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.contact-form .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Office Cards */
.office-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  height: 100%;
}

.office-card:hover {
  transform: translateY(-5px);
}

.office-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.office-icon i {
  font-size: 2rem;
  color: #000;
}

.office-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.office-details p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-align: left;
}

.office-details i {
  color: var(--primary-color);
  width: 20px;
}

/* Social Platforms */
.social-platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-platform {
  background: #fff;
  border-radius: 15px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.social-platform:hover {
  transform: translateY(-5px);
  text-decoration: none;
}

.social-platform i {
  font-size: 2.5rem;
  margin-right: 1rem;
  width: 60px;
  text-align: center;
}

.social-platform.twitter i {
  color: #1da1f2;
}

.social-platform.linkedin i {
  color: #0077b5;
}

.social-platform.telegram i {
  color: #0088cc;
}

.social-platform.discord i {
  color: #7289da;
}

.platform-info h5 {
  color: var(--text-color);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.platform-info p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.9rem;
}

/* FAQ Styles */
.faq-controls {
  position: sticky;
  top: 80px;
  z-index: 10;
}

.search-box .input-group-text {
  background: #fff;
  border: 2px solid var(--border-color);
  border-right: none;
}

.search-box .form-control {
  border: 2px solid var(--border-color);
  border-left: none;
  padding: 0.75rem 1rem;
}

.search-box .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

.search-box .input-group-text {
  border-color: var(--primary-color);
}

.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.faq-categories .btn {
  border-radius: 25px;
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.faq-categories .btn.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #000;
}

.faq-item {
  margin-bottom: 1rem;
}

.faq-item .accordion-item {
  border: none;
  border-radius: 15px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item .accordion-button {
  background: #fff;
  border: none;
  padding: 1.5rem;
  font-weight: 500;
  color: var(--text-color);
  font-size: 1.1rem;
}

.faq-item .accordion-button:not(.collapsed) {
  background: var(--primary-color);
  color: #000;
}

.faq-item .accordion-button:focus {
  box-shadow: none;
}

.faq-item .accordion-body {
  padding: 1.5rem;
  background: #fff;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Tokenomics Styles */
.token-stat-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  height: 100%;
}

.token-stat-card:hover {
  transform: translateY(-10px);
}

.token-stat-card .stat-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.token-stat-card .stat-icon i {
  font-size: 2rem;
  color: #000;
}

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

.token-stat-card p {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 0.25rem;
}

.token-stat-card small {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Distribution Details */
.distribution-details {
  margin-top: 2rem;
}

.distribution-item {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

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

.distribution-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.distribution-color {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 1rem;
}

.distribution-header h5 {
  flex: 1;
  font-weight: 600;
  color: var(--text-color);
  margin: 0;
}

.distribution-amount {
  font-weight: 600;
  color: var(--primary-color);
}

.distribution-item p {
  color: var(--text-muted);
  margin: 0;
  padding-left: 2rem;
  line-height: 1.6;
}

/* Vesting Timeline */
.vesting-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.vesting-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
  transform: translateX(-50%);
}

.vesting-timeline .timeline-item {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  align-items: flex-start;
}

.vesting-timeline .timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.vesting-timeline .timeline-item:nth-child(odd) .timeline-content {
  text-align: right;
  padding-right: 2rem;
}

.vesting-timeline .timeline-item:nth-child(even) .timeline-content {
  padding-left: 2rem;
}

.vesting-timeline .timeline-marker {
  position: absolute;
  left: 50%;
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 0 4px #fff, var(--shadow);
}

.vesting-timeline .timeline-marker i {
  color: #000;
  font-size: 1.5rem;
}

.vesting-timeline .timeline-content {
  flex: 1;
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.vesting-timeline .timeline-content h4 {
  color: var(--text-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.vesting-details {
  margin-top: 1rem;
}

.vesting-allocation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.vesting-allocation:last-child {
  border-bottom: none;
}

.allocation-label {
  color: var(--text-muted);
  font-weight: 500;
}

.allocation-value {
  color: var(--primary-color);
  font-weight: 600;
}

/* Utility Cards */
.utility-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  height: 100%;
}

.utility-card:hover {
  transform: translateY(-10px);
}

.utility-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.utility-icon i {
  font-size: 2rem;
  color: #000;
}

.utility-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.utility-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.utility-benefit {
  background: var(--light-color);
  border-radius: 10px;
  padding: 1rem;
}

.benefit-label {
  font-weight: 600;
  color: var(--text-color);
  display: block;
  margin-bottom: 0.5rem;
}

.benefit-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.benefit-list li {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  padding-left: 1rem;
  position: relative;
}

.benefit-list li::before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

/* Economic Cards */
.economic-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  height: 100%;
}

.economic-card:hover {
  transform: translateY(-5px);
}

.economic-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.economic-icon i {
  font-size: 2rem;
  color: #000;
}

.economic-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.economic-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.economic-stats {
  background: var(--light-color);
  border-radius: 10px;
  padding: 1rem;
}

.economic-stats .stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.economic-stats .stat-item:last-child {
  border-bottom: none;
}

.stat-label {
  color: var(--text-muted);
  font-weight: 500;
}

.stat-value {
  color: var(--primary-color);
  font-weight: 600;
}

/* Footer */
.footer {
  background: var(--dark-color);
  color: #fff;
}

.footer-brand h4 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-color);
  color: #000;
  transform: translateY(-2px);
}

.footer h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.newsletter-form .input-group {
  margin-bottom: 1rem;
}

.newsletter-form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-color);
  color: #fff;
  box-shadow: none;
}

.security-badges .badge {
  margin-right: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 2rem 0 1rem;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

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

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

  .roadmap-timeline::before,
  .vesting-timeline::before {
    left: 30px;
  }

  .timeline-item {
    flex-direction: column !important;
    padding-left: 80px;
  }

  .timeline-item .timeline-content {
    text-align: left !important;
    padding: 1.5rem !important;
  }

  .timeline-marker {
    left: 30px !important;
    transform: none !important;
  }

  .faq-categories {
    justify-content: flex-start;
  }

  .footer-legal {
    justify-content: flex-start;
    margin-top: 1rem;
  }

  .advisor-card {
    flex-direction: column;
    text-align: center;
  }

  .advisor-avatar {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .social-platforms {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-stats .row {
    text-align: center;
  }

  .timer-display {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .time-unit {
    flex: 1;
    min-width: calc(50% - 0.25rem);
  }

  .cta-buttons .btn,
  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Success/Error States */
.alert {
  border-radius: 10px;
  border: none;
  padding: 1rem 1.5rem;
}

.alert-success {
  background: #d4edda;
  color: #155724;
}

.alert-danger {
  background: #f8d7da;
  color: #721c24;
}

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

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

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

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}
