<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* RESET + BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #fefefe;
  color: #333;
}
a {
  color: #0077cc;
  text-decoration: none;
}
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.site-header {
  background: linear-gradient(to right, #1e3c72, #2a5298);
  padding: 20px 0;
}

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

.logo a {
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.main-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

.main-nav ul li a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.main-nav ul li a:hover {
  color: #ffcc00;
}

/* Responsive Nav (optional hamburger toggle you can add later) */
@media (max-width: 768px) {
  .main-nav ul {
    flex-direction: column;
    background: #1e3c72;
    display: none;
  }
  .main-nav ul.show {
    display: flex;
  }
}


/* HERO */
.hero {
  background: #f8f9ff;
  padding: 80px 20px;
  text-align: center;
  color: #111;
}
.hero h2 {
  font-size: 32px;
  margin-bottom: 16px;
}
.hero p {
  font-size: 18px;
}
.hero .btn {
  background: #ff5722;
  color: white;
  padding: 12px 24px;
  margin-top: 24px;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}
.hero .btn:hover {
  background: #e64a19;
}

/* CATEGORY SECTION */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.category-card {
  background: linear-gradient(to top right, #ffffff, #e0ecff);
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
.category-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.category-card p {
  font-size: 14px;
  color: #555;
}

/* FEATURED PERFORMERS */
.performer-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.performer-list li {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 16px;
  text-align: center;
  font-weight: 500;
  transition: background 0.2s;
}
.performer-list li:hover {
  background: #f3f8ff;
}

/* BUTTON */
.btn {
  background: #0077cc;
  color: white;
  padding: 10px 20px;
  margin-top: 20px;
  display: inline-block;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s ease;
}
.btn:hover {
  background: #005da8;
}

/* SECTION STYLES */
section.container {
  padding: 30px 40px;
  margin-top: 30px;
}

section h2 {
  margin-bottom: 20px;
  font-size: 28px;
  color: #1e3c72;
}
section ol li,
section ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

/* FOOTER */
.site-footer {
  background: #1e1e2f;
  color: #ccc;
  padding: 50px 20px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-column h4 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 16px;
}

.footer-logo {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 10px;
}

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

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

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-subscribe {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.footer-subscribe input {
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
}

.footer-subscribe button {
  background: #0077cc;
  color: white;
  padding: 10px;
  border: none;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.footer-subscribe button:hover {
  background: #005fa3;
}

@media (max-width: 768px) {
  .footer-subscribe {
    flex-direction: column;
  }
}


/* MOBILE */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background: #1e3c72;
    padding: 10px;
  }
  nav ul.show {
    display: flex;
  }
  nav .menu-toggle {
    display: block;
  }
}
.event-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.event-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: #f9f9f9;
  padding: 20px;
  border: 1px solid #ddd;
  border-left: 6px solid #0077cc;
  border-radius: 6px;
  transition: box-shadow 0.2s ease;
}

.event-card:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.event-info {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  flex: 1;
}

.event-date {
  font-size: 15px;
  color: #777;
  text-align: center;
  min-width: 100px;
}

.event-details h4 {
  margin-bottom: 6px;
  font-size: 18px;
  color: #333;
}

.event-details p {
  margin-bottom: 4px;
  font-size: 14px;
  color: #555;
}

.event-action {
  text-align: right;
}

.btn.blue {
  background: #007bff;
  color: white;
  padding: 10px 18px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn.blue:hover {
  background: #005ec9;
}

@media (max-width: 768px) {
  .event-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .event-action {
    width: 100%;
    margin-top: 10px;
  }

  .event-info {
    flex-direction: column;
    align-items: flex-start;
  }
}

.promo-boxes {
  text-align: center;
  margin-top: 60px;
}
.promo-boxes h2 {
  font-size: 28px;
  color: #1e3c72;
  margin-bottom: 10px;
}
.promo-boxes p {
  margin-bottom: 30px;
  color: #555;
}

.promo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.promo-card {
  background: #f4f9ff;
  border: 2px dashed #0077cc;
  border-radius: 10px;
  padding: 30px 20px;
  width: 280px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.promo-card h3 {
  font-size: 22px;
  color: #0077cc;
  margin-bottom: 10px;
}

.deal-text {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #333;
}

.promo-code {
  background: #fff;
  border: 1px solid #0077cc;
  color: #0077cc;
  font-size: 18px;
  font-weight: bold;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 12px;
  user-select: all;
}

.copy-btn {
  background: #0077cc;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.copy-btn:hover {
  background: #005fa3;
}

.legal {
  font-size: 12px;
  margin-top: 10px;
  color: #888;
}

/* Responsive */
@media (max-width: 600px) {
  .promo-grid {
    flex-direction: column;
    align-items: center;
  }
}
.alphabet-nav {
  margin-top: 60px;
  text-align: center;
}
.alphabet-nav h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #1e3c72;
}
.alphabet-nav p {
  margin-bottom: 20px;
  color: #555;
}
.letter-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.letter-grid a {
  display: inline-block;
  background: #0077cc;
  color: white;
  font-weight: bold;
  padding: 10px 14px;
  border-radius: 6px;
  text-decoration: none;
  width: 40px;
  text-align: center;
  transition: background 0.3s ease;
}
.letter-grid a:hover {
  background: #ff6f61;
}

.contact-info {
  margin: 20px 0;
  font-size: 16px;
}

.contact-tips ul {
  margin-top: 10px;
  padding-left: 20px;
}

.contact-tips ul li {
  margin-bottom: 8px;
}
</pre></body></html>