/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont,
    "Segoe UI", system-ui, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
}

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

.hidden {
  display: none !important;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    #0c0c1e 0%,
    #1a1a3e 25%,
    #2d1b69 50%,
    #4c1d95 75%,
    #6b21a8 100%
  );
  overflow: hidden;

  @media (max-width: 768px) {
    min-height: 70vh;
  }
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-animation: float 20s ease-in-out infinite;
  animation: float 20s ease-in-out infinite;
}

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

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

.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.logo-container {
  margin-bottom: 2rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.logoevm {
  width: 140px;
  height: auto;
  -webkit-filter: drop-shadow(0 8px 32px rgba(168, 85, 247, 0.4));
  filter: drop-shadow(0 8px 32px rgba(168, 85, 247, 0.4));
  -webkit-animation: logoGlow 3s ease-in-out infinite alternate;
  animation: logoGlow 3s ease-in-out infinite alternate;
  display: block;
  margin: 0 auto;
}

@-webkit-keyframes logoGlow {
  0% {
    -webkit-filter: drop-shadow(0 8px 32px rgba(168, 85, 247, 0.4));
    filter: drop-shadow(0 8px 32px rgba(168, 85, 247, 0.4));
  }
  100% {
    -webkit-filter: drop-shadow(0 8px 32px rgba(120, 213, 250, 0.6));
    filter: drop-shadow(0 8px 32px rgba(120, 213, 250, 0.6));
  }
}

@keyframes logoGlow {
  0% {
    -webkit-filter: drop-shadow(0 8px 32px rgba(168, 85, 247, 0.4));
    filter: drop-shadow(0 8px 32px rgba(168, 85, 247, 0.4));
  }
  100% {
    -webkit-filter: drop-shadow(0 8px 32px rgba(120, 213, 250, 0.6));
    filter: drop-shadow(0 8px 32px rgba(120, 213, 250, 0.6));
  }
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #a855f7 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: none;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.4rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(168, 85, 247, 0.8) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 3rem;
  font-weight: 500;
  line-height: 1.4;
}

.wallet-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.connect-btn {
  background: linear-gradient(135deg, #a855f7 0%, #3b82f6 50%, #06b6d4 100%);
  color: white;
  border: none;
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 10px;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 32px rgba(168, 85, 247, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.connect-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: left 0.6s;
}

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

.connect-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 48px rgba(168, 85, 247, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.2);
}

.btn-icon {
  font-size: 1.2rem;
}

.wallet-status {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 1.5rem 2rem;
  color: white;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.wallet-status::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #a855f7, #06b6d4);
  -webkit-animation: shimmer 2s infinite;
  animation: shimmer 2s infinite;
}

@-webkit-keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.wallet-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.wallet-address {
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 1rem;
  opacity: 0.9;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.05em;
}

.connection-status {
  font-size: 0.9rem;
  color: #4ade80;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.connection-status::before {
  content: "●";
  color: #4ade80;
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.eligibility-result {
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  max-width: 450px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.eligibility-result::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(168, 85, 247, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.result-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.result-icon {
  font-size: 4rem;
  -webkit-filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.result-message {
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  color: white;
  line-height: 1.4;
}

.claim-btn {
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.4s ease;
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 32px rgba(74, 222, 128, 0.3);
  position: relative;
  overflow: hidden;
}

.claim-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: left 0.6s;
}

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

.claim-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 48px rgba(74, 222, 128, 0.4);
}

/* Sponsors Section */
.sponsors {
  padding: 8rem 0;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.sponsors::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(168, 85, 247, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(6, 182, 212, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #a855f7 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 5rem;
  font-weight: 400;
}

/* Sponsors Grid */
.sponsors-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  flex-wrap: wrap;
}

.sponsor-card {
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.sponsor-card:hover .card-glow {
  opacity: 1;
}

.sponsor-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 20px 60px rgba(168, 85, 247, 0.2),
    0 0 0 1px rgba(168, 85, 247, 0.2);
}

.sponsor-logo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsor-logo img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-filter: grayscale(100%) brightness(1.2);
  filter: grayscale(100%) brightness(1.2);
  transition: all 0.5s ease;
}

.sponsor-card:hover .sponsor-logo img {
  -webkit-filter: grayscale(0%) brightness(1)
    drop-shadow(0 8px 24px rgba(168, 85, 247, 0.3));
  filter: grayscale(0%) brightness(1)
    drop-shadow(0 8px 24px rgba(168, 85, 247, 0.3));
  transform: scale(1.2);
}

/* Responsive Design for Sponsors */
@media (max-width: 1024px) {
  .sponsors-grid {
    gap: 2rem;
  }

  .sponsor-card {
    width: 150px;
    height: 150px;
    padding: 2.5rem;
  }

  .sponsor-logo img {
    width: 100px;
    height: 100px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }

  .statistics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-card {
    padding: 2rem 1.5rem;
  }

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

  .security-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .security-card {
    padding: 2rem 1.5rem;
  }

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

  .section-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .sponsors-grid {
    gap: 1.5rem;
    align-items: center;
  }

  .sponsor-card {
    width: 150px;
    height: 150px;
    padding: 2rem;
  }

  .sponsor-logo img {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .sponsors {
    padding: 4rem 0;
  }

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

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 3rem;
    padding: 0 2rem;
  }

  .sponsor-card {
    width: 150px;
    height: 150px;
    padding: 1.5rem;
  }

  .sponsor-logo img {
    width: 85px;
    height: 85px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem 1rem;
  }

  .statistics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-card {
    padding: 1.5rem 1rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .security-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .security-card {
    padding: 1.5rem 1rem;
  }
}

/* Features Section */
.features {
  padding: 8rem 0;
  position: relative;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  width: 100%;
  overflow: hidden;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(120, 119, 198, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 119, 198, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(120, 219, 255, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.features-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  width: 100%;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-icon svg {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: var(--primary-font);
}

.feature-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 1rem;
  font-family: var(--primary-font);
}

/* Statistics Section */
.statistics {
  padding: 8rem 0;
  position: relative;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #16213e 100%);
  width: 100%;
  overflow: hidden;
}

.statistics::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(120, 119, 198, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 119, 198, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(120, 219, 255, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.statistics-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.statistics-header {
  text-align: center;
  margin-bottom: 4rem;
}

.last-updated {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-family: var(--primary-font);
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  width: 100%;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.stat-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stat-icon svg {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-family: var(--primary-font);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  font-size: 1rem;
  font-family: var(--primary-font);
}

/* Security Section */
.security {
  padding: 8rem 0;
  position: relative;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  width: 100%;
  overflow: hidden;
}

.security::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(120, 119, 198, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 119, 198, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(120, 219, 255, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.security-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.security-header {
  text-align: center;
  margin-bottom: 4rem;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
  width: 100%;
}

.security-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.security-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
}

.security-card:hover::before {
  opacity: 1;
}

.security-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.security-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.security-icon svg {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.security-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: var(--primary-font);
}

.security-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-family: var(--primary-font);
}

.security-badges,
.compliance-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.security-badge,
.compliance-badge {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  font-family: var(--primary-font);
  transition: all 0.3s ease;
}

.security-badge:hover,
.compliance-badge:hover {
  background: rgba(16, 185, 129, 0.3);
  border-color: rgba(16, 185, 129, 0.5);
  transform: scale(1.05);
}

.security-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.security-feature {
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #3b82f6;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  font-family: var(--primary-font);
  transition: all 0.3s ease;
}

.security-feature:hover {
  background: rgba(59, 130, 246, 0.3);
  border-color: rgba(59, 130, 246, 0.5);
  transform: scale(1.05);
}

.insurance-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.insurance-amount {
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #f59e0b;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--primary-font);
}

.insurance-provider {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-family: var(--primary-font);
}

/* Stats Update Notification */
.stats-update-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(16, 185, 129, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  color: white;
  font-family: var(--primary-font);
  font-weight: 500;
  z-index: 1000;
  animation: slideInRight 0.3s ease-out;
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.notification-icon {
  font-size: 1.2rem;
}

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

/* About Section */
.about {
  padding: 8rem 0;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
  width: 100%;
  overflow: hidden;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-text .section-title {
  text-align: center;
  margin-bottom: 1.5rem;
  color: white;
}

.about-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.qualification-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.qualification-list {
  list-style: none;
  padding: 0;
}

.qualification-list li {
  padding: 0.75rem 0;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  padding-left: 2rem;
  font-size: 1.1rem;
}

.qualification-list li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: #a855f7;
  font-weight: bold;
  font-size: 0.8rem;
}

.task-checklist h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2rem;
}

.task-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.task-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  border-left: 4px solid #06b6d4;
  transition: all 0.3s ease;
}

.task-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(6, 182, 212, 0.3);
  transform: translateX(8px);
}

.task-icon {
  font-size: 1.4rem;
}

.task-text {
  font-size: 1.1rem;
  color: white;
  font-weight: 500;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 100%);
  color: white;
  padding: 4rem 0;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(168, 85, 247, 0.5),
    transparent
  );
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.footer-left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.footer-logo {
  width: 50px;
  height: auto;
}

.footer-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  font-weight: 500;
}

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

.social-link {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  padding: 0.75rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  color: #a855f7;
  background: rgba(168, 85, 247, 0.1);
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  .hero-title {
    font-size: 2.8rem;
  }

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

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

  .logo-container {
    margin-bottom: 1.5rem;
  }

  .logoevm {
    width: 120px;
  }

  .carousel-container {
    padding: 0 1rem;
  }

  .carousel-track {
    gap: 1.5rem;
  }

  .sponsor-card {
    flex: 0 0 200px;
    height: 200px;
    padding: 1.5rem;
  }

  .carousel-controls {
    padding: 0 0.5rem;
  }

  .carousel-btn {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }

  .about-content {
    gap: 3rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
  }

  .container {
    padding: 0 20px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }

  .statistics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-card {
    padding: 2rem 1.5rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .security-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .security-card {
    padding: 2rem 1.5rem;
  }

  .security-badges,
  .compliance-badges {
    flex-direction: column;
    align-items: center;
  }

  .security-features {
    align-items: center;
  }

  .insurance-info {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .hero {
    padding: 2rem 0;
  }

  .hero-title {
    font-size: 2.2rem;
  }

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

  .logo-container {
    margin-bottom: 1rem;
  }

  .logoevm {
    width: 100px;
  }

  .connect-btn {
    padding: 1rem 1rem;
    font-size: 1rem;
  }

  .eligibility-result {
    padding: 1.5rem;
  }

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

  .sponsor-card {
    flex: 0 0 150px;
    height: 150px;
    padding: 1rem;
  }

  .sponsor-logo img {
    width: 85px;
    height: 85px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .sponsors,
  .features,
  .statistics,
  .security,
  .about {
    padding: 6rem 0;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .feature-card {
    padding: 1.5rem 1rem;
  }

  .feature-title {
    font-size: 1.3rem;
  }

  .statistics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-card {
    padding: 1.5rem 1rem;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  .security-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .security-card {
    padding: 1.5rem 1rem;
  }

  .security-title {
    font-size: 1.3rem;
  }

  .security-description {
    font-size: 0.9rem;
  }

  .security-badge,
  .compliance-badge,
  .security-feature {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }

  .insurance-amount {
    font-size: 0.8rem;
  }

  .insurance-provider {
    font-size: 0.7rem;
  }

  .container {
    padding: 0 15px;
  }
}

/* Extra Small Mobile Devices */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.8rem;
  }

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

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

  .section-subtitle {
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .statistics-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .security-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-card,
  .stat-card,
  .security-card {
    padding: 1rem 0.8rem;
  }

  .feature-title,
  .security-title {
    font-size: 1.2rem;
  }

  .feature-description,
  .security-description {
    font-size: 0.85rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .security-badge,
  .compliance-badge,
  .security-feature {
    font-size: 0.65rem;
    padding: 0.3rem 0.6rem;
  }

  .insurance-amount {
    font-size: 0.75rem;
  }

  .insurance-provider {
    font-size: 0.65rem;
  }
}

/* Animations */
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  -webkit-animation: fadeInUp 0.8s ease-out;
  animation: fadeInUp 0.8s ease-out;
}

.sponsor-card {
  -webkit-animation: fadeInUp 0.6s ease-out forwards;
  animation: fadeInUp 0.6s ease-out forwards;
}

.sponsor-card:nth-child(1) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.sponsor-card:nth-child(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.sponsor-card:nth-child(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.sponsor-card:nth-child(4) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.sponsor-card:nth-child(5) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.feature-card {
  -webkit-animation: fadeInUp 0.6s ease-out forwards;
  animation: fadeInUp 0.6s ease-out forwards;
}

.feature-card:nth-child(1) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.feature-card:nth-child(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.feature-card:nth-child(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.feature-card:nth-child(4) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.stat-card {
  -webkit-animation: fadeInUp 0.6s ease-out forwards;
  animation: fadeInUp 0.6s ease-out forwards;
}

.stat-card:nth-child(1) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.stat-card:nth-child(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.stat-card:nth-child(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.stat-card:nth-child(4) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.security-card {
  -webkit-animation: fadeInUp 0.6s ease-out forwards;
  animation: fadeInUp 0.6s ease-out forwards;
}

.security-card:nth-child(1) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.security-card:nth-child(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.security-card:nth-child(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.security-card:nth-child(4) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
