/* MatchTicketZone.com - Modern Minimalist Sports Ticket Platform */
:root {
  --matchticketzone-primary: #dc2626;
  --matchticketzone-primary-dark: #b91c1c;
  --matchticketzone-primary-light: #ef4444;
  --matchticketzone-secondary: #1e40af;
  --matchticketzone-secondary-dark: #1e3a8a;
  --matchticketzone-accent: #059669;
  --matchticketzone-accent-dark: #047857;
  --matchticketzone-success: #16a34a;
  --matchticketzone-warning: #ca8a04;
  --matchticketzone-error: #dc2626;
  --matchticketzone-background: #0f172a;
  --matchticketzone-card-bg: #1e293b;
  --matchticketzone-card-hover: #334155;
  --matchticketzone-text: #f1f5f9;
  --matchticketzone-text-muted: #cbd5e1;
  --matchticketzone-border: #334155;
  --matchticketzone-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
  --matchticketzone-shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.7);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--matchticketzone-text);
  background: var(--matchticketzone-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Typography - Bold, Modern */
h1,
.matchticketzone-banner-title {
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--matchticketzone-text);
  text-transform: uppercase;
}

h2,
.matchticketzone-section-title {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  text-align: left;
  color: var(--matchticketzone-text);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 1rem;
}

h2::before,
.matchticketzone-section-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--matchticketzone-primary);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem) !important;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--matchticketzone-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem) !important;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: var(--matchticketzone-text);
}

h5 {
  font-size: clamp(1.1rem, 2vw, 1.3rem) !important;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  color: var(--matchticketzone-text);
}

h6 {
  font-size: clamp(1rem, 1.8vw, 1.2rem) !important;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  color: var(--matchticketzone-text);
}

p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--matchticketzone-text-muted);
  margin-bottom: 1.5rem;
}

/* Hero Banner - Dark Minimalist */
.matchticketzone-banner {
  min-height: 100vh;
  background: linear-gradient(180deg, #0a0e1a 0%, #1a1f2e 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 0 4rem;
}

.matchticketzone-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(220, 38, 38, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(30, 64, 175, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.matchticketzone-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.matchticketzone-banner-left {
  animation: matchticketzone-fadeInUp 0.8s ease-out;
}

.matchticketzone-banner-title {
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.matchticketzone-banner-highlight {
  color: var(--matchticketzone-primary);
  -webkit-text-fill-color: var(--matchticketzone-primary);
  display: block;
}

.matchticketzone-banner-desc {
  font-size: 1.3rem;
  line-height: 1.9;
  color: var(--matchticketzone-text-muted);
  margin-bottom: 3rem;
  max-width: 600px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.matchticketzone-banner-cta {
  display: inline-block;
  padding: 1.4rem 3rem;
  background: var(--matchticketzone-primary);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--matchticketzone-primary);
}

.matchticketzone-banner-cta:hover {
  background: transparent;
  color: var(--matchticketzone-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

.matchticketzone-banner-right {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: matchticketzone-fadeInUp 0.8s ease-out 0.3s both;
}

.matchticketzone-logo-bg {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  background: var(--matchticketzone-card-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--matchticketzone-border);
  position: relative;
  overflow: hidden;
}

.matchticketzone-logo-bg::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(220, 38, 38, 0.1),
    transparent
  );
  animation: matchticketzone-shine 3s infinite;
}

.matchticketzone-logo-img {
  width: 60%;
  height: auto;
  filter: brightness(1.1);
  position: relative;
  z-index: 1;
}

/* Navigation - Minimal Dark Bar */
.matchticketzone-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--matchticketzone-border);
  transition: all 0.3s ease;
}

.matchticketzone-navbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.matchticketzone-navbar-left {
  display: flex;
  align-items: center;
}

.matchticketzone-navbar-home-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--matchticketzone-text);
  transition: all 0.3s ease;
}

.matchticketzone-navbar-home-link:hover {
  color: var(--matchticketzone-primary);
}

.matchticketzone-navbar-logo {
  width: 45px;
  height: auto;
  margin-right: 1rem;
  border-radius: 4px;
}

.matchticketzone-navbar-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--matchticketzone-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.matchticketzone-navbar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.matchticketzone-nav-link-pill {
  padding: 0.8rem 1.8rem;
  color: var(--matchticketzone-text-muted);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.matchticketzone-nav-link-pill:hover,
.matchticketzone-nav-link-pill.active {
  color: var(--matchticketzone-text);
  background: var(--matchticketzone-card-bg);
}

.matchticketzone-nav-link-cta {
  background: var(--matchticketzone-primary);
  color: white !important;
  font-weight: 700;
}

.matchticketzone-nav-link-cta:hover {
  background: var(--matchticketzone-primary-dark);
  color: white !important;
  transform: translateY(-2px);
}

.matchticketzone-navbar-toggle {
  display: none;
  flex-direction: column;
  background: var(--matchticketzone-primary);
  border: none;
  cursor: pointer;
  padding: 0.6rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.matchticketzone-navbar-toggle:hover {
  background: var(--matchticketzone-primary-dark);
}

.matchticketzone-navbar-toggle-bar {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Sport Grid - Card Based */
.matchticketzone-sport-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.matchticketzone-sport-card {
  background: var(--matchticketzone-card-bg);
  border-radius: 8px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--matchticketzone-border);
}

.matchticketzone-sport-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--matchticketzone-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.matchticketzone-sport-card:hover {
  transform: translateY(-8px);
  border-color: var(--matchticketzone-primary);
  background: var(--matchticketzone-card-hover);
}

.matchticketzone-sport-card:hover::after {
  transform: scaleX(1);
}

.matchticketzone-sport-header {
  margin-bottom: 2rem;
}

.matchticketzone-sport-name {
  font-weight: 700;
  color: var(--matchticketzone-text);
  margin: 0;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 21px !important;
}

.matchticketzone-sport-features {
  margin-bottom: 2rem;
}

.matchticketzone-sport-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.matchticketzone-sport-features-list li {
  margin-bottom: 0.8rem;
  color: var(--matchticketzone-text-muted);
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
  font-size: 1rem;
}

.matchticketzone-sport-features-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--matchticketzone-primary);
  font-weight: bold;
}

.matchticketzone-sport-features-list li:last-child {
  margin-bottom: 0;
}

.matchticketzone-sport-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.matchticketzone-sport-button {
  padding: 1rem 1.5rem;
  background: transparent;
  color: var(--matchticketzone-text);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid var(--matchticketzone-border);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.matchticketzone-sport-button:hover {
  background: var(--matchticketzone-primary);
  color: white;
  border-color: var(--matchticketzone-primary);
  transform: translateY(-2px);
}

.matchticketzone-sport-button:first-child {
  background: var(--matchticketzone-primary);
  color: white;
  border-color: var(--matchticketzone-primary);
}

.matchticketzone-sport-button:first-child:hover {
  background: var(--matchticketzone-primary-dark);
  border-color: var(--matchticketzone-primary-dark);
}

/* Features Section */
.matchticketzone-features-section {
  padding: 6rem 0;
  background: var(--matchticketzone-card-bg);
}

.matchticketzone-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.matchticketzone-feature-card {
  background: var(--matchticketzone-background);
  border-radius: 8px;
  padding: 3rem;
  text-align: left;
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid var(--matchticketzone-border);
}

.matchticketzone-feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--matchticketzone-primary);
  box-shadow: var(--matchticketzone-shadow);
}

.matchticketzone-feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--matchticketzone-text);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.matchticketzone-feature-desc {
  color: var(--matchticketzone-text-muted);
  line-height: 1.8;
  font-size: 1rem;
}

/* Section Styles */
.matchticketzone-section {
  padding: 6rem 0;
  background: var(--matchticketzone-background);
}

.matchticketzone-section-desc {
  text-align: left;
  font-size: 1.2rem;
  color: var(--matchticketzone-text-muted);
  margin-bottom: 3rem;
  max-width: 700px;
}

/* Footer */
.matchticketzone-footer {
  background: var(--matchticketzone-card-bg);
  border-top: 1px solid var(--matchticketzone-border);
  padding: 4rem 0 2rem;
  margin-top: 0;
}

.matchticketzone-footer h4 {
  color: var(--matchticketzone-text);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.1rem;
}

.matchticketzone-footer p {
  color: var(--matchticketzone-text-muted);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.matchticketzone-footer-links {
  list-style: none;
  padding: 0;
}

.matchticketzone-footer-links li {
  margin-bottom: 0.75rem;
}

.matchticketzone-footer-links a {
  color: var(--matchticketzone-text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1rem;
}

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

.matchticketzone-footer-divider {
  border-color: var(--matchticketzone-border);
  margin: 3rem 0 2rem;
}

.matchticketzone-footer-bottom {
  padding-top: 2rem;
}

.matchticketzone-footer-disclaimer {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.matchticketzone-footer-disclaimer p {
  margin-bottom: 1rem;
  color: var(--matchticketzone-text);
}

.matchticketzone-footer-disclaimer p:last-child {
  margin-bottom: 0;
}

/* Cookie Consent */
.matchticketzone-cookie-consent {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--matchticketzone-card-bg);
  border: 1px solid var(--matchticketzone-border);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--matchticketzone-shadow-lg);
  z-index: 1001;
}

.matchticketzone-cookie-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.matchticketzone-cookie-text h5 {
  color: var(--matchticketzone-text);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
}

.matchticketzone-cookie-text p {
  color: var(--matchticketzone-text-muted);
  margin-bottom: 0;
}

.matchticketzone-cookie-text a {
  color: var(--matchticketzone-primary);
  text-decoration: none;
}

.matchticketzone-cookie-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.matchticketzone-cookie-actions .btn {
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

/* Animations */
@keyframes matchticketzone-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes matchticketzone-shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

@media (min-width: 768px) {
  .matchticketzone-sport-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .matchticketzone-sport-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1099px) {
  .matchticketzone-navbar-toggle {
    display: flex !important;
    background: var(--matchticketzone-primary) !important;
    border: none !important;
    padding: 0.75rem;
    border-radius: 4px;
    position: relative;
    z-index: 1001;
  }

  .matchticketzone-navbar-toggle-bar {
    background: white !important;
    width: 28px;
    height: 3px;
    margin: 2px 0;
  }

  .matchticketzone-navbar-right > .matchticketzone-nav-link-pill {
    display: none !important;
  }

  .matchticketzone-navbar-right {
    display: none;
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--matchticketzone-card-bg);
    flex-direction: column;
    padding: 2rem;
    border-top: 1px solid var(--matchticketzone-border);
    z-index: 1000;
    box-shadow: var(--matchticketzone-shadow-lg);
  }

  .matchticketzone-navbar-right.open {
    display: flex !important;
  }

  .matchticketzone-navbar-right .matchticketzone-nav-link-pill {
    display: block !important;
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .matchticketzone-banner {
    min-height: auto;
    padding: 8rem 0 4rem;
    margin-top: 0;
  }

  .matchticketzone-banner-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .matchticketzone-banner-left {
    order: 2;
  }

  .matchticketzone-banner-right {
    order: 1;
  }

  .matchticketzone-logo-bg {
    max-width: 300px;
    margin: 0 auto;
  }

  .matchticketzone-sport-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .matchticketzone-sport-button {
    width: 100%;
  }

  .matchticketzone-features {
    grid-template-columns: 1fr;
  }

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

  .matchticketzone-cookie-actions {
    width: 100%;
    justify-content: center;
  }

  h2,
  .matchticketzone-section-title {
    text-align: center;
  }

  h2::before,
  .matchticketzone-section-title::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .matchticketzone-section-desc {
    text-align: center;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .matchticketzone-banner {
    padding: 7rem 0 3rem;
  }

  .matchticketzone-navbar-title {
    font-size: 14px;
  }

  .matchticketzone-banner-title {
    font-size: 2.5rem;
  }

  .matchticketzone-banner-cta {
    padding: 1.2rem 2rem;
    font-size: 0.9rem;
    width: 100%;
  }

  .matchticketzone-sport-card {
    padding: 2rem;
  }

  .matchticketzone-feature-card {
    padding: 2rem 1.5rem;
  }

  .matchticketzone-cookie-consent {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 1.5rem;
  }

  .matchticketzone-section-title,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    word-break: break-word;
    hyphens: auto;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }

  p,
  li {
    word-break: break-word;
    overflow-wrap: break-word;
  }
}

/* Page Cards */
.matchticketzone-page-card {
  background: var(--matchticketzone-card-bg);
  border-radius: 8px;
  padding: 3rem;
  margin: 2rem 0;
  border: 1px solid var(--matchticketzone-border);
  box-shadow: var(--matchticketzone-shadow);
  margin-top: 110px;
}

.matchticketzone-page-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--matchticketzone-primary);
}

/* Contact Form */
.matchticketzone-contact-form {
  background: var(--matchticketzone-card-bg);
  border-radius: 8px;
  padding: 3rem;
  border: 1px solid var(--matchticketzone-border);
}

.matchticketzone-contact-form .form-control {
  background: var(--matchticketzone-background);
  border: 1px solid var(--matchticketzone-border);
  color: var(--matchticketzone-text);
  border-radius: 4px;
  padding: 1rem;
  transition: all 0.3s ease;
}

.matchticketzone-contact-form .form-control:focus {
  background: var(--matchticketzone-background);
  border-color: var(--matchticketzone-primary);
  color: var(--matchticketzone-text);
  outline: none;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.matchticketzone-contact-info {
  background: var(--matchticketzone-card-bg);
  border-radius: 8px;
  padding: 3rem;
  border: 1px solid var(--matchticketzone-border);
}

.matchticketzone-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.matchticketzone-contact-list li {
  margin-bottom: 1.5rem;
  color: var(--matchticketzone-text-muted);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  flex-direction: column;
}

.matchticketzone-contact-list li:last-child {
  margin-bottom: 0;
}

.matchticketzone-contact-list strong {
  color: var(--matchticketzone-text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 120px;
}

.matchticketzone-contact-list strong i {
  color: var(--matchticketzone-primary);
  font-size: 1.1rem;
  width: 16px;
  text-align: center;
}

.matchticketzone-contact-list a {
  color: var(--matchticketzone-primary);
  text-decoration: none;
}

.matchticketzone-contact-list a:hover {
  color: var(--matchticketzone-primary-light);
  text-decoration: underline;
}

/* FAQ Section */
.matchticketzone-faq-item {
  background: var(--matchticketzone-card-bg);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--matchticketzone-border);
  transition: all 0.3s ease;
}

.matchticketzone-faq-item:hover {
  transform: translateY(-4px);
  border-color: var(--matchticketzone-primary);
  box-shadow: var(--matchticketzone-shadow);
}

.matchticketzone-faq-item h4 {
  color: var(--matchticketzone-text);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.matchticketzone-faq-item h4 .matchticketzone-about-icon {
  color: var(--matchticketzone-primary);
  font-size: 1.2rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.matchticketzone-faq-item p {
  color: var(--matchticketzone-text-muted);
  line-height: 1.8;
  margin-bottom: 0;
}

/* Utility Classes */
.matchticketzone-hidden {
  display: none !important;
}

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

/* Contact Page Specific */
.matchticketzone-page-card {
  background: var(--matchticketzone-card-bg);
  border-radius: 8px;
  padding: 3rem;
  border: 1px solid var(--matchticketzone-border);
  box-shadow: var(--matchticketzone-shadow);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.matchticketzone-section-title {
  color: var(--matchticketzone-text);
  font-weight: 800;
  margin-bottom: 2rem;
  text-align: left;
  text-transform: uppercase;
}

/* Form Improvements */
.matchticketzone-contact-form .form-group {
  margin-bottom: 1.5rem;
}

.matchticketzone-contact-form .form-group label {
  color: var(--matchticketzone-text);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.matchticketzone-contact-form .form-group label i {
  color: var(--matchticketzone-primary);
  font-size: 1rem;
  width: 16px;
  text-align: center;
}

.matchticketzone-contact-form .form-control::placeholder {
  color: var(--matchticketzone-text-muted);
  opacity: 0.6;
}

/* Alert Improvements */
.alert {
  border-radius: 8px;
  border: none;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.alert-info {
  background: rgba(30, 64, 175, 0.2);
  border-left: 4px solid var(--matchticketzone-secondary);
  color: var(--matchticketzone-text);
}

.alert-success {
  background: rgba(22, 163, 74, 0.2);
  border-left: 4px solid var(--matchticketzone-success);
  color: var(--matchticketzone-text);
}

.alert-danger {
  background: rgba(220, 38, 38, 0.2);
  border-left: 4px solid var(--matchticketzone-error);
  color: var(--matchticketzone-text);
}

.alert h4 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
}

.alert h4 i {
  font-size: 1.2rem;
}

/* Button Improvements */
.matchticketzone-banner-cta {
  background: var(--matchticketzone-primary);
  border: 2px solid var(--matchticketzone-primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.matchticketzone-banner-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
  color: white;
}

.matchticketzone-banner-cta:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
  .matchticketzone-page-card {
    padding: 2rem 1.5rem;
    margin: 100px 1rem 1rem 1rem;
    border-radius: 8px;
  }

  .matchticketzone-section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .matchticketzone-contact-form,
  .matchticketzone-contact-info {
    padding: 2rem 1.5rem;
  }

  .matchticketzone-faq-item {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }

  .matchticketzone-faq-item h4 {
    font-size: 1rem;
  }

  .alert {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .matchticketzone-banner-cta {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .matchticketzone-page-card {
    padding: 1.5rem 1rem;
  }

  .matchticketzone-section-title {
    font-size: 1.75rem;
  }

  .matchticketzone-contact-form,
  .matchticketzone-contact-info {
    padding: 1.5rem 1rem;
  }

  .matchticketzone-faq-item {
    padding: 1rem;
  }
}

/* Loading Animation */
.matchticketzone-loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: matchticketzone-spin 1s ease-in-out infinite;
}

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

/* Hamburger Menu Animation Classes */
.matchticketzone-hamburger-bar-1-open {
  transform: rotate(45deg) translate(5px, 5px) !important;
}

.matchticketzone-hamburger-bar-2-open {
  opacity: 0 !important;
}

.matchticketzone-hamburger-bar-3-open {
  transform: rotate(-45deg) translate(7px, -6px) !important;
}

.matchticketzone-hamburger-bar-reset {
  transform: none !important;
  opacity: 1 !important;
}
