:root {
  --color-primary: #0f172a;
  --color-accent: #10b981;
  --color-bg: #0c1426;
  --color-text: #f8fafc;
  --color-secondary: #1e293b;
  --color-highlight: #3b82f6;
  --color-dark-green: #064e3b;
  --color-dark-blue: #1e3a8a;
  --color-muted: #475569;
  --color-border: rgba(71, 85, 105, 0.2);
  --color-light-blue: #64748b;
  --color-bright-green: #059669;
  --color-pink: #be185d;
  --color-orange: #92400e;
  --color-purple: #7c3aed;
  --radius: 16px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
  cursor: default;
}

html, body {
  padding: 0;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--color-text);
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #475569 75%, #64748b 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  25% { background-position: 100% 25%; }
  50% { background-position: 100% 100%; }
  75% { background-position: 0% 100%; }
}

/* Animated Background Particles */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.8;
  animation: float 20s infinite linear;
  filter: blur(1px);
}

.particle-1 {
  width: 8px;
  height: 8px;
  top: 20%;
  left: 10%;
  background: #475569;
  animation-delay: 0s;
}

.particle-2 {
  width: 12px;
  height: 12px;
  top: 60%;
  left: 80%;
  background: #64748b;
  animation-delay: -5s;
}

.particle-3 {
  width: 6px;
  height: 6px;
  top: 80%;
  left: 20%;
  background: #94a3b8;
  animation-delay: -10s;
}

.particle-4 {
  width: 10px;
  height: 10px;
  top: 30%;
  left: 70%;
  background: #cbd5e1;
  animation-delay: -15s;
}

.particle-5 {
  width: 8px;
  height: 8px;
  top: 70%;
  left: 40%;
  background: #10b981;
  animation-delay: -7s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0.8;
  }
  25% {
    transform: translateY(-30px) translateX(15px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(-15px) translateX(-20px) rotate(180deg);
    opacity: 0.6;
  }
  75% {
    transform: translateY(-40px) translateX(10px) rotate(270deg);
    opacity: 0.9;
  }
}

/* Floating Geometric Shapes */
.geometric-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.shape {
  position: absolute;
  opacity: 0.3;
  animation: rotate 30s infinite linear;
  filter: blur(0.5px);
}

.shape-1 {
  width: 120px;
  height: 120px;
  top: 15%;
  right: 15%;
  background: linear-gradient(45deg, #475569, #64748b);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation-delay: 0s;
}

.shape-2 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 10%;
  background: linear-gradient(45deg, #94a3b8, #cbd5e1);
  border-radius: 50%;
  animation-delay: -10s;
}

.shape-3 {
  width: 80px;
  height: 80px;
  top: 70%;
  right: 25%;
  background: linear-gradient(45deg, #10b981, #059669);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  animation-delay: -20s;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

/* Animated dashes across the page */
.dash-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.dash {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, #10b981, transparent);
  animation: dashMove 3s ease-in-out infinite;
  opacity: 0.6;
}

.dash:nth-child(1) {
  width: 200px;
  top: 20%;
  left: -200px;
  animation-delay: 0s;
  animation-duration: 4s;
}

.dash:nth-child(2) {
  width: 150px;
  top: 40%;
  left: -150px;
  animation-delay: 1s;
  animation-duration: 3.5s;
}

.dash:nth-child(3) {
  width: 180px;
  top: 60%;
  left: -180px;
  animation-delay: 2s;
  animation-duration: 4.5s;
}

.dash:nth-child(4) {
  width: 120px;
  top: 80%;
  left: -120px;
  animation-delay: 0.5s;
  animation-duration: 3s;
}

.dash:nth-child(5) {
  width: 160px;
  top: 30%;
  left: -160px;
  animation-delay: 1.5s;
  animation-duration: 4s;
}

.dash:nth-child(6) {
  width: 140px;
  top: 70%;
  left: -140px;
  animation-delay: 2.5s;
  animation-duration: 3.8s;
}

@keyframes dashMove {
  0% {
    transform: translateX(0) rotate(45deg);
    opacity: 0;
  }
  20% {
    opacity: 0.8;
  }
  80% {
    opacity: 0.8;
  }
  100% {
    transform: translateX(calc(100vw + 200px)) rotate(45deg);
    opacity: 0;
  }
}

.container {
  max-width: var(--max-width);
  padding: 0 24px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  cursor: default;
}



/* Header Styles */
.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: saturate(180%) blur(20px);
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 2px solid var(--color-accent);
  z-index: 100;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.logo-container {
  position: relative;
}

.logo {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-content: center;
  background: linear-gradient(135deg, var(--color-accent), var(--color-light-blue), var(--color-bright-green));
  background-size: 200% 200%;
  animation: gradientMove 3s ease infinite;
  color: var(--color-primary);
  border-radius: 12px;
  font-weight: 900;
  font-size: 24px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
}

@keyframes gradientMove {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.logo-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-accent);
  border-radius: 12px;
  filter: blur(20px);
  opacity: 0.8;
  animation: pulse 2s ease-in-out infinite alternate;
}

@keyframes pulse {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.site-name {
  font-size: 24px;
  background: linear-gradient(135deg, var(--color-text), var(--color-accent), var(--color-light-blue));
  background-size: 200% 200%;
  animation: gradientMove 4s ease infinite, subtlePulse 4s ease-in-out infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

@keyframes subtlePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.tagline {
  margin: 0;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 600;
  text-shadow: none;
  opacity: 0.9;
}

/* Hero Section */
.hero {
  padding: 80px 0 60px;
  display: block;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content {
  position: relative;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-accent), var(--color-light-blue), var(--color-bright-green));
  background-size: 200% 200%;
  animation: gradientMove 3s ease infinite, bounce 2s ease-in-out infinite;
  color: var(--color-primary);
  padding: 16px 28px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.hero-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.hero-badge:hover::before {
  left: 100%;
}

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

.hero h1 {
  margin: 0 0 20px;
  font-size: 56px;
  line-height: 1.1;
  font-weight: 800;
  color: #e2e8f0;
  text-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
  white-space: nowrap;
  overflow: hidden;
}

.hero .description {
  margin: 0 0 32px;
  color: var(--color-text);
  font-size: 20px;
  line-height: 1.6;
  text-shadow: none;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-button {
  padding: 16px 32px;
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button.primary {
  background: linear-gradient(135deg, var(--color-accent), var(--color-bright-green));
  color: var(--color-primary);
}

.cta-button.secondary {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-light-blue);
}

.cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.4);
}

.cta-button.secondary:hover {
  background: var(--color-light-blue);
  color: var(--color-primary);
  border-color: var(--color-light-blue);
}

/* Ripple effect for buttons */
.cta-button {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-card {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  backdrop-filter: blur(10px);
  animation: float-card 6s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

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

.card-icon {
  font-size: 48px;
  margin-bottom: 16px;
  animation: spin 10s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.card-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-accent);
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}



/* Primary Website Cards */
.primary-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

.primary-cards .card {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(15px);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  min-height: 280px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  animation: cardFloat 6s ease-in-out infinite, cardEntrance 0.8s ease-out;
}

.primary-cards .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  border-radius: var(--radius);
}







/* Hover Effects for Cards */
.primary-cards .card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--color-accent);
  box-shadow: 0 25px 50px rgba(16, 185, 129, 0.4), 0 0 30px rgba(16, 185, 129, 0.2);
  background: rgba(255, 255, 255, 0.12);
  animation: cardHoverPulse 0.6s ease-out;
}

.primary-cards .card:hover::before {
  opacity: 1;
}

/* Soccer Card Hover - White/Black Soccer Theme */
.soccer-card:hover {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
  border-color: #000000;
  color: #000000;
}

.soccer-card:hover .card-link h3 {
  color: #000000;
}

.soccer-card:hover .card-link p {
  color: #495057;
}

/* Survey Card Hover - Navy Blue/Black Theme */
.survey-card:hover {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #1d4ed8 100%);
  border-color: #000000;
  color: #ffffff;
}

.survey-card:hover .card-link h3 {
  color: #ffffff;
}

.survey-card:hover .card-link p {
  color: #cbd5e1;
}

/* Hover Emojis - Moved to bottom */
.primary-cards .card::before {
  content: '';
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 24px;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 3;
}

/* Emoji removed - no more top-left icons */

/* Hover effect removed since emojis are gone */

/* Left-side positioning removed since emojis are gone */

/* Left-side emoji removed */

/* Left-side hover effect removed since emojis are gone */

.soccer-card:hover .clipart-icon:nth-child(4) { /* Trophy */
  animation: celebrate 1.2s ease-in-out;
}

.survey-card:hover .clipart-icon:nth-child(1) { /* Bar chart */
  animation: growUp 0.8s ease-in-out;
}

.survey-card:hover .clipart-icon:nth-child(2) { /* Line chart */
  animation: drawLine 1s ease-in-out;
}

.survey-card:hover .clipart-icon:nth-child(3) { /* Calculator */
  animation: shake 0.6s ease-in-out;
}

.survey-card:hover .clipart-icon:nth-child(4) { /* Data */
  animation: pulse 0.8s ease-in-out;
}

@keyframes hoverEmoji {
  0%, 100% {
    transform: translateY(-20px) rotate(0deg) scale(1.2);
  }
  25% {
    transform: translateY(-35px) rotate(90deg) scale(1.4);
  }
  50% {
    transform: translateY(-40px) rotate(180deg) scale(1.1);
  }
  75% {
    transform: translateY(-30px) rotate(270deg) scale(1.5);
  }
}

/* Survey Card Special Effects */
.survey-card:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(0, 255, 136, 0.1));
  border-color: #3b82f6;
  box-shadow: 0 30px 60px rgba(59, 130, 246, 0.4);
}

/* Top-right emoji removed */

/* Soccer Card Special Effects */
.soccer-card:hover {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(255, 105, 180, 0.1));
  border-color: var(--color-accent);
  box-shadow: 0 30px 60px rgba(0, 255, 136, 0.4);
}

/* Top-right soccer emoji removed */

/* Card Link Styling */
.primary-cards .card-link {
  display: block;
  padding: 40px;
  color: inherit;
  text-decoration: none;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.primary-cards .card-link:hover {
  transform: scale(1.02);
}

.primary-cards .card-link h3 {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
  transition: all 0.3s ease;
}

.primary-cards .card-link p {
  margin: 0;
  color: var(--color-light-blue);
  font-size: 18px;
  line-height: 1.6;
  transition: all 0.3s ease;
}

/* Enhanced Hover Text Effects */
.primary-cards .card:hover .card-link h3 {
  color: var(--color-accent);
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
  transform: scale(1.05);
  animation: contentScale 0.4s ease-out;
}

.primary-cards .card:hover .card-link p {
  color: var(--color-text);
  transform: scale(1.02);
  animation: contentScale 0.4s ease-out 0.1s;
}

/* Glow Effects */
.primary-cards .card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(0, 255, 136, 0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
  z-index: 1;
}

/* Cool Bottom Animations */
.primary-cards .card .bottom-animations {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  overflow: hidden;
  z-index: 2;
}

.primary-cards .card .floating-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.primary-cards .card .floating-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0;
  animation: dotFloat 3s ease-in-out infinite;
}

.primary-cards .card .floating-dots .dot:nth-child(1) { animation-delay: 0s; }
.primary-cards .card .floating-dots .dot:nth-child(2) { animation-delay: 0.3s; }
.primary-cards .card .floating-dots .dot:nth-child(3) { animation-delay: 0.6s; }

.primary-cards .card:hover .floating-dots .dot {
  opacity: 1;
  animation: dotFloat 1.5s ease-in-out infinite;
}

/* Bottom Wave Effect */
.primary-cards .card .bottom-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}

.primary-cards .card:hover .bottom-wave {
  transform: translateX(100%);
  animation: bottomWave 2s ease-in-out infinite;
}

/* Bottom Corner Accents */
.primary-cards .card .bottom-corner {
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  opacity: 0;
  transition: all 0.4s ease;
}

.primary-cards .card .bottom-corner.left {
  left: 0;
  border-width: 0 0 20px 20px;
  border-color: transparent transparent var(--color-accent) transparent;
}

.primary-cards .card .bottom-corner.right {
  right: 0;
  border-width: 0 20px 20px 0;
  border-color: transparent transparent transparent var(--color-accent);
}

.primary-cards .card:hover .bottom-corner {
  opacity: 1;
  animation: cornerGlow 2s ease-in-out infinite;
}

/* Bottom Gradient Background */
.primary-cards .card .bottom-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to top, rgba(16, 185, 129, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.primary-cards .card:hover .bottom-gradient {
  opacity: 1;
}

/* Floating Particles at Bottom */
.primary-cards .card .bottom-particles {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  height: 30px;
  overflow: hidden;
}

.primary-cards .card .particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 4s ease-in-out infinite;
}

.primary-cards .card .particle:nth-child(1) {
  left: 20%;
  animation-delay: 0s;
}

.primary-cards .card .particle:nth-child(2) {
  left: 50%;
  animation-delay: 1s;
}

.primary-cards .card .particle:nth-child(3) {
  left: 80%;
  animation-delay: 2s;
}

.primary-cards .card:hover .particle {
  opacity: 1;
  animation: particleFloat 2s ease-in-out infinite;
}

.primary-cards .card:hover::after {
  transform: translateX(100%);
  animation: glowPulse 2s ease-in-out infinite;
}

/* Pulse Animation for Survey Card */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

/* Enhanced Card Hover Animation */
@keyframes cardHoverPulse {
  0% {
    transform: translateY(-12px) scale(1.02);
  }
  50% {
    transform: translateY(-16px) scale(1.04);
  }
  100% {
    transform: translateY(-12px) scale(1.02);
  }
}

/* Smooth Scale Animation for Card Content */
@keyframes contentScale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

/* Subtle Floating Animation for Cards */
@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

/* Glow Pulse Animation */
@keyframes glowPulse {
  0%, 100% {
    opacity: 0.15;
  }
  50% {
    opacity: 0.25;
  }
}

/* Card Entrance Animation */
@keyframes cardEntrance {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Floating Dots Animation */
@keyframes dotFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-8px) scale(1.2);
    opacity: 1;
  }
}

/* Bottom Wave Animation */
@keyframes bottomWave {
  0%, 100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}

/* Corner Glow Animation */
@keyframes cornerGlow {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.5) drop-shadow(0 0 8px var(--color-accent));
  }
}

/* Particle Float Animation */
@keyframes particleFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-15px) scale(1.5);
    opacity: 1;
  }
}

/* Bounce Animation for Soccer Card */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Sites Section */
.sites {
  padding: 40px 0 80px;
}

.sites h2 {
  margin-bottom: 16px;
  font-size: 32px;
  font-weight: 800;
  color: var(--color-text);
  text-align: center;
  background: linear-gradient(135deg, var(--color-accent), var(--color-light-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  text-align: center;
  color: var(--color-light-blue);
  font-size: 18px;
  margin-bottom: 40px;
  text-shadow: 0 0 8px rgba(135, 206, 235, 0.6);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.card {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.card::before {
  content: '🔗';
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card::after {
  content: '✨';
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover::before,
.card:hover::after {
  opacity: 1;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--color-accent);
  box-shadow: 0 25px 50px rgba(0, 255, 136, 0.3);
}

.card-link {
  display: block;
  padding: 24px;
  color: inherit;
  text-decoration: none;
  position: relative;
}

.card-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(0, 255, 136, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.card:hover .card-link::before {
  transform: translateX(100%);
}

.card-link h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  position: relative;
  z-index: 2;
}

.card-link p {
  margin: 0;
  color: var(--color-light-blue);
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.coming-soon {
  margin-top: 24px;
  color: var(--color-light-blue);
  text-align: center;
  font-size: 18px;
  text-shadow: 0 0 8px rgba(135, 206, 235, 0.6);
}

/* Footer */
.site-footer {
  border-top: 2px solid var(--color-accent);
  padding: 40px 0 60px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 18px;
  color: var(--color-accent);
}

.footer-logo {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-content: center;
  background: linear-gradient(135deg, var(--color-accent), var(--color-light-blue));
  color: var(--color-primary);
  border-radius: 8px;
  font-weight: 800;
  font-size: 18px;
  animation: pulse 2s ease-in-out infinite;
}

#copyright {
  color: var(--color-light-blue);
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-actions {
    justify-content: center;
  }
  

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

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .cta-button {
    padding: 14px 24px;
    font-size: 14px;
  }
}

/* Contact Section Styles */
.contact-section {
  margin: 80px 0;
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(59, 130, 246, 0.05));
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 136, 0.2);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.contact-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact-section h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-light-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-description {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-light-blue);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(0, 255, 136, 0.3);
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-light-blue));
  color: var(--color-primary);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(0, 255, 136, 0.3);
}

.contact-icon {
  font-size: 20px;
}

.contact-message {
  font-size: 18px;
  color: var(--color-light-blue);
  margin-bottom: 24px;
  line-height: 1.6;
}

.contact-email {
  font-size: 18px;
  color: var(--color-accent);
  font-weight: 600;
}

.contact-email strong {
  color: var(--color-light-blue);
}

/* Responsive adjustments for contact section */
@media (max-width: 768px) {
  .contact-section {
    margin: 60px 0;
    padding: 40px 0;
  }
  
  .contact-section h2 {
    font-size: 28px;
  }
  
  .contact-info {
    padding: 30px 20px;
  }
  
  .contact-description {
    font-size: 16px;
  }
}


