/* Base Styles */
:root {
  --color-primary: #2ecc71;
  --color-primary-hover: #27ae60;
  --color-primary-light: rgba(46, 204, 113, 0.1);
  --color-secondary: #5865F2;
  --color-secondary-hover: #4752c4;
  --color-dark: #1a1a1a;
  --color-darker: #121212;
  --color-light: #f8f9fa;
  --color-gray: #6c757d;
  --color-gray-light: #e9ecef;
  --color-gray-dark: #343a40;
  --color-success: #2ecc71;
  --color-warning: #f39c12;
  --color-danger: #e74c3c;
  --font-family: 'Poppins', sans-serif;
  --border-radius: 8px;
  --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--color-darker);
  color: var(--color-light);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://hebbkx1anhila5yf.public.blob.vercel-storage.com/background-foe14MmhkiN7bD34NSJ5EdSGNh8YUj.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

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

ul, ol {
  list-style-position: inside;
  margin-bottom: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

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

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

#particles-js {
  width: 100%;
  height: 100%;
}

/* Header */
header {
  background-color: rgba(18, 18, 18, 0.8);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(46, 204, 113, 0.2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.logo-img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 0 5px rgba(46, 204, 113, 0.5));
  transition: var(--transition);
}

.logo:hover .logo-img {
  transform: scale(1.05);
}

.server-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-light);
  text-shadow: 0 0 10px rgba(46, 204, 113, 0.3);
}

nav {
  display: flex;
  gap: 1rem;
}

nav a {
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

nav a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

nav a:hover {
  background-color: rgba(46, 204, 113, 0.1);
  color: var(--color-primary);
}

nav a.active {
  background-color: var(--color-primary);
  color: white;
}

nav a.active::before {
  display: none;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--color-light);
  border-radius: 3px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  z-index: 99;
  padding: 1rem;
  border-bottom: 1px solid rgba(46, 204, 113, 0.2);
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu nav {
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu nav a {
  display: block;
  padding: 0.75rem 1rem;
  text-align: center;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

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

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

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-light);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.highlight-text {
  color: var(--color-primary);
  position: relative;
  display: inline-block;
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(46, 204, 113, 0.3);
  z-index: -1;
  transform: skewX(-15deg);
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
  transform: translateX(0);
}

.btn svg {
  margin-right: 0.5rem;
}

.btn-primary {
  background-color: var(--color-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

.btn-discord {
  background-color: var(--color-secondary);
  color: white;
  box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.btn-discord:hover {
  background-color: var(--color-secondary-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
}

/* Player List Section */
.player-section {
  padding: 5rem 0;
  background-color: rgba(18, 18, 18, 0.8);
  backdrop-filter: blur(10px);
  position: relative;
}

.player-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, transparent, var(--color-primary), transparent);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 3px;
}

.section-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.highlight {
  color: var(--color-primary);
  font-weight: 700;
}

.player-table-container {
  background-color: rgba(26, 26, 26, 0.8);
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(46, 204, 113, 0.1);
  transition: var(--transition);
}

.player-table-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(46, 204, 113, 0.3);
}

.player-table {
  width: 100%;
  border-collapse: collapse;
}

.player-table-header {
  background-color: rgba(46, 204, 113, 0.1);
  padding: 1.25rem 1rem;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-primary);
}

.player-table-header-center {
  text-align: center;
}

.player-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background-color 0.2s;
}

.player-row:hover {
  background-color: rgba(46, 204, 113, 0.05);
}

.player-cell {
  padding: 1.25rem 1rem;
}

.player-cell-center {
  text-align: center;
}

.player-name {
  display: flex;
  align-items: center;
}

.player-icon {
  margin-right: 0.75rem;
  opacity: 0.7;
}

.ping-good {
  color: var(--color-success);
}

.ping-medium {
  color: var(--color-warning);
}

.ping-bad {
  color: var(--color-danger);
}

.loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  text-align: center;
}

.spinner {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid rgba(46, 204, 113, 0.1);
  border-top-color: var(--color-primary);
  animation: spin 1s linear infinite;
  margin-bottom: 1.5rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.error-message {
  color: var(--color-danger);
  text-align: center;
  padding: 3rem;
  background-color: rgba(231, 76, 60, 0.1);
  border-radius: var(--border-radius);
}

.retry-button {
  margin-top: 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

.retry-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.empty-message {
  text-align: center;
  padding: 3rem;
  color: rgba(255, 255, 255, 0.7);
}

.server-connect {
  background-color: rgba(26, 26, 26, 0.8);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(46, 204, 113, 0.1);
  transition: var(--transition);
}

.server-connect:hover {
  border-color: rgba(46, 204, 113, 0.3);
  transform: translateY(-3px);
}

.server-code-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.server-code {
  font-family: monospace;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius);
  font-size: 1.1rem;
  border: 1px solid rgba(46, 204, 113, 0.2);
  color: var(--color-primary);
}

.copy-button {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 0.5rem;
  transition: var(--transition);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.copy-button:hover {
  color: white;
  background-color: rgba(46, 204, 113, 0.1);
  transform: scale(1.1);
}

.server-connect-help {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

/* Features Section */
.features-section {
  padding: 5rem 0;
  background-color: rgba(26, 26, 26, 0.7);
  backdrop-filter: blur(5px);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.feature-card {
  background-color: rgba(18, 18, 18, 0.8);
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(46, 204, 113, 0.1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--color-primary), transparent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(46, 204, 113, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-light);
  border-radius: 50%;
  color: var(--color-primary);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  background-color: rgba(46, 204, 113, 0.2);
  box-shadow: 0 0 20px rgba(46, 204, 113, 0.3);
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  color: var(--color-primary);
}

.feature-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  line-height: 1.7;
}

/* Getting Started Section */
.getting-started-section {
  padding: 5rem 0;
  background-color: rgba(18, 18, 18, 0.8);
  position: relative;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step-card {
  background-color: rgba(26, 26, 26, 0.8);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(46, 204, 113, 0.1);
  position: relative;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(46, 204, 113, 0.3);
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.step-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.step-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: rgba(46, 204, 113, 0.1);
  color: var(--color-primary);
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: var(--transition);
}

.step-link:hover {
  background-color: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

/* Rules Section */
.page-header {
  padding: 6rem 0 3rem;
  text-align: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.page-header h1 {
  position: relative;
  z-index: 2;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
  text-shadow: 0 0 10px rgba(46, 204, 113, 0.3);
}

.page-header p {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.rules-section {
  padding: 4rem 0 6rem;
  background-color: rgba(18, 18, 18, 0.8);
  backdrop-filter: blur(10px);
}

.rules-container {
  max-width: 1000px;
  margin: 0 auto;
}

.rules-container h2 {
  font-size: 2rem;
  margin: 3rem 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-primary);
  display: inline-block;
  color: var(--color-primary);
}

.rules-intro {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.rule-card {
  background-color: rgba(26, 26, 26, 0.8);
  border-radius: var(--border-radius);
  padding: 1.75rem;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(46, 204, 113, 0.1);
  transition: var(--transition);
}

.rule-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.rule-header {
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(46, 204, 113, 0.2);
  padding-bottom: 0.75rem;
}

.rule-header h3 {
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 0;
}

.rule-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  line-height: 1.7;
}

.rule-card strong {
  color: var(--color-light);
}

.detailed-rules {
  background-color: rgba(26, 26, 26, 0.8);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  margin-bottom: 3.5rem;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(46, 204, 113, 0.1);
}

.rules-category {
  margin-bottom: 2.5rem;
}

.rules-category:last-child {
  margin-bottom: 0;
}

.rules-category h3 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(46, 204, 113, 0.2);
}

.detailed-rules ol {
  padding-left: 1.5rem;
  list-style-type: decimal;
}

.detailed-rules li {
  margin-bottom: 1rem;
  padding-left: 0.5rem;
  line-height: 1.7;
}

.detailed-rules li:last-child {
  margin-bottom: 0;
}

.rules-note {
  background-color: rgba(46, 204, 113, 0.1);
  border-radius: var(--border-radius);
  padding: 2rem;
  border-left: 4px solid var(--color-primary);
}

.rules-note h3 {
  color: var(--color-primary);
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}

.rules-note p:last-child {
  margin-bottom: 0;
}

/* Footer */
footer {
  background-color: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(10px);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(46, 204, 113, 0.2);
  margin-top: auto;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--color-primary), transparent);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo-img {
  height: 35px;
  width: auto;
  filter: drop-shadow(0 0 5px rgba(46, 204, 113, 0.3));
}

.footer-logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  position: relative;
  padding: 0.5rem 0;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

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

.footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.footer-social {
  display: flex;
  gap: 1.25rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(46, 204, 113, 0.1);
  transition: var(--transition);
  color: var(--color-primary);
}

.social-icon:hover {
  background-color: var(--color-primary);
  color: white;
  transform: translateY(-5px) rotate(5deg);
  box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(46, 204, 113, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  background-color: var(--color-primary);
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 20px rgba(46, 204, 113, 0.4);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.3s ease;
  z-index: 1000;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

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

/* Responsive */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.75rem;
  }
  
  .section-header h2 {
    font-size: 2.25rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  header nav {
    display: none;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-logo, .footer-links, .footer-social {
    justify-content: center;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .player-table-header, .player-cell {
    padding: 0.75rem 0.5rem;
    font-size: 0.875rem;
  }
  
  .feature-card {
    padding: 1.75rem 1.25rem;
  }
  
  .rules-grid {
    grid-template-columns: 1fr;
  }
  
  .detailed-rules {
    padding: 1.5rem;
  }
}