:root {
  --sportentryzone-primary: #1a5490;
  --sportentryzone-secondary: #ff6b35;
  --sportentryzone-accent: #00c9a7;
  --sportentryzone-dark: #1f2937;
  --sportentryzone-light: #f8fafc;
  --sportentryzone-text: #334155;
  --sportentryzone-border: #e2e8f0;
  --sportentryzone-hover: #0f3d6a;
  --sportentryzone-success: #10b981;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--sportentryzone-text);
  background: var(--sportentryzone-light);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.sportentryzone-hidden {
  display: none !important;
}

.sportentryzone-visible {
  display: block !important;
}

.sportentryzone-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  z-index: 999;
  padding: 0;
}

.sportentryzone-header-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
}

.sportentryzone-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 800;
  color: var(--sportentryzone-primary);
}

.sportentryzone-logo img {
  height: 42px;
  width: auto;
}

.sportentryzone-nav {
  display: flex;
  gap: 8px;
}

.sportentryzone-nav-link {
  padding: 10px 20px;
  font-weight: 500;
  font-size: 15px;
  border-radius: 8px;
  transition: all 0.25s;
  color: var(--sportentryzone-text);
}

.sportentryzone-nav-link:hover,
.sportentryzone-nav-link.sportentryzone-active {
  background: var(--sportentryzone-primary);
  color: #fff;
}

.sportentryzone-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.sportentryzone-hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--sportentryzone-primary);
  border-radius: 3px;
  transition: all 0.3s;
}

.sportentryzone-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 24px rgba(0,0,0,0.15);
  z-index: 1001;
  transition: right 0.4s ease;
  padding: 80px 30px 30px;
}

.sportentryzone-mobile-menu.sportentryzone-open {
  right: 0;
}

.sportentryzone-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.sportentryzone-mobile-overlay.sportentryzone-open {
  opacity: 1;
  visibility: visible;
}

.sportentryzone-mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--sportentryzone-text);
}

.sportentryzone-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sportentryzone-mobile-nav a {
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s;
}

.sportentryzone-mobile-nav a:hover,
.sportentryzone-mobile-nav a.sportentryzone-active {
  background: var(--sportentryzone-primary);
  color: #fff;
}

.sportentryzone-main {
  margin-top: 76px;
}

.sportentryzone-hero {
  background: linear-gradient(135deg, #1a5490 0%, #0f3d6a 100%);
  color: #fff;
  padding: 100px 40px 120px;
  position: relative;
  overflow: hidden;
}

.sportentryzone-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.sportentryzone-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: rgba(0,201,167,0.1);
  border-radius: 50%;
}

.sportentryzone-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.sportentryzone-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.sportentryzone-hero h1 {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
  font-family: 'Outfit', sans-serif;
}

.sportentryzone-hero-desc {
  font-size: 20px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px;
  opacity: 0.95;
}

.sportentryzone-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.sportentryzone-btn-primary {
  display: inline-block;
  background: var(--sportentryzone-secondary);
  color: #fff;
  padding: 16px 36px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(255,107,53,0.3);
}

.sportentryzone-btn-primary:hover {
  background: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,53,0.4);
}

.sportentryzone-btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 16px 36px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.sportentryzone-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.sportentryzone-categories {
  padding: 80px 40px;
  background: #fff;
}

.sportentryzone-categories-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.sportentryzone-section-label {
  display: inline-block;
  color: var(--sportentryzone-secondary);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.sportentryzone-section-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--sportentryzone-dark);
  margin-bottom: 16px;
  font-family: 'Outfit', sans-serif;
}

.sportentryzone-section-header p {
  font-size: 18px;
  color: var(--sportentryzone-text);
  max-width: 700px;
  margin: 0 auto;
}

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

.sportentryzone-card {
  background: #fff;
  border: 2px solid var(--sportentryzone-border);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.sportentryzone-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--sportentryzone-primary), var(--sportentryzone-accent));
  transform: scaleX(0);
  transition: transform 0.3s;
}

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

.sportentryzone-card:hover {
  border-color: var(--sportentryzone-primary);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(26,84,144,0.15);
}

.sportentryzone-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--sportentryzone-dark);
  margin-bottom: 18px;
}

.sportentryzone-card ul {
  list-style: none;
  margin-bottom: 24px;
}

.sportentryzone-card ul li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--sportentryzone-text);
}

.sportentryzone-card ul li::before {
  content: '•';
  color: var(--sportentryzone-secondary);
  font-weight: bold;
  margin-right: 10px;
  font-size: 18px;
}

.sportentryzone-vendors {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sportentryzone-vendor-link {
  display: block;
  padding: 12px 18px;
  background: var(--sportentryzone-light);
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  color: var(--sportentryzone-primary);
  transition: all 0.25s;
  border: 1px solid transparent;
}

.sportentryzone-vendor-link:hover {
  background: var(--sportentryzone-primary);
  color: #fff;
  border-color: var(--sportentryzone-primary);
}

.sportentryzone-features {
  padding: 80px 40px;
  background: var(--sportentryzone-light);
}

.sportentryzone-features-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sportentryzone-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  margin-top: 50px;
}

.sportentryzone-feature {
  background: #fff;
  padding: 32px 24px;
  border-radius: 12px;
  border-left: 4px solid var(--sportentryzone-accent);
  transition: all 0.3s;
}

.sportentryzone-feature:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.sportentryzone-feature h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--sportentryzone-dark);
  margin-bottom: 14px;
}

.sportentryzone-feature p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--sportentryzone-text);
}

.sportentryzone-page-header {
  background: linear-gradient(135deg, var(--sportentryzone-primary) 0%, var(--sportentryzone-hover) 100%);
  padding: 60px 40px;
  text-align: center;
  color: #fff;
}

.sportentryzone-page-header h1 {
  font-size: 42px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
}

.sportentryzone-contact-section {
  padding: 80px 40px;
  background: #fff;
}

.sportentryzone-contact-container {
  max-width: 1100px;
  margin: 0 auto;
}

.sportentryzone-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.sportentryzone-contact-info h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--sportentryzone-dark);
  margin-bottom: 24px;
}

.sportentryzone-info-list {
  list-style: none;
}

.sportentryzone-info-list li {
  margin-bottom: 24px;
}

.sportentryzone-info-list strong {
  display: block;
  font-weight: 700;
  color: var(--sportentryzone-primary);
  margin-bottom: 6px;
  font-size: 16px;
}

.sportentryzone-info-list a {
  color: var(--sportentryzone-text);
  transition: color 0.2s;
}

.sportentryzone-info-list a:hover {
  color: var(--sportentryzone-primary);
}

.sportentryzone-form-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--sportentryzone-dark);
  margin-bottom: 24px;
}

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

.sportentryzone-form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--sportentryzone-dark);
  font-size: 15px;
}

.sportentryzone-input,
.sportentryzone-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--sportentryzone-border);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.25s;
  background: #fff;
}

.sportentryzone-input:focus,
.sportentryzone-textarea:focus {
  outline: none;
  border-color: var(--sportentryzone-primary);
  box-shadow: 0 0 0 3px rgba(26,84,144,0.1);
}

.sportentryzone-textarea {
  resize: vertical;
  min-height: 140px;
}

.sportentryzone-submit-btn {
  background: var(--sportentryzone-primary);
  color: #fff;
  padding: 16px 40px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.sportentryzone-submit-btn:hover {
  background: var(--sportentryzone-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(26,84,144,0.2);
}

.sportentryzone-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.sportentryzone-btn-spinner {
  display: none;
}

.sportentryzone-faq-section {
  background: var(--sportentryzone-light);
  padding: 60px 40px;
}

.sportentryzone-faq-container {
  max-width: 1100px;
  margin: 0 auto;
}

.sportentryzone-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.sportentryzone-faq-item {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--sportentryzone-border);
}

.sportentryzone-faq-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--sportentryzone-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.sportentryzone-faq-item p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--sportentryzone-text);
}

.sportentryzone-legal-section {
  padding: 60px 40px;
  background: #fff;
}

.sportentryzone-legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.sportentryzone-legal-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--sportentryzone-dark);
  margin-top: 40px;
  margin-bottom: 16px;
}

.sportentryzone-legal-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--sportentryzone-dark);
  margin-top: 28px;
  margin-bottom: 12px;
}

.sportentryzone-legal-content p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.sportentryzone-legal-content ul {
  margin: 16px 0 16px 24px;
  line-height: 1.8;
}

.sportentryzone-legal-content a {
  color: var(--sportentryzone-primary);
  font-weight: 600;
}

.sportentryzone-legal-content a:hover {
  text-decoration: underline;
}

.sportentryzone-footer {
  background: var(--sportentryzone-dark);
  color: #cbd5e1;
  padding: 60px 40px 30px;
}

.sportentryzone-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.sportentryzone-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.sportentryzone-footer-brand img {
  height: 40px;
  width: auto;
}

.sportentryzone-footer-brand h3 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.sportentryzone-footer-about p {
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 15px;
}

.sportentryzone-contact-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sportentryzone-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.sportentryzone-contact-item i {
  color: var(--sportentryzone-accent);
  width: 18px;
}

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

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

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

.sportentryzone-footer-links a {
  color: #cbd5e1;
  transition: color 0.2s;
  font-size: 15px;
}

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

.sportentryzone-footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 40px 0;
}

.sportentryzone-footer-bottom {
  text-align: center;
}

.sportentryzone-disclaimer {
  max-width: 900px;
  margin: 0 auto 24px;
  font-size: 14px;
  line-height: 1.7;
}

.sportentryzone-disclaimer p {
  margin-bottom: 12px;
}

.sportentryzone-disclaimer strong {
  color: #fff;
  font-weight: 700;
}

.sportentryzone-disclaimer a {
  color: var(--sportentryzone-accent);
  text-decoration: underline;
}

.sportentryzone-copyright {
  font-size: 14px;
  color: #94a3b8;
}

.sportentryzone-copyright a {
  color: var(--sportentryzone-accent);
  font-weight: 600;
}

.sportentryzone-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  padding: 24px 40px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.sportentryzone-cookie-banner:not(.sportentryzone-hidden) {
  transform: translateY(0);
}

.sportentryzone-cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.sportentryzone-cookie-text h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--sportentryzone-dark);
  margin-bottom: 8px;
}

.sportentryzone-cookie-text p {
  font-size: 14px;
  color: var(--sportentryzone-text);
  line-height: 1.6;
}

.sportentryzone-cookie-text a {
  color: var(--sportentryzone-primary);
  font-weight: 600;
  text-decoration: underline;
}

.sportentryzone-cookie-btn {
  background: var(--sportentryzone-success);
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s;
}

.sportentryzone-cookie-btn:hover {
  background: #059669;
  transform: scale(1.05);
}

@media (max-width: 968px) {
  .sportentryzone-nav {
    display: none;
  }
  
  .sportentryzone-hamburger {
    display: flex;
  }
  
  .sportentryzone-hero h1 {
    font-size: 38px;
  }
  
  .sportentryzone-hero-desc {
    font-size: 17px;
  }
  
  .sportentryzone-contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .sportentryzone-footer-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .sportentryzone-cookie-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .sportentryzone-header-inner {
    padding: 14px 20px;
  }
  
  .sportentryzone-logo {
    font-size: 17px;
    word-break: keep-all;
  }
  
  .sportentryzone-logo img {
    height: 32px;
  }
  
  .sportentryzone-hero {
    padding: 60px 20px 80px;
  }
  
  .sportentryzone-hero h1 {
    font-size: 32px;
  }
  
  .sportentryzone-hero-desc {
    font-size: 16px;
  }
  
  .sportentryzone-hero-actions {
    flex-direction: column;
  }
  
  .sportentryzone-btn-primary,
  .sportentryzone-btn-outline {
    width: 100%;
    text-align: center;
  }
  
  .sportentryzone-categories,
  .sportentryzone-features,
  .sportentryzone-contact-section,
  .sportentryzone-legal-section {
    padding: 50px 20px;
  }
  
  .sportentryzone-section-header h2 {
    font-size: 32px;
  }
  
  .sportentryzone-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .sportentryzone-page-header {
    padding: 40px 20px;
  }
  
  .sportentryzone-page-header h1 {
    font-size: 32px;
  }
  
  .sportentryzone-cookie-banner {
    padding: 20px;
  }
}
