:root {
  --bg-color: #0b0f19;
  --surface-color: #1a1f2e;
  --primary-color: #00ff87; /* Neon green for sports */
  --primary-hover: #00d672;
  --secondary-color: #60a5fa; /* Cool blue */
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --font-family: 'Outfit', 'Inter', sans-serif;
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--primary-color);
}

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

.nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--primary-color);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s;
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.header-cta .btn {
  background:var(--primary-color);
  color: #0b0f19;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  transition: var(--transition);
  box-shadow: 0 0 15px rgba(0, 255, 135, 0.3);
}

.header-cta .btn:hover {
  background: var(--primary-hover);
  box-shadow: 0 0 25px rgba(0, 255, 135, 0.5);
  transform: translateY(-2px);
}

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(0, 255, 135, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-text h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-text h1 span {
  color: var(--primary-color);
  display: block;
}

.hero-text p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--primary-color);
  color: #0b0f19;
  box-shadow: 0 0 20px rgba(0, 255, 135, 0.4);
}

.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 0 30px rgba(0, 255, 135, 0.6);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

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

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  animation: float 6s ease-in-out infinite;
}

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

/* Sections */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-header h2 span {
  color: var(--primary-color);
}

.section-header p {
  color: var(--text-muted);
  font-size: 18px;
}

/* Grid System */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Product Cards */
.product-card {
  background: var(--surface-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 255, 135, 0.1);
}

.product-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: #252b42;
}

.product-info {
  padding: 24px;
}

.product-info h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.product-price {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Blog List */
.blog-card {
  background: var(--surface-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-date {
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.read-more {
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}

.read-more:hover {
  color: var(--primary-color);
}

/* Table Style for Mini Fields */
.table-container {
  overflow-x: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface-color);
}

th, td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

th {
  background: rgba(0, 255, 135, 0.1);
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
}

tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.badge {
  background: rgba(96, 165, 250, 0.2);
  color: var(--secondary-color);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

/* Footer */
footer {
  background: #05080f;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
}

.footer-logo span {
  color: var(--primary-color);
}

.footer-desc {
  color: var(--text-muted);
  max-width: 300px;
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted);
  transition: var(--transition);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 14px;
}

@media (max-width: 768px) {
  .hero-content, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-text h1 {
    font-size: 42px;
  }
  .nav-links {
    display: none;
  }
}
