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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #0f172a;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Color Variables */
:root {
  --primary: #0ea5e9;
  --primary-foreground: #ffffff;
  --accent: #8b5cf6;
  --accent-foreground: #ffffff;
  --background: #ffffff;
  --foreground: #0f172a;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  --border: #e2e8f0;
  --card: #ffffff;
  --card-foreground: #0f172a;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

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

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

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  animation: slideInFromTop 0.5s ease-out;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: fadeIn 0.7s ease-out;
}

.logo-icon {
  width: 2rem;
  height: 2rem;
  background: var(--primary);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  transition: transform 0.2s ease;
}

.logo-icon:hover {
  transform: scale(1.1);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--foreground);
}

.nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
}

.nav-link {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: var(--foreground);
  transform: scale(1.05);
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn:hover {
  transform: scale(1.05);
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background: #0284c7;
}

.btn-accent {
  background: var(--accent);
  color: var(--accent-foreground);
}

.btn-accent:hover {
  background: #7c3aed;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-full {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 5rem 0 8rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("exciting-sports-stadium.png");
  background-size: cover;
  background-position: center;
  animation: pulse 4s ease-in-out infinite;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(2px);
}

.floating-icon {
  position: absolute;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  animation: bounce 2s ease-in-out infinite;
}

.floating-icon-1 {
  top: 5rem;
  left: 2.5rem;
  background: rgba(14, 165, 233, 0.2);
  animation-delay: 1s;
}

.floating-icon-2 {
  top: 8rem;
  right: 5rem;
  background: rgba(139, 92, 246, 0.2);
  animation-delay: 2s;
}

.floating-icon-3 {
  bottom: 10rem;
  left: 5rem;
  background: rgba(34, 197, 94, 0.2);
  animation-delay: 3s;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  animation: fadeIn 1s ease-out;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(139, 92, 246, 0.1);
  color: var(--accent);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 2rem;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  animation: fadeIn 1s ease-out 0.3s both;
  transition: transform 0.2s ease;
}

.badge:hover {
  transform: scale(1.05);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  animation: fadeIn 1s ease-out 0.5s both;
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.6;
  animation: fadeIn 1s ease-out 0.7s both;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  animation: fadeIn 1s ease-out 1s both;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* Stats Section */
.stats {
  padding: 3rem 0;
  background: linear-gradient(to right, rgba(14, 165, 233, 0.05), rgba(139, 92, 246, 0.05));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  animation: fadeIn 1s ease-out;
}

.stat-item:nth-child(1) {
  animation-delay: 0s;
}
.stat-item:nth-child(2) {
  animation-delay: 0.2s;
}
.stat-item:nth-child(3) {
  animation-delay: 0.4s;
}
.stat-item:nth-child(4) {
  animation-delay: 0.6s;
}

.stat-icon {
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
  animation: pulse 2s ease-in-out infinite;
}

.stat-number {
  font-size: 1.875rem;
  font-weight: bold;
  color: var(--foreground);
  margin-bottom: 0.25rem;
  transition: transform 0.2s ease;
}

.stat-number:hover {
  transform: scale(1.1);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeIn 1s ease-out;
}

.section-title {
  font-size: 1.875rem;
  font-weight: bold;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.section-description {
  color: var(--muted-foreground);
  max-width: 32rem;
  margin: 0 auto;
}

/* Testimonials Section */
.testimonials {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.3);
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  animation: fadeIn 1s ease-out;
}

.testimonial-card:nth-child(1) {
  animation-delay: 0s;
}
.testimonial-card:nth-child(2) {
  animation-delay: 0.2s;
}
.testimonial-card:nth-child(3) {
  animation-delay: 0.4s;
}

.testimonial-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid rgba(14, 165, 233, 0.2);
}

.testimonial-stars {
  display: flex;
  gap: 0.125rem;
}

.star {
  color: var(--accent);
  animation: pulse 1s ease-in-out infinite;
}

.star:nth-child(1) {
  animation-delay: 0s;
}
.star:nth-child(2) {
  animation-delay: 0.1s;
}
.star:nth-child(3) {
  animation-delay: 0.2s;
}
.star:nth-child(4) {
  animation-delay: 0.3s;
}
.star:nth-child(5) {
  animation-delay: 0.4s;
}

.testimonial-content {
  color: var(--card-foreground);
  margin-bottom: 1rem;
  font-style: italic;
}

.author-name {
  font-weight: 600;
  color: var(--foreground);
}

.author-role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Partners */
.partners {
  text-align: center;
  animation: fadeIn 1s ease-out 1s both;
}

.partners-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0.6;
}

.partner-logo {
  width: 6rem;
  height: 2rem;
  background: var(--muted);
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.partner-logo:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Investments Section */
.investments {
  padding: 4rem 0;
}

.investments-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .investments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .investments-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.investment-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: fadeIn 1s ease-out;
}

.investment-card:nth-child(1) {
  animation-delay: 0s;
}
.investment-card:nth-child(2) {
  animation-delay: 0.15s;
}
.investment-card:nth-child(3) {
  animation-delay: 0.3s;
}
.investment-card:nth-child(4) {
  animation-delay: 0.45s;
}
.investment-card:nth-child(5) {
  animation-delay: 0.6s;
}
.investment-card:nth-child(6) {
  animation-delay: 0.75s;
}

.investment-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.investment-image {
  position: relative;
  height: 8rem;
  overflow: hidden;
}

.investment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.investment-card:hover .investment-image img {
  transform: scale(1.1);
}

.investment-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.risk-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 0.25rem 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--foreground);
  font-size: 0.75rem;
  border-radius: 0.25rem;
  backdrop-filter: blur(4px);
}

.sport-icon {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  font-size: 1.875rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.investment-content {
  padding: 1.5rem;
}

.investment-title {
  color: var(--foreground);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.investment-description {
  color: var(--card-foreground);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.investment-returns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.returns-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.returns-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent);
  transition: transform 0.2s ease;
}

.investment-card:hover .returns-value {
  transform: scale(1.1);
}

.dollar-icon {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.investment-card:hover .dollar-icon {
  transform: rotate(12deg);
}

/* Features Section */
.features {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.3);
}

.features-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-item {
  text-align: center;
  animation: fadeIn 1s ease-out;
}

.feature-item:nth-child(1) {
  animation-delay: 0s;
}
.feature-item:nth-child(2) {
  animation-delay: 0.2s;
}
.feature-item:nth-child(3) {
  animation-delay: 0.4s;
}

.feature-image {
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 0.5rem;
  transition: transform 0.5s ease;
}

.feature-item:hover .feature-image {
  transform: scale(1.1);
}

.feature-image img {
  width: 100%;
  height: 8rem;
  object-fit: cover;
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(14, 165, 233, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1);
  background: rgba(14, 165, 233, 0.2);
}

.feature-item:hover .feature-icon svg {
  transform: rotate(12deg);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.feature-item:hover .feature-title {
  color: var(--primary);
}

.feature-description {
  color: var(--muted-foreground);
}

/* Footer */
.footer {
  background: #1e293b;
  color: #cbd5e1;
  padding: 3rem 0;
  animation: fadeIn 1s ease-out;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand .logo-icon {
  background: #0ea5e9;
}

.footer-brand .logo-text {
  color: #f1f5f9;
}

.footer-description {
  color: #94a3b8;
  font-size: 0.875rem;
  margin-top: 1rem;
}

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

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

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

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #f1f5f9;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: #94a3b8;
}

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

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

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

  .floating-icon {
    display: none;
  }
}
