:root{--byd-red:#e60012;--accent:#111;--muted:#666;--white:#fff;--max-width:1200px}
*{box-sizing:border-box
  
}body
{font-family:Inter,system-ui,Arial,sans-serif;
margin:0;
color:var(--accent);
background:#fff}a{color:inherit;
text-decoration:none
}

.site-header{
  background: #1111;
  padding:18px;
  border-bottom:1px solid #1111;
  margin-top:0px;
  margin-bottom: 0px;
}


.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background: #fff;
    backdrop-filter: blur(8px);
    position: sticky;
    z-index: 1000;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.05);
    border-radius: 30px;
}

/* ===== BYD BUTTON STYLES ===== */

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(90deg, #b80000, #ff0000);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 40px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.35s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(184, 0, 0, 0.9);
    position: relative;
    overflow: hidden;
}

/* Subtle glow and lift effect */
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 0, 0, 0.60);
}

/* Ripple effect */
.btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease, opacity 0.8s ease;
    opacity: 0;
}

.btn:hover::after {
    width: 250%;
    height: 250%;
    opacity: 0;
}

/* Outlined variant (for secondary buttons) */
.btn-outline {
    background: transparent;
    border: 2px solid #b80000;
    color: #b80000;
    box-shadow: none;
}

.btn-outline:hover {
    background: #b80000;
    color: #fff;
    box-shadow: 0 6px 20px rgba(184, 0, 0, 0.3);
}

/* Disabled button state */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none;
}

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

.nav ul li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    height: 2px;
    width: 0%;
    background: #e60012;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav ul li a:hover {
    color: #ff0000;
}

.nav ul li a:hover::after {
    width: 100%;
}

.nav ul li a.active {
    color: #ff0000;
}

.nav ul li a.active::after {
    width: 100%;
}

.container{
  max-width:var(--max-width);
  margin:0 auto;
  padding:20px} 

.brand{display:flex;
  align-items:center;
  gap:12px}
  
.brand img{
  height:60px;
  width:auto;
  border-radius:8px}

.brand h1{
  margin:0;
  font-family:Playfair Display,serif;
  color:var(--byd-red);
  font-size:24px}

.nav-links{
  display:flex;
  gap:12px;
  align-items:center;
}


.ghost{
  background:transparent;
  border:1px solid var(--byd-red);
  color:var(--byd-red);
  padding:12px 28px;
  border-radius:40px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.35s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(184, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.accordion{
  background:transparent;
  border:1px solid var(--byd-red);
  color:var(--byd-red);
  padding:12px 28px;
  border-radius:40px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.35s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(184, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.hero{
  position:relative;
  padding:60px 0}
  
.hero .hero-overlay{
  background-size:cover;
  background-position:center;
  position:absolute;inset:0;
  filter:brightness(0.45) saturate(0.95)}
  
  
.hero-inner{
  position:relative;
  display:flex;
  gap:24px;
  align-items:center}
  
.hero-text{
  flex:1;
  color:#fff}
  
.hero-text h2{
  font-family:Playfair Display,serif;
  font-size:34px;
  margin:0}
  
.hero-cta{
  background:#fff;
  padding:18px;
  border-radius:12px;
  box-shadow:0 8px 30px rgba(0,0,0,0.08);width:360px}
  
.card{
  background:#fff;
  padding:18px;
  margin-top: 8px;
  border-radius:12px;
  box-shadow:0 8px 30px rgba(0,0,0,0.25)}
  
.muted{
  color:var(--muted)}
  .wall-banner{position:relative;
  border-radius:10px;
  overflow:hidden;
  margin-top:18px}
  
.wall-banner img{
  width:100%;
  height:1100px;
  object-fit:cover;display:block}
  
.overlay-text{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  color:#fff;
  background:linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.35));
  text-align:center}

.test-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:18px;
  margin-top:16px}
  
.test-card img{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:8px}
  
.ticket-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:18px;
  margin-top:12px}
  
.ticket-card{
  padding:16px;
  border-radius:10px;
  box-shadow:0 8px 30px rgba(0,0,0,0.25);
  text-align:center}
  
.price{
  font-weight:700;
  font-size:20px;
  color:var(--byd-red)}
  
.site-footer{
  background:#1111;
  padding:18px;
  border-top:1px solid #1111;
  margin-top:30px}
  
.small{
  font-size:13px}
  
.news-ticker{
  display:flex;
  gap:24px;
  overflow:hidden;
  white-space:nowrap;
  padding:8px 0}
  
.news-ticker span{
  display:inline-block;
  padding-right:24px;
  animation:scroll 18s linear infinite}@keyframes scroll{0%{transform:translateX(0)}100%{transform:translateX(-100%)}}@media(max-width:880px)

{.nav{
flex-direction:column;
align-items:flex-start}
  
.hero-inner{
flex-direction:column}
      
.hero-cta{
width:100%}}