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

body {
  font-family: 'Open Sans', sans-serif;
  color: #2c3e50;
  background-color: #f8f9fa;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.3;
}

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

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

.matchgate-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.matchgate-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  color: #1a1a1a;
  font-weight: 300;
}

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

.matchgate-logo strong {
  font-weight: 700;
  color: #e74c3c;
}

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

.matchgate-nav-link {
  padding: 10px 18px;
  color: #555;
  font-weight: 500;
  border-radius: 6px;
  font-size: 15px;
  transition: all 0.3s;
}

.matchgate-nav-link:hover,
.matchgate-nav-link.matchgate-active {
  background: #e74c3c;
  color: #fff;
}

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

.matchgate-hamburger span {
  width: 26px;
  height: 3px;
  background: #e74c3c;
  border-radius: 3px;
  transition: all 0.3s;
}

.matchgate-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 12px rgba(0,0,0,0.15);
  z-index: 2000;
  transition: right 0.4s;
  overflow-y: auto;
}

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

.matchgate-mobile-inner {
  padding: 30px 24px;
}

.matchgate-mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f44336;
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.matchgate-mobile-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  margin-bottom: 30px;
}

.matchgate-mobile-logo img {
  height: 38px;
}

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

.matchgate-mobile-link {
  padding: 14px 16px;
  color: #555;
  font-weight: 500;
  border-radius: 6px;
  font-size: 15px;
  transition: all 0.3s;
}

.matchgate-mobile-link:hover,
.matchgate-mobile-link.matchgate-active {
  background: #e74c3c;
  color: #fff;
}

.matchgate-main {
  margin-top: 82px;
  min-height: calc(100vh - 82px);
}

.matchgate-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 100px 30px;
  text-align: center;
}

.matchgate-hero-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.matchgate-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.matchgate-hero h1 {
  font-size: 52px;
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.matchgate-hero-desc {
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 36px;
  opacity: 0.95;
}

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

.matchgate-btn-primary {
  background: #e74c3c;
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid #e74c3c;
  transition: all 0.3s;
}

.matchgate-btn-primary:hover {
  background: #c0392b;
  border-color: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231,76,60,0.4);
}

.matchgate-btn-outline {
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid #fff;
  transition: all 0.3s;
}

.matchgate-btn-outline:hover {
  background: #fff;
  color: #667eea;
}

.matchgate-about {
  padding: 90px 30px;
  background: #fff;
}

.matchgate-about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.matchgate-tag {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.matchgate-about h2 {
  font-size: 38px;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.matchgate-about-left p {
  font-size: 17px;
  color: #555;
  line-height: 1.8;
}

.matchgate-about-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.matchgate-benefit h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #2c3e50;
}

.matchgate-benefit p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

.matchgate-sports {
  padding: 90px 30px;
  background: #f4f6f8;
}

.matchgate-sports-container {
  max-width: 1300px;
  margin: 0 auto;
}

.matchgate-sports-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.matchgate-sports-header h2 {
  font-size: 42px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.matchgate-sports-header p {
  font-size: 17px;
  color: #666;
  line-height: 1.7;
}

.matchgate-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  grid-auto-rows: 240px;
}

.matchgate-sport-box {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  overflow: hidden;
  min-height: 240px;
}

.matchgate-sport-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.matchgate-box-tall {
  grid-row: span 2;
}

.matchgate-box-wide {
  grid-column: span 2;
}

.matchgate-sport-box h3 {
  font-size: 26px;
  margin-bottom: 18px;
  color: #e74c3c;
}

.matchgate-sport-items {
  list-style: none;
  margin-bottom: 20px;
  flex: 1;
}

.matchgate-sport-items li {
  padding: 8px 0;
  color: #555;
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
}

.matchgate-sport-items li:last-child {
  border-bottom: none;
}

.matchgate-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
}

.matchgate-provider-btn {
  background: #667eea;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
}

.matchgate-provider-btn:hover {
  background: #5568d3;
  transform: scale(1.05);
}

.matchgate-trust {
  padding: 90px 30px;
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  color: #fff;
}

.matchgate-trust-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.matchgate-trust h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.matchgate-trust p {
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.95;
}

.matchgate-contact-hero {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: #fff;
  padding: 80px 30px;
  text-align: center;
}

.matchgate-contact-wrapper h1 {
  font-size: 46px;
  margin-bottom: 16px;
}

.matchgate-contact-wrapper p {
  font-size: 18px;
  opacity: 0.95;
}

.matchgate-contact-section {
  padding: 80px 30px;
  background: #fff;
}

.matchgate-contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
}

.matchgate-contact-info h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: #2c3e50;
}

.matchgate-contact-info > p {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.7;
}

.matchgate-contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.matchgate-contact-item {
  display: flex;
  gap: 16px;
  align-items: start;
}

.matchgate-contact-item i {
  font-size: 22px;
  color: #e74c3c;
  margin-top: 4px;
}

.matchgate-contact-item h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #2c3e50;
}

.matchgate-contact-item a,
.matchgate-contact-item span {
  color: #666;
  font-size: 15px;
}

.matchgate-contact-item a:hover {
  color: #e74c3c;
}

.matchgate-contact-form-wrap h2 {
  font-size: 32px;
  margin-bottom: 24px;
  color: #2c3e50;
}

.matchgate-alert {
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.matchgate-alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.matchgate-alert-danger {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.matchgate-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.matchgate-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2c3e50;
  font-size: 14px;
}

.matchgate-form-group label span {
  color: #e74c3c;
}

.matchgate-input,
.matchgate-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s;
}

.matchgate-input:focus,
.matchgate-textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
}

.matchgate-textarea {
  resize: vertical;
}

.matchgate-btn-submit {
  background: #e74c3c;
  color: #fff;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  align-self: flex-start;
}

.matchgate-btn-submit:hover {
  background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231,76,60,0.3);
}

.matchgate-btn-submit:disabled {
  background: #95a5a6;
  cursor: not-allowed;
  transform: none;
}

.matchgate-btn-loader {
  display: none;
}

.matchgate-btn-loader.matchgate-show {
  display: inline-block;
}

.matchgate-alert.matchgate-hidden {
  display: none;
}

.matchgate-legal-hero {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: #fff;
  padding: 80px 30px;
  text-align: center;
}

.matchgate-legal-wrapper h1 {
  font-size: 46px;
  margin-bottom: 12px;
}

.matchgate-legal-wrapper p {
  font-size: 16px;
  opacity: 0.9;
}

.matchgate-legal-content {
  padding: 80px 30px;
  background: #fff;
}

.matchgate-legal-container {
  max-width: 900px;
  margin: 0 auto;
}

.matchgate-legal-block {
  margin-bottom: 40px;
}

.matchgate-legal-block h2 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #2c3e50;
}

.matchgate-legal-block h3 {
  font-size: 22px;
  margin: 24px 0 12px;
  color: #34495e;
}

.matchgate-legal-block p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 12px;
}

.matchgate-legal-block ul {
  margin: 16px 0 16px 24px;
}

.matchgate-legal-block li {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 8px;
}

.matchgate-footer {
  background: #2c3e50;
  color: #ecf0f1;
  padding: 60px 30px 30px;
}

.matchgate-footer-container {
  max-width: 1300px;
  margin: 0 auto;
}

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

.matchgate-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  margin-bottom: 16px;
  color: #fff;
}

.matchgate-footer-logo img {
  height: 38px;
}

.matchgate-footer-logo strong {
  font-weight: 700;
  color: #e74c3c;
}

.matchgate-footer-about p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: #bdc3c7;
}

.matchgate-footer-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.matchgate-detail-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #bdc3c7;
}

.matchgate-detail-row i {
  color: #e74c3c;
  font-size: 16px;
  width: 20px;
}

.matchgate-detail-row a:hover {
  color: #e74c3c;
}

.matchgate-footer-links h4 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #fff;
}

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

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

.matchgate-footer-links a {
  color: #bdc3c7;
  font-size: 14px;
  transition: all 0.3s;
}

.matchgate-footer-links a:hover {
  color: #e74c3c;
  padding-left: 5px;
}

.matchgate-footer-line {
  border: none;
  border-top: 1px solid #34495e;
  margin: 40px 0 30px;
}

.matchgate-footer-base {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 40px;
}

.matchgate-footer-notice p {
  font-size: 13px;
  line-height: 1.7;
  color: #95a5a6;
  margin-bottom: 12px;
}

.matchgate-footer-notice a {
  color: #e74c3c;
  text-decoration: underline;
}

.matchgate-footer-notice a:hover {
  color: #c0392b;
}

.matchgate-footer-copy {
  font-size: 14px;
  color: #95a5a6;
  white-space: nowrap;
}

.matchgate-footer-copy a {
  color: #e74c3c;
  margin-right: 8px;
}

.matchgate-cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 600px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: all 0.4s;
  overflow: hidden;
}

.matchgate-cookie-banner.matchgate-hide {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.matchgate-cookie-content {
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: start;
}

.matchgate-cookie-text {
  flex: 1;
}

.matchgate-cookie-text h5 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 8px;
}

.matchgate-cookie-text i {
  color: #3498db;
}

.matchgate-cookie-text p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.matchgate-cookie-text a {
  color: #e74c3c;
  text-decoration: underline;
}

.matchgate-cookie-text a:hover {
  color: #c0392b;
}

.matchgate-cookie-action {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .matchgate-nav {
    display: none;
  }
  
  .matchgate-hamburger {
    display: flex;
  }
  
  .matchgate-hero h1 {
    font-size: 36px;
  }
  
  .matchgate-hero-desc {
    font-size: 16px;
  }
  
  .matchgate-hero-btns {
    flex-direction: column;
  }
  
  .matchgate-about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .matchgate-about h2 {
    font-size: 30px;
  }
  
  .matchgate-sports-header h2 {
    font-size: 32px;
  }
  
  .matchgate-masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  
  .matchgate-box-tall,
  .matchgate-box-wide {
    grid-row: auto;
    grid-column: auto;
  }
  
  .matchgate-trust h2 {
    font-size: 30px;
  }
  
  .matchgate-contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .matchgate-footer-cols {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .matchgate-footer-base {
    flex-direction: column;
    gap: 20px;
  }
  
  .matchgate-footer-copy {
    white-space: normal;
  }
  
  .matchgate-cookie-content {
    flex-direction: column;
    gap: 16px;
  }
  
  .matchgate-cookie-action {
    width: 100%;
  }
  
  .matchgate-cookie-action .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .matchgate-header-inner {
    padding: 16px 20px;
  }
  
  .matchgate-logo {
    font-size: 20px;
  }
  
  .matchgate-logo img {
    height: 36px;
  }
  
  .matchgate-hero {
    padding: 70px 20px;
  }
  
  .matchgate-hero h1 {
    font-size: 28px;
  }
  
  .matchgate-about,
  .matchgate-sports,
  .matchgate-trust,
  .matchgate-contact-section,
  .matchgate-legal-content {
    padding: 60px 20px;
  }
  
  .matchgate-btn-primary,
  .matchgate-btn-outline {
    padding: 12px 24px;
    font-size: 15px;
  }
}
