/*  Base Styles */
:root {
  --primary-color: #0df2c9;
  --primary-glow: 0 0 10px rgba(13, 242, 201, 0.5);
  --secondary-color: #fd4d93;
  --secondary-glow: 0 0 10px rgba(253, 77, 147, 0.5);
  --accent-color: #7357ff;
  --dark-color: #090a1a;
  --darker-color: #060714;
  --medium-dark-color: #111336;
  --light-color: #f5f6fa;
  --success-color: #00b894;
  --warning-color: #fdcb6e;
  --danger-color: #ff5555;
  --text-color: #e1e2ed;
  --background-color: #0b0c1e;
  --card-color: #141736;
  --border-radius: 4px;
  --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  --neon-shadow: 0 0 10px rgba(13, 242, 201, 0.5), 0 0 20px rgba(13, 242, 201, 0.3);
  --transition: all 0.3s ease;
}

@font-face {
  font-family: 'Cyberpunk';
  src: url('../assets/cyberpunk.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  position: relative;
  overflow-x: hidden;
}

body.dark-theme {
  background-color: var(--dark-color);
  color: var(--text-color);
}

.glitch-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.15) 1px,
    transparent 1px,
    transparent 2px
  );
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
  text-shadow: var(--primary-glow);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.hidden {
  display: none !important;
}

.highlight {
  color: var(--primary-color);
  text-shadow: var(--primary-glow);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.section-header h2 {
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.neon-divider {
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 0 auto;
  box-shadow: var(--neon-shadow);
}

/* Glitch Text Effect */
.glitch-text {
  position: relative;
  display: inline-block;
}

.glitch-text h1 {
  position: relative;
  display: inline-block;
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-color);
}

.glitch-text h1::before,
.glitch-text h1::after {
  content: attr(data-text) !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-color);
}

.glitch-text h1::before {
  left: 2px;
  text-shadow: -2px 0 var(--secondary-color);
  clip: rect(24px, 550px, 90px, 0);
  animation: glitch-anim-1 5s linear infinite alternate-reverse;
}

.glitch-text h1::after {
  left: -2px;
  text-shadow: -2px 0 var(--primary-color);
  clip: rect(85px, 550px, 140px, 0);
  animation: glitch-anim-2 2s linear infinite alternate-reverse;
}

@keyframes glitch-anim-1 {
  0% {
    clip: rect(52px, 9999px, 121px, 0);
  }
  5% {
    clip: rect(21px, 9999px, 76px, 0);
  }
  10% {
    clip: rect(33px, 9999px, 144px, 0);
  }
  15% {
    clip: rect(121px, 9999px, 3px, 0);
  }
  20% {
    clip: rect(9px, 9999px, 24px, 0);
  }
  25% {
    clip: rect(52px, 9999px, 17px, 0);
  }
  30% {
    clip: rect(35px, 9999px, 41px, 0);
  }
  35% {
    clip: rect(145px, 9999px, 153px, 0);
  }
  40% {
    clip: rect(147px, 9999px, 122px, 0);
  }
  45% {
    clip: rect(62px, 9999px, 31px, 0);
  }
  50% {
    clip: rect(22px, 9999px, 67px, 0);
  }
  55% {
    clip: rect(31px, 9999px, 4px, 0);
  }
  60% {
    clip: rect(26px, 9999px, 158px, 0);
  }
  65% {
    clip: rect(103px, 9999px, 55px, 0);
  }
  70% {
    clip: rect(4px, 9999px, 37px, 0);
  }
  75% {
    clip: rect(81px, 9999px, 3px, 0);
  }
  80% {
    clip: rect(68px, 9999px, 12px, 0);
  }
  85% {
    clip: rect(10px, 9999px, 47px, 0);
  }
  90% {
    clip: rect(53px, 9999px, 25px, 0);
  }
  95% {
    clip: rect(1px, 9999px, 15px, 0);
  }
  100% {
    clip: rect(42px, 9999px, 31px, 0);
  }
}

@keyframes glitch-anim-2 {
  0% {
    clip: rect(70px, 9999px, 86px, 0);
  }
  5% {
    clip: rect(103px, 9999px, 131px, 0);
  }
  10% {
    clip: rect(7px, 9999px, 88px, 0);
  }
  15% {
    clip: rect(77px, 9999px, 123px, 0);
  }
  20% {
    clip: rect(134px, 9999px, 22px, 0);
  }
  25% {
    clip: rect(95px, 9999px, 48px, 0);
  }
  30% {
    clip: rect(103px, 9999px, 124px, 0);
  }
  35% {
    clip: rect(61px, 9999px, 9px, 0);
  }
  40% {
    clip: rect(144px, 9999px, 131px, 0);
  }
  45% {
    clip: rect(94px, 9999px, 80px, 0);
  }
  50% {
    clip: rect(77px, 9999px, 40px, 0);
  }
  55% {
    clip: rect(36px, 9999px, 72px, 0);
  }
  60% {
    clip: rect(36px, 9999px, 141px, 0);
  }
  65% {
    clip: rect(35px, 9999px, 49px, 0);
  }
  70% {
    clip: rect(40px, 9999px, 48px, 0);
  }
  75% {
    clip: rect(113px, 9999px, 72px, 0);
  }
  80% {
    clip: rect(22px, 9999px, 73px, 0);
  }
  85% {
    clip: rect(32px, 9999px, 23px, 0);
  }
  90% {
    clip: rect(93px, 9999px, 143px, 0);
  }
  95% {
    clip: rect(103px, 9999px, 143px, 0);
  }
  100% {
    clip: rect(147px, 9999px, 49px, 0);
  }
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 10px 24px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  font-size: 16px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--dark-color);
  box-shadow: var(--primary-glow);
}

.btn-primary:hover {
  background-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(13, 242, 201, 0.8);
  transform: translateY(-2px);
  color: var(--dark-color);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  box-shadow: inset 0 0 5px rgba(13, 242, 201, 0.3);
}

.btn-secondary:hover {
  background-color: rgba(13, 242, 201, 0.1);
  color: var(--primary-color);
  box-shadow: inset 0 0 10px rgba(13, 242, 201, 0.5);
}

.btn-primary i, .btn-secondary i {
  margin-left: 8px;
}

/* Header */
header {
  background-color: rgba(11, 12, 30, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(13, 242, 201, 0.2);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
  filter: drop-shadow(0 0 5px rgba(13, 242, 201, 0.5));
}

.logo h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  color: var(--text-color);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

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

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

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

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-color);
}

/* Hero Section */
.hero {
  position: relative;
  background-image: linear-gradient(rgba(9, 10, 26, 0.8), rgba(9, 10, 26, 0.8)), 
                    url('https://images.unsplash.com/photo-1573767291321-c0af2eaf5266?ixid=M3w3MjUzNDh8MHwxfHNlYXJjaHw3fHxlc3BvcnRzJTIwZ2FtaW5nJTIwdG91cm5hbWVudCUyMGFyZW5hJTIwY3liZXJwdW5rfGVufDB8fHx8MTc0NzQwNTc1NHww&ixlib=rb-4.1.0&fit=fillmax&h=800&w=1200');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 150px 0;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(13, 242, 201, 0.1), transparent 70%);
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 800;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-shape {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(13, 242, 201, 0.1), rgba(253, 77, 147, 0.1));
  border-radius: 100% 0 100% 0;
  z-index: 1;
  transform: rotate(45deg);
  filter: blur(30px);
}

/* Features Section */
.features {
  padding: 100px 0;
  background-color: var(--darker-color);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(13, 242, 201, 0.1), transparent 70%);
  filter: blur(20px);
}

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

.feature-card {
  padding: 30px;
  background-color: var(--card-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(13, 242, 201, 0.1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--primary-color);
  transition: height 0.3s ease;
  box-shadow: var(--primary-glow);
}

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

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(13, 242, 201, 0.3);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-shadow: var(--primary-glow);
}

.feature-card h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
  position: relative;
}

.feature-card h3::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
  margin: 10px auto 0;
  box-shadow: var(--primary-glow);
}

/* Tournaments Preview */
.tournaments-preview {
  padding: 100px 0;
  background-color: var(--dark-color);
  position: relative;
}

.tournaments-preview::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(253, 77, 147, 0.1), transparent 70%);
  filter: blur(30px);
}

.tournament-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.tournament-card {
  background-color: var(--card-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid rgba(13, 242, 201, 0.1);
}

.tournament-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(13, 242, 201, 0.3);
}

.tournament-image {
  position: relative;
  height: 200px;
}

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

.tournament-card:hover .tournament-image img {
  transform: scale(1.05);
}

.tournament-status {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 1;
}

.tournament-status.upcoming {
  background-color: var(--primary-color);
  color: var(--dark-color);
  box-shadow: var(--primary-glow);
}

.tournament-status.ongoing {
  background-color: var(--warning-color);
  color: var(--dark-color);
  box-shadow: 0 0 10px rgba(253, 203, 110, 0.5);
}

.tournament-status.past {
  background-color: var(--dark-color);
  color: var(--text-color);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.tournament-info {
  padding: 20px;
}

.tournament-info h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: var(--text-color);
}

.tournament-info p {
  color: rgba(225, 226, 237, 0.7);
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.center-btn {
  text-align: center;
  margin-top: 20px;
}

/* Page Header */
.page-header {
  background: linear-gradient(to right, var(--darker-color), var(--medium-dark-color));
  color: white;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(13, 242, 201, 0.1), transparent 70%);
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--primary-color), transparent);
  box-shadow: var(--primary-glow);
}

.page-header h1 {
  font-size: 3rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* Tournament Tabs */
.tournament-tabs {
  padding: 80px 0;
  background-color: var(--dark-color);
}

.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  border-bottom: 1px solid rgba(13, 242, 201, 0.1);
}

.tab-btn {
  padding: 12px 24px;
  margin: 0 5px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.tab-btn.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
  box-shadow: 0 4px 6px -4px var(--primary-color);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tournament-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.tournament-item {
  background-color: var(--card-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(13, 242, 201, 0.1);
  transition: var(--transition);
}

.tournament-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(13, 242, 201, 0.3);
}

.tournament-details {
  padding: 20px;
}

.tournament-details h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.tournament-meta {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: rgba(225, 226, 237, 0.7);
}

.tournament-meta i {
  margin-right: 5px;
  color: var(--primary-color);
}

.tournament-meta span {
  margin-right: 15px;
  font-size: 0.9rem;
}

.tournament-description {
  margin-bottom: 20px;
  color: rgba(225, 226, 237, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.tournament-winners {
  background-color: rgba(13, 242, 201, 0.05);
  padding: 15px;
  border-radius: var(--border-radius);
  margin-bottom: 15px;
  border-left: 3px solid var(--primary-color);
}

.tournament-winners h4 {
  color: var(--primary-color);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.tournament-winners h4 i {
  margin-right: 8px;
}

.tournament-highlights {
  margin-top: 20px;
}

.tournament-highlights  h4 {
  margin-bottom: 10px;
  color: var(--text-color);
}

.tournament-action-btn,
.featured-action-btn  {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 24px;
  text-align: center;
  transition: var(--transition);
  font-weight: 600;
}

.tournament-action-btn i,
.featured-action-btn i {
  margin-left: 8px;
}

.featured-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}  

/* Socials Section */
.socials {
  padding: 80px 0;
  background-color: var(--darker-color);
}

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

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px;
  width: 160px;
  border-radius: var(--border-radius);
  background-color: var(--card-color);
  color: var(--text-color);
  transition: var(--transition);
  border: 1px solid rgba(13, 242, 201, 0.1);
}

.social-link:hover {
  background-color: rgba(13, 242, 201, 0.05);
  color: var(--primary-color);
  transform: translateY(-5px);
  border-color: rgba(13, 242, 201, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-link i {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.social-link span {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

/* Contact Form */
.contact-form {
  padding: 80px 0;
  background-color: var(--dark-color);
  position: relative;
}

.contact-form::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(13, 242, 201, 0.05), transparent 70%);
  filter: blur(40px);
}

form {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--card-color);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(13, 242, 201, 0.1);
  position: relative;
  z-index: 1;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-color);
  position: relative;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(13, 242, 201, 0.2);
  border-radius: 4px;
  font-size: 1rem;
  background-color: rgba(11, 12, 30, 0.6);
  color: var(--text-color);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(13, 242, 201, 0.1);
  background-color: rgba(11, 12, 30, 0.8);
}

#form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: var(--border-radius);
  text-align: center;
}

#form-message.success {
  background-color: rgba(0, 184, 148, 0.1);
  color: var(--success-color);
  border: 1px solid rgba(0, 184, 148, 0.3);
}

#form-message.error {
  background-color: rgba(255, 85, 85, 0.1);
  color: var(--danger-color);
  border: 1px solid rgba(255, 85, 85, 0.3);
}

/* Footer */
footer {
  background-color: var(--darker-color);
  color: var(--text-color);
  padding: 80px 0 20px;
  position: relative;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--primary-color), transparent);
  box-shadow: var(--primary-glow);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 5px rgba(13, 242, 201, 0.5));
}

.footer-logo h3 {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

.footer-section h4 {
  margin-bottom: 20px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
  box-shadow: var(--primary-glow);
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: rgba(225, 226, 237, 0.7);
  transition: var(--transition);
  font-size: 0.9rem;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: rgba(225, 226, 237, 0.7);
  font-size: 1.2rem;
  transition: var(--transition);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(13, 242, 201, 0.05);
  border: 1px solid rgba(13, 242, 201, 0.1);
}

.social-icons a:hover {
  color: var(--primary-color);
  background-color: rgba(13, 242, 201, 0.1);
  border-color: rgba(13, 242, 201, 0.3);
  transform: translateY(-3px);
  box-shadow: var(--primary-glow);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(225, 226, 237, 0.1);
  font-size: 0.9rem;
  color: rgba(225, 226, 237, 0.5);
  position: relative;
  z-index: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--darker-color);
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    transition: height 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(13, 242, 201, 0.2);
  }
  
  .nav-links.active {
    height: auto;
    padding: 20px 0;
  }
  
  .nav-links li {
    margin: 15px 0;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 40px;
  }
  
  .tournament-cards,
  .tournament-list {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    gap: 15px;
  }
  
  .social-link {
    width: 140px;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .tabs {
    flex-direction: column;
    align-items: center;
  }
  
  .tab-btn {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  
  form {
    padding: 20px;
  }
  
  .btn-primary, .btn-secondary {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}