/* Tokenomics Section */
.tokenomics-section, .product-positioning {
  position: relative;
  padding: 100px 0;
}

/* Product Tabs */
.product-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(15, 12, 41, 0.9);
  border-radius: 20px;
  padding: 2rem;
  margin: 1rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  width: 300px;
  height: 400px;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.product-tab.active {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(15, 12, 41, 0.95);
  color: #fff;
  transition: all 0.3s ease;
}

.tab-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.tab-icon-img {
  object-fit: contain;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.tab-content {
  text-align: center;
  width: 100%;
  padding: 0 1rem;
  margin-top: 1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.tab-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
  background: linear-gradient(45deg, #7B4DFF, #00E5FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.tab-content p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 1.1rem;
  text-align: center;
  line-height: 1.4;
  padding: 0 1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .tokenomics-grid {
    gap: 2rem;
    padding: 0 30px;
  }
  
  .tokenomics-card {
    padding: 2rem;
  }
}

@media (max-width: 992px) {
  .tokenomics-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 2rem auto 0;
  }
  
  .tokenomics-card {
    padding: 2rem 1.5rem;
  }
  
  .distribution-chart {
    width: 220px;
    height: 220px;
    margin: 0 auto 1.5rem;
  }
  
  .chart-segment {
    clip: rect(0, 110px, 220px, 0);
  }
}

@media (max-width: 576px) {
  .tokenomics-section {
    padding: 60px 0;
  }
  
  .tokenomics-grid {
    padding: 0 15px;
    gap: 1.5rem;
  }
  
  .tokenomics-card {
    padding: 1.5rem 1rem;
    border-radius: 16px;
  }
  
  .tokenomics-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .utility-item {
    padding: 0.8rem;
    flex-direction: column;
    text-align: center;
  }
  
  .utility-icon {
    margin: 0 auto 0.8rem;
  }
  
  .distribution-chart {
    width: 200px;
    height: 200px;
  }
  
  .chart-segment {
    clip: rect(0, 100px, 200px, 0);
  }
}

/* Positioning Message */
.positioning-message {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.message-content {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.message-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.message-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  padding: 10px 12px 7px;
  box-sizing: border-box;
  background: linear-gradient(45deg, #7B4DFF, #00E5FF);
  color: white;
  text-decoration: none;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 10px 25px rgba(123, 77, 255, 0.4);
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #00E5FF, #7B4DFF);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 229, 255, 0.4);
}

.cta-button:hover::before {
  opacity: 1;
}

.cta-button.pulse {
  animation: pulse 2s infinite;
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.float-icon {
  position: absolute;
  color: rgba(255, 255, 255, 0.1);
  font-size: var(--size, 30px);
  animation: float 15s infinite ease-in-out;
  animation-delay: var(--delay, 0s);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.float-icon:hover {
  color: #7B4DFF;
  text-shadow: 0 0 15px rgba(123, 77, 255, 0.8);
  transform: scale(1.5);
  opacity: 1;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(20px, 20px) rotate(5deg); }
  50% { transform: translate(0, 40px) rotate(0deg); }
  75% { transform: translate(-20px, 20px) rotate(-5deg); }
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-product {
    flex-direction: column;
  }
  
  .hero-product-visual {
    min-height: 250px;
  }
  
  .product-evolution-item {
    max-width: 80%;
  }
  
  .product-evolution-item.katz {
    margin-right: auto;
    margin-left: 0;
  }
  
  .evolution-path {
    left: 60px;
  }
}

@media (max-width: 768px) {
  .section-subtitle {
    font-size: 2rem;
  }
  
  .hero-product h3 {
    font-size: 2.5rem;
  }
  
  .message-text p {
    font-size: 1rem;
  }
  
  .product-evolution-item {
    max-width: 100%;
    margin-left: 60px !important;
  }
  
  .evolution-path {
    left: 30px;
  }
}
