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

/* Base Styles */
body {
  background-color: black;
  font-family: 'Helvetica', 'Arial', sans-serif;
  background-image: url('mainbackground.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  color: white;
}

/* Ensure all text elements inherit Helvetica */
* {
  font-family: 'Helvetica', 'Arial', sans-serif;
}

/* Enhanced visual effects for dashboard-like experience */
.hero-section, .why-join-section, .play-earn-section {
  position: relative;
  overflow: hidden;
}

.hero-section::before, .why-join-section::before, .play-earn-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(138, 180, 255, 0.03) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}

.hero-section::before {
  animation-delay: 0s;
}

.why-join-section::before {
  animation-delay: 2s;
}

.play-earn-section::before {
  animation-delay: 4s;
}

/* Dashboard Image Enhancements */
.welcome-header {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.welcome-text {
  flex: 1;
  min-width: 300px;
}

.welcome-image {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.welcome-visual {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-circle {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(138, 180, 255, 0.3);
  border-radius: 50%;
  top: 20%;
  left: 15%;
  animation: float 6s ease-in-out infinite;
}

.floating-square {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transform: rotate(45deg);
  top: 60%;
  right: 20%;
  animation: float 8s ease-in-out infinite reverse;
}

.floating-triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 40px solid rgba(138, 180, 255, 0.2);
  bottom: 25%;
  left: 25%;
  animation: float 7s ease-in-out infinite;
}

.welcome-icon {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.3);
  padding: 30px;
  border-radius: 50%;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.welcome-visual:hover .floating-circle,
.welcome-visual:hover .floating-square,
.welcome-visual:hover .floating-triangle {
  animation-play-state: paused;
}

.welcome-visual:hover .welcome-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(138, 180, 255, 0.2);
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.feature-icon-container {
  flex: 0 0 auto;
}

.feature-image {
  max-width: 120px;
  height: auto;
  border-radius: 15px;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-image:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 12px 24px rgba(138, 180, 255, 0.4));
}

.community-container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.community-content {
  flex: 1;
  min-width: 300px;
}

.community-image {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.community-visual {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.network-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
}

.network-node {
  width: 20px;
  height: 20px;
  background: rgba(138, 180, 255, 0.3);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.network-node:nth-child(1) { animation-delay: 0s; }
.network-node:nth-child(2) { animation-delay: 0.3s; }
.network-node:nth-child(3) { animation-delay: 0.6s; }
.network-node:nth-child(4) { animation-delay: 0.9s; }
.network-node:nth-child(5) { animation-delay: 1.2s; }
.network-node:nth-child(6) { animation-delay: 1.5s; }

.community-icon {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.3);
  padding: 25px;
  border-radius: 50%;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.community-visual:hover .network-node {
  animation-play-state: paused;
}

.community-visual:hover .community-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(138, 180, 255, 0.2);
}

.nft-showcase {
  text-align: center;
}

.nft-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 40px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.nft-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.nft-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.nft-preview {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.4s ease;
}

.nft-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 20px 15px 15px;
  transform: translateY(100%);
  transition: all 0.4s ease;
}

.nft-item:hover .nft-overlay {
  transform: translateY(0);
}

.nft-label {
  color: white;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #8ab4ff, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Responsive adjustments for dashboard images */
@media (max-width: 768px) {
  .welcome-header, .community-container {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-header {
    flex-direction: column;
    text-align: center;
  }
  
  .nft-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
  }
  
  .dashboard-hero-img, .dashboard-community-img {
    max-width: 250px;
  }
  
  .feature-image {
    max-width: 100px;
  }
}

/* Header Styles */
header {
  position: fixed;
  top: 20px;
  left: 20px;
  right: 20px;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  border-radius: 20px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

header:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.15);
  background-color: rgba(0, 0, 0, 0.85);
}

.toplabels {
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 70px;
  font-size: 20px;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.label {
  cursor: pointer;
  transition: color 0.3s ease;
}

.label:hover {
  color: #ff6b6b;
}

.main_name {
  font-family: 'BioRhyme Expanded', serif;
  color: white;
  font-size: 25px;
  font-weight: bold;
}

.topbutton {
  display: flex;
  gap: 20px;
}

/* Button Styles */
.join_now {
  padding: 12px 30px;
  border: none;
  outline: none;
  color: #000;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 1000px;
  background: #000;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
}

/* Dark background */
.join_now::after {
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  left: 0;
  top: 0;
  border-radius: 12px;
}

/* Glow effect */
.join_now::before {
  content: "";
  background: linear-gradient(
    45deg,
    #ffff, #ffff, #ffff, #ffff,
    #ffff, #ffff, #ffff, #ffff, #ffff
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 600%;
  z-index: -1;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  filter: blur(8px);
  animation: glowing 20s linear infinite;
  transition: opacity .3s ease-in-out;
  border-radius: 12px;
  opacity: 0;
}

/* Animation */
@keyframes glowing {
  0% { background-position: 0 0; }
  50% { background-position: 400% 0; }
  100% { background-position: 0 0; }
}

/* Hover state */
.join_now:hover::before {
  opacity: 1;
}

/* Active state */
.join_now:active::after {
  background: transparent;
}

.join_now:active {
  color: #000;
  font-weight: bold;
}

.line {
  border: none;
  border-top: 1px solid grey;
  margin: 0;
}

/* Hero Section */
.hero-section {
  padding: 100px 0 70px 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(138, 180, 255, 0.05) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite;
  pointer-events: none;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 70px;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.superrare {
  margin-bottom: 30px;
}

.hero-line {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
  color: white;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.hero-line:hover {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.strokemore {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  color: black;
  -webkit-text-stroke: 3px white;
  -webkit-text-fill-color: black;
  font-family: 'Orbitron', monospace;
  letter-spacing: 3px;
  margin-bottom: 5px;
  text-shadow: 
    4px 4px 0px white,
    -4px -4px 0px white,
    4px -4px 0px white,
    -4px 4px 0px white,
    0px 0px 10px rgba(255, 255, 255, 0.5);
  filter: drop-shadow(2px 2px 0px white);
}

.hero-description {
  font-size: 18px;
  line-height: 1.6;
  color: white;
  margin: 30px 0;
  max-width: 500px;
  transition: all 0.3s ease;
}

.hero-description:hover {
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero {
  width: 100%;
  max-width: 600px;
  height: auto;
}

.join_now.second {
  margin-top: 20px;
}

/* Why Join Section */
.why-join-section {
  padding: 100px 0;
  max-width: 95%;
  width: 95%;
  margin: 0 auto;
  padding-left: 50px;
  padding-right: 50px;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease-out 0.5s forwards;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 30px;
  backdrop-filter: blur(15px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.why-join-section:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.85);
}

.why-join-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.why {
  display: block;
  color: white;
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  transition: all 0.3s ease;
}

.why:hover {
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
  transform: scale(1.02);
}

.why-content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 100%;
  justify-content: flex-start;
}

.whyimg {
  flex: 0 0 auto;
  max-width: 500px;
  height: auto;
  transition: all 0.3s ease;
  cursor: pointer;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.whyimg:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
  box-shadow: 0 10px 30px rgba(138, 180, 255, 0.2);
}



.why-text-content {
  flex: 1;
  max-width: none;
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.3);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.whytext, .sectext {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: 'Helvetica', 'Arial', sans-serif;
}

/* Accent and narrative helpers */
.lead {
  font-size: 20px;
  line-height: 1.8;
  opacity: 0.95;
}

.accent {
  background: linear-gradient(90deg, #ffffff, rgba(255,255,255,0.8));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-divider {
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.0), rgba(255,255,255,0.4), rgba(255,255,255,0.0));
  border: none;
  margin: 16px 0 24px 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 13px;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.9);
  width: fit-content;
  margin: 0 0 16px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.12);
}

.chip i {
  font-size: 14px;
  color: #8ab4ff;
}

/* Dashboard specific enhancements */
.dashboard-welcome {
  position: relative;
  overflow: hidden;
}

.dashboard-welcome::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(138, 180, 255, 0.1) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  margin: 25px 0;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-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);
  transition: left 0.6s ease;
}

.feature-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.feature-card:hover::before {
  left: 100%;
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 15px;
  display: block;
}

.timeline-container {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 30px;
  margin: 25px 0;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.timeline-item {
  position: relative;
  padding: 15px 0 15px 30px;
  border-left: 2px solid rgba(138, 180, 255, 0.3);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 20px;
  width: 10px;
  height: 10px;
  background: #8ab4ff;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(138, 180, 255, 0.5);
}

.timeline-item:hover {
  border-left-color: rgba(138, 180, 255, 0.8);
  transform: translateX(5px);
}

.timeline-item:hover::before {
  box-shadow: 0 0 30px rgba(138, 180, 255, 0.8);
}

.community-links {
  display: flex;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
  justify-content: center;
}

.community-link {
  text-decoration: none;
  transition: all 0.3s ease;
}

.community-link .chip {
  cursor: pointer;
  margin: 0;
  min-width: 140px;
  justify-content: center;
}

.community-link:hover .chip {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.glow-text {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.success-badge {
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Logout button styling */
.logout-btn {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-left: 10px;
}

.logout-btn:hover {
  background: linear-gradient(135deg, #ff5252, #d32f2f);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.logout-btn::after {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.firlist {
  font-size: 18px;
  line-height: 1.8;
  margin: 30px 0;
  padding-left: 20px;
  font-family: 'Helvetica', 'Arial', sans-serif;
  list-style: none;
}

.firlist li {
  margin-bottom: 15px;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(5px);
}

.firlist li:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.join_now.third {
  display: block;
  margin: 40px auto 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  transform: scale(1);
  transition: all 0.3s ease;
}

.join_now.third:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.join_now.third::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 ease;
}

.join_now.third:hover::before {
  left: 100%;
}

/* Play & Earn Section */
.play-earn-section {
  padding: 120px 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 70px;
  padding-right: 70px;
}

.Play {
  color: white;
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
  transition: all 0.3s ease;
}

.Play:hover {
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
  transform: scale(1.02);
}

.scroll-container {
  display: flex;
  justify-content: center;
}

.card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 50px;
  max-width: 600px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 30px;
}

.cardtext {
  font-size: 18px;
  line-height: 1.6;
  font-family: 'Helvetica', 'Arial', sans-serif;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
}

/* Contact Menu */
.menu {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.menu .toggle {
  position: relative;
  height: 60px;
  width: 60px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 2rem;
  cursor: pointer;
  transition: 1.25s;
  z-index: 5;
}

.menu.active .toggle {
  transform: rotate(360deg);
  box-shadow:
    0 6px 8px rgba(0, 0, 0, 0.15),
    0 0 0 2px #333,
    0 0 0 8px #fff;
}

.menu li {
  position: absolute;
  left: 0;
  list-style: none;
  transition: 0.5s;
  transform: rotate(calc(360deg / 7 * var(--i)));
  transform-origin: 140px;
  scale: 0;
  transition-delay: calc(0.05s * var(--i));
}

.menu.active li {
  scale: 1;
}

.menu li a {
  position: relative;
  display: flex;
  transform: rotate(calc(360deg / -7 * var(--i)));
  width: 60px;
  height: 60px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.75rem;
  color: var(--clr);
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.15);
  transition: 0.5s;
  text-decoration: none;
}

.menu li:hover a {
  font-size: 2.5rem;
  box-shadow:
    0 0 0 2px var(--clr),
    0 0 0 6px #fff;
}

/* Footer */
.footer {
  background-color: #000;
  color: white;
  padding: 20px 0 0 0;
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-header {
  margin-bottom: 20px;
}

.footer-header h3 {
  font-size: 24px;
  font-weight: bold;
  font-family: 'Helvetica', 'Arial', sans-serif;
  text-align: left;
}

.footer-main {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 30px;
}

.social-links {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 15px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  font-family: 'Helvetica', 'Arial', sans-serif;
  width: fit-content;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.social-link i {
  font-size: 18px;
}

.social-link span {
  font-weight: 500;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Helvetica', 'Arial', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
  .toplabels {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 50px;
    padding: 0 20px;
  }
  
  .why-content {
    flex-direction: column;
    text-align: center;
  }
  
  .why-join-section,
  .play-earn-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .menu {
    bottom: 20px;
    right: 20px;
    width: 240px;
    height: 240px;
  }

  .menu li {
    transform-origin: 120px;
  }

  .footer-content {
    padding: 0 25px;
  }

  .footer-main {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }

  .social-links {
    gap: 10px;
  }

  .social-link {
    font-size: 14px;
    padding: 8px 12px;
  }

  .footer-bottom {
    text-align: center;
    padding-top: 15px;
  }
}