/* Root Variables */
:root {
  --primary-black: #0a0a0a;
  --secondary-black: #151515;
  --tertiary-black: #222222;
  --primary-red: #e60000;
  --primary-red-hover: #ff1a1a;
  --primary-white: #ffffff;
  --metallic-silver: #b0b5b9;
  --text-muted: #888888;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset & Basic Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--primary-black);
  color: var(--primary-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 6rem 0;
}

.bg-darker {
  background-color: var(--secondary-black);
}

.text-accent {
  color: var(--primary-red);
}

.center {
  text-align: center;
}

/* Typography Classes */
.section-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.minor-title {
  font-size: 1.5rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-red);
  color: var(--primary-white);
  border: 2px solid var(--primary-red);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary-red);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-white);
  border: 2px solid var(--primary-white);
}

.btn-outline:hover {
  background-color: var(--primary-white);
  color: var(--primary-black);
}

.btn-large {
  padding: 1rem 3rem;
  font-size: 1.1rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 100;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo img {
  height: 40px; /* Adjust based on actual logo */
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: var(--transition);
}

.nav-links a:hover, a.active {
  color: var(--primary-red);
}

.nav-btn {
  font-size: 0.8rem;
  padding: 0.5rem 1.5rem;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--primary-black);
}

.hero-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg .hero-img-1 {
  animation: heroFade1 18s infinite;
}

.hero-bg .hero-img-2 {
  opacity: 0;
  animation: heroFade2 18s infinite;
}

.hero-bg .hero-img-3 {
  opacity: 0;
  animation: heroFade3 18s infinite;
}

@keyframes heroFade1 {
  0% { opacity: 1; transform: scale(1); }
  25% { opacity: 1; transform: scale(1.02); }
  33.33% { opacity: 0; transform: scale(1.03); }
  91.66% { opacity: 0; transform: scale(1); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes heroFade2 {
  0% { opacity: 0; transform: scale(1); }
  25% { opacity: 0; transform: scale(1.01); }
  33.33% { opacity: 1; transform: scale(1.02); }
  58.33% { opacity: 1; transform: scale(1.04); }
  66.66% { opacity: 0; transform: scale(1.05); }
  100% { opacity: 0; transform: scale(1); }
}

@keyframes heroFade3 {
  0% { opacity: 0; transform: scale(1); }
  58.33% { opacity: 0; transform: scale(1.01); }
  66.66% { opacity: 1; transform: scale(1.02); }
  91.66% { opacity: 1; transform: scale(1.04); }
  100% { opacity: 0; transform: scale(1.05); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.6) 50%, rgba(10,10,10,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-headline {
  font-size: 4.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.hero-subtext {
  font-size: 1.25rem;
  color: var(--metallic-silver);
  margin-bottom: 2.5rem;
  max-width: 600px;
  text-shadow: 0 2px 5px rgba(0,0,0,0.8);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-10px) translateX(-50%); }
  60% { transform: translateY(-5px) translateX(-50%); }
}

/* About Section */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.milestone-badge {
  display: inline-block;
  background: rgba(230, 0, 0, 0.1);
  color: var(--primary-red);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  border: 1px solid var(--primary-red);
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--metallic-silver);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.image-accent-border {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-red);
  z-index: -1;
  border-radius: 4px;
}

/* Gallery Section */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.filter-btn {
  background: transparent;
  border: none;
  color: var(--metallic-silver);
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  padding: 0.5rem 1rem;
  transition: var(--transition);
  position: relative;
}

.filter-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--primary-red);
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  color: var(--primary-white);
}

.filter-btn.active::after {
  width: 80%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
}

.item-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.item-overlay span {
  color: var(--primary-red);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-heading);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover .item-overlay {
  transform: translateY(0);
  opacity: 1;
}

/* Activities */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.activity-card {
  background: var(--secondary-black);
  padding: 3rem 2rem;
  border-radius: 4px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.05);
}

.activity-card:hover {
  transform: translateY(-10px);
  border-color: rgba(230, 0, 0, 0.3);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: rgba(230, 0, 0, 0.1);
  color: var(--primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.activity-card:hover .card-icon {
  background: var(--primary-red);
  color: var(--primary-white);
}

.activity-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.activity-card p {
  color: var(--metallic-silver);
}

/* Partners */
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  opacity: 0.6;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: auto;
  transition: var(--transition);
}

.partner-logo img {
  max-height: 100%;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%) brightness(200%); /* Black and white initially */
  opacity: 0.7;
  transition: var(--transition);
}

.partner-logo:hover img {
  filter: grayscale(0%) brightness(100%); /* Original color on hover */
  opacity: 1;
}

/* Store Preview */
.flex-row {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.store-content {
  flex: 1;
  padding-right: 2rem;
}

.store-content p {
  color: var(--metallic-silver);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.store-image {
  flex: 1;
}

.store-merch-img {
  width: 100%;
  max-width: 1080px;
  height: auto;
  border-radius: 8px;
  /* Reduced shadow slightly for cleaner look with large image */
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  display: block;
  margin: 0 auto;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.store-image:hover .store-merch-img {
  transform: scale(1.03) translateY(-10px);
}

/* Flip Card for Revolving Images */
.flip-card {
  background-color: transparent;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
}

.activity-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

.flip-card-front {
  background-color: var(--secondary-black);
}

.flip-card-back {
  background-color: var(--secondary-black);
  transform: rotateY(180deg);
}

/* CTA Section */
.cta-subtitle {
  color: var(--metallic-silver);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Footer */
.footer {
  padding: 4rem 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--metallic-silver);
  margin: 1.5rem 0;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--tertiary-black);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-red);
  transform: translateY(-3px);
}

.footer h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul li {
  margin-bottom: 0.8rem;
}

.footer-links ul li a {
  color: var(--metallic-silver);
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--primary-red);
  padding-left: 5px;
}

.footer-contact p {
  color: var(--metallic-silver);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-contact i {
  color: var(--primary-red);
}

.footer-bottom {
  padding: 1.5rem 0;
  background: var(--primary-black);
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Scroll Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.fade-right {
  transform: translateX(-30px);
}

.fade-right.active {
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 992px) {
  .hero-headline { font-size: 3.5rem; }
  .about-container, .flex-row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-image { margin-top: 2rem; }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 2rem 0;
    gap: 1.5rem;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: var(--transition);
  }
  
  .nav-links.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .mobile-menu-btn { display: block; }

  .hero-headline { font-size: 2.8rem; }
  .hero-buttons { flex-direction: column; }
  .cta-buttons { flex-direction: column; }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-links { justify-content: center; }
  .footer-contact p { justify-content: center; }
}
/* Join AK Redesign (V2) */
.container-narrow {
  max-width: 900px;
}

.container-medium {
  max-width: 1000px;
}

.join-header-v2 {
  padding: 100px 0 50px;
}

.join-title-large {
  font-size: 3.5rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.join-subtext-v2 {
  color: var(--metallic-silver);
  font-size: 0.9rem;
  margin-bottom: 4rem;
}

.join-hero-headline {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.join-hero-desc {
  max-width: 800px;
  margin: 0 auto;
  color: var(--metallic-silver);
  font-size: 0.9rem;
  line-height: 1.4;
}

.join-form-section {
  padding-bottom: 100px;
}

.join-red-card {
  background-color: var(--primary-red);
  border-radius: 12px;
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 20px 50px rgba(230, 0, 0, 0.2);
}

.join-form-v2 {
  width: 100%;
}

.form-row {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.form-col-left {
  flex: 1.2;
}

.form-col-right {
  flex: 1;
}

.form-row-inner {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.form-group-v2 {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.form-group-v2.full-height {
  height: 100%;
}

.label-v2 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--primary-white);
}

.input-v2 {
  background: var(--primary-white);
  border: none;
  border-radius: 6px;
  padding: 1rem 1.2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--primary-black);
  width: 100%;
}

.input-v2::placeholder {
  color: #ccc;
}

.upload-box-v2 {
  background: var(--primary-white);
  border-radius: 6px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 180px;
  color: var(--primary-black);
}

.upload-box-v2 p {
  margin-bottom: 1rem;
  font-weight: 500;
  font-size: 1rem;
}

.upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.btn-choose {
  background: var(--primary-red);
  color: var(--primary-white);
  border: none;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.upload-btn-wrapper input[type=file] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  cursor: pointer;
}

.form-footer-v2 {
  display: flex;
  justify-content: flex-end;
}

.btn-submit-v2 {
  background: var(--primary-white);
  color: var(--primary-black);
  border: none;
  border-radius: 6px;
  padding: 1rem 2.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}

.btn-submit-v2:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.join-footer-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
}

.privacy-note {
  flex: 1;
}

.privacy-note p {
  font-size: 0.8rem;
  color: #888;
  max-width: 300px;
  margin-bottom: 0.5rem;
}

.hashtag {
  font-weight: 700;
  color: #666 !important;
}

.benefits-simple {
  flex: 1;
}

.benefits-simple ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.benefits-simple li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.8rem;
  color: var(--primary-white);
}

.benefits-simple i {
  font-size: 0.3rem;
  color: var(--primary-white);
}

/* Responsive V2 */
@media (max-width: 768px) {
  .join-title-large { font-size: 2.5rem; }
  .join-hero-headline { font-size: 2.5rem; }
  .form-row { flex-direction: column; gap: 1.5rem; }
  .join-red-card { padding: 2rem; }
  .join-footer-info { flex-direction: column; gap: 2rem; text-align: left; }
  .form-row-inner { flex-direction: column; }
}

/* Events Redesign (Upcoming Events Grid) */
.events-v2-section {
    padding: 100px 0;
}

.events-v2-header {
    text-align: center;
    margin-bottom: 80px;
}

.events-v2-title {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.events-v2-title span {
    color: var(--primary-red);
}

.events-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 4rem;
}

.event-card-v2 {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.event-card-img-wrap {
    flex: 1;
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 4px;
}

.event-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.card-overlay-date {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.card-overlay-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-overlay-desc {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.4;
}

.event-card-info {
    flex: 0.8;
    padding-top: 1rem;
}

.card-info-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.card-meta-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.card-meta-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--primary-white);
}

.card-meta-item i {
    color: var(--primary-red);
    width: 20px;
}

.btn-view-event {
    background: var(--primary-red);
    color: var(--primary-white);
    border: none;
    border-radius: 6px;
    padding: 0.8rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: fit-content;
    transition: var(--transition);
}

.btn-view-event:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230,0,0,0.3);
}

/* Specific Event Detail Page */
.event-detail-landing {
    padding: 100px 0;
}

.event-detail-grid {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.detail-img-col {
    flex: 0.8;
}

.detail-img-col img {
    width: 100%;
    border-radius: 4px;
}

.detail-info-col {
    flex: 1.2;
}

.detail-title-main {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.detail-p-big {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.detail-p-normal {
    font-size: 1.1rem;
    color: var(--metallic-silver);
    margin-bottom: 1rem;
}

.detail-list {
    margin-bottom: 2.5rem;
    list-style: none;
}

.detail-list li {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.btn-get-tickets {
    background: var(--primary-red);
    color: var(--primary-white);
    border: none;
    border-radius: 6px;
    padding: 1rem 4rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-get-tickets:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

@media (max-width: 900px) {
    .events-grid-v2 {
        grid-template-columns: 1fr;
    }
    .event-card-v2 {
        flex-direction: column;
        gap: 1.5rem;
    }
    .event-detail-grid {
        flex-direction: column;
        gap: 2rem;
    }
    .events-v2-title {
        font-size: 2.5rem;
    }
}
