* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background: #0a0a0a;
  color: #fff;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw;
  height: 60vh;
  background-image: url('assets/images/caryatid-logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.03;
  z-index: 0;
  pointer-events: none;
}

#canvas3d {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.content-wrapper {
  position: relative;
  z-index: 1;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  background: rgba(106, 4, 15, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  z-index: 1000;
  border-bottom: 1px solid #222;
}

.nav-logo {
  color: #d3d3d3;
  font-weight: 800;
  letter-spacing: 2px;
  font-family: "ZenDots";
  font-size: 1.2rem;
  text-decoration: none;
}

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

.nav-links a {
  color: #e0e0e0;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-decoration: none;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #ae2012;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-top: 80px;
}

.hero-logo {
  width: 150px;
  height: auto;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInScale 1s ease-out forwards;
  filter: drop-shadow(0 0 20px rgba(220, 20, 60, 0.4));
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.hero h1 {
  font-family: 'ZenDots';
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  animation: glowPulse 3s ease-in-out infinite, fadeInDown 1s ease-out 0.3s backwards;
  text-shadow: 0 0 10px rgba(220,20,60,0.8), 0 0 20px rgba(220,20,60,0.6), 0 0 30px rgba(220,20,60,0.4), 0 0 40px rgba(220,20,60,0.2);
}

@keyframes glowPulse {
  0%,100% { text-shadow: 0 0 10px rgba(220,20,60,0.8), 0 0 20px rgba(220,20,60,0.6), 0 0 30px rgba(220,20,60,0.4), 0 0 40px rgba(220,20,60,0.2); }
  50% { text-shadow: 0 0 20px rgba(220,20,60,1), 0 0 30px rgba(220,20,60,0.8), 0 0 40px rgba(220,20,60,0.6), 0 0 50px rgba(220,20,60,0.4), 0 0 60px rgba(220,20,60,0.2); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-tagline {
  font-size: clamp(1.2rem,3vw,1.8rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #dc143c; 
  animation: fadeInUp 1s ease-out 0.6s backwards;
}

.hero-intro {
  font-size: clamp(1rem,2vw,1.2rem);
  max-width: 700px;
  line-height: 1.6;
  color: #ddd;
  animation: fadeInUp 1s ease-out 0.9s backwards;
  padding: 0 2rem;
}

.section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem auto;
  background: rgba(10,10,10,0.4);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  background-image: url('assets/images/caryatid-logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}

.section:nth-child(even)::before { right: auto; left: -50px; }

.section > * { position: relative; z-index: 1; }

.section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem,5vw,3.5rem);
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  color: #dc143c;
  text-shadow: 0 0 10px rgba(220,20,60,0.4), 0 0 20px rgba(220,20,60,0.2);
}

.section p {
  font-size: clamp(1rem,2vw,1.2rem);
  line-height: 1.8;
  color: #ddd;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.footer-logo {
  width: 80px;
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
  opacity: 0.6;
  transition: opacity 0.3s, transform 0.3s;
}

.footer-logo:hover { 
  opacity: 1; 
  transform: scale(1.1); 
}

.schedule-table {
  width: 100%;
  margin-top: 3rem;
  border-collapse: collapse;
  background: rgba(20,20,20,0.6);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(220,20,60,0.2);
}

.schedule-table th {
  background: rgba(220,20,60,0.2);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1.5rem;
  font-size: 1.1rem;
  border-bottom: 2px solid rgba(220,20,60,0.3);
}

.schedule-table td {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: #ddd;
}

.schedule-table tr:last-child td { 
  border-bottom: none; 
}

.schedule-table tr:hover { 
  background: rgba(220,20,60,0.1); 
}

.day-header { 
  background: rgba(220,20,60,0.15); 
  font-weight: 700; 
  color: #dc143c; 
}

.event-time { 
  font-weight: 600; 
  color: #fff;  
  white-space: nowrap; 
}

.event-name { font-weight: 500; 
  color: #ddd; 
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.event-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: rgba(20,20,20,0.6);
  backdrop-filter: blur(10px);
}

.event-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  filter: brightness(0.8);
  transition: filter 0.4s ease, transform 0.4s ease;
  box-shadow: 0 4px 20px rgba(220,20,60,0.3);
}

.event-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 30px rgba(220,20,60,0.5);
}

.event-item:hover img {
  filter: brightness(1);
  transform: scale(1.05);
}

.event-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  padding: 1.5rem;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.event-item:hover .event-overlay { 
  transform: translateY(-5px); 
}

.event-overlay h3 { 
  font-size: 1.3rem; 
  font-weight: 600; 
  color: #dc143c; 
  margin-bottom: 0.5rem; 
}

.event-overlay p { 
  font-size: 0.9rem; 
  color: #ccc; 
  text-align: left; 
  line-height: 1.4; 
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  animation: fadeIn 0.3s ease;
}

.modal.active { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
}

@keyframes fadeIn { 
  from { opacity: 0; } to { opacity: 1; } 
}

.modal-content {
  position: relative;
  max-width: 900px;
  width: 90%;
  background: linear-gradient(135deg, rgba(20,20,20,0.95), rgba(10,10,10,0.95));
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(220,20,60,0.3);
  box-shadow: 0 0 50px rgba(220,20,60,0.4), 0 0 100px rgba(220,20,60,0.2);
  animation: zoomIn 0.4s ease;
}

@keyframes zoomIn { from { transform: scale(0.7); opacity:0;} to { transform: scale(1); opacity:1;} }

.modal-content img { 
  width: 100%; 
  height: 400px; 
  object-fit: cover; 
  display: block; 
}

.modal-details { 
  padding: 1.5rem; 
}

.modal-details h3 { 
  font-size: 2.5rem; 
  font-weight: 700; 
  color: #dc143c; 
  margin-bottom: 1.5rem; 
  text-shadow: 0 0 10px rgba(220,20,60,0.4),0 0 20px rgba(220,20,60,0.2); 
}

.modal-details p { 
  font-size: 1.1rem; 
  line-height: 1.8; 
  color: #ddd; 
  text-align: left; 
}

.close-modal { 
  position: absolute; 
  top: 20px; 
  right: 30px; 
  font-size: 3rem; 
  color: #dc143c; 
  cursor: pointer; 
  z-index: 10; 
  transition: 
  transform 0.3s ease, 
  text-shadow 0.3s ease; 
  line-height: 1; }

.close-modal:hover { 
  transform: rotate(90deg) scale(1.2); 
  text-shadow: 0 0 20px rgba(220,20,60,0.8), 0 0 40px rgba(220,20,60,0.4);
 }

.video-section { 
  text-align: center; 
  margin-top: 4rem; 
}

.video-section h2 { 
  margin-bottom: 2.5rem; 
}

.video-container {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(220,20,60,0.3), 0 0 60px rgba(220,20,60,0.15), 0 10px 40px rgba(0,0,0,0.5);
  border: 2px solid rgba(220,20,60,0.2);
  animation: videoGlow 3s ease-in-out infinite;
}

@keyframes videoGlow { 0%,100% { box-shadow: 0 0 30px rgba(220,20,60,0.3),0 0 60px rgba(220,20,60,0.15),0 10px 40px rgba(0,0,0,0.5);} 50% { box-shadow: 0 0 40px rgba(220,20,60,0.4),0 0 80px rgba(220,20,60,0.2),0 10px 50px rgba(0,0,0,0.6);} }

.video-container video { width: 100%; display: block; aspect-ratio: 16/9; }


.hero-bg-logo {
  position: absolute;
  width: 850px;
  opacity: 0.20;
  z-index: 0;
  max-width: 90vw;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(0.5px);
}

.hero h1, .hero p { position: relative; z-index: 2; }

.about-container { display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; }

.about-logo { width: 350px; flex-shrink: 0; filter: drop-shadow(0 0 25px rgba(220,20,60,0.4)); }

.about-text { flex: 1; }

.about-text h2, .about-text p { text-align: left; }
.footer-spacer {
  height: 120px;
}

.prayaag-footer a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.75;
}

.prayaag-footer a:hover {
  color: #ae2012;
  opacity: 1;
}

.prayaag-footer {
  background: rgba(106, 4, 15, 0.2);   
  backdrop-filter: blur(10px);        
  -webkit-backdrop-filter: blur(10px);

  color: #fff;
  padding: 70px 0 30px;

  border-top: 1px solid rgba(255,255,255,0.12);
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.footer-left h2 {
   font-family: "ZenDots";
  font-size: 2.1rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.footer-left p {
  font-size: 0.95rem;
  opacity: 0.75;
  margin-bottom: 6px;
}

.footer-left span {
  color: #ff2a2a;
  font-weight: 600;
  font-size: 0.9rem;
}

/* TITLES */
.footer-middle h4,
.footer-right h4 {
  color: #ff2a2a;
  margin-bottom: 14px;
  font-size: 1rem;
  letter-spacing: 1px;
}

/* LINKS */
.footer-middle a,
.footer-right a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 8px;
  opacity: 0.75;
}

.footer-middle a:hover,
.footer-right a:hover {
  color: #ff2a2a;
  opacity: 1;
}

/* SOCIALS */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
}

.footer-socials a {
  font-size: 1.3rem;
  color: #fff;
  opacity: 0.85;
  transition: 0.3s;
}

.footer-socials a:hover {
  color: #ff2a2a;
  transform: translateY(-2px);
}

/* BOTTOM */
.footer-bottom {
  margin-top: 50px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-bottom span {
  color: #ff2a2a;
}

.schedule-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .navbar {
    padding: 0 16px;  
  }

  .nav-logo {
    font-size: 1rem;
  }

  .menu-toggle { display: block; font-size: 2rem; }
  .nav-links { position: absolute; top: 70px; left: 0; width: 100%; background: #000; flex-direction: column; align-items: center; display: none; border-top: 1px solid #222; }
  .nav-links li { padding: 15px 0; }
  .nav-links.show { display: flex; }
  .hero-logo { width: 100px; }
  .section { padding: 3rem 1.5rem; }
  .section::before { width: 120px; height: 120px; right: 0px; left: auto; }
  .section:nth-child(even)::before { left: 0px; right: auto;}
  .events-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
  .event-item img { height: 250px; }
  .modal-content img { height: 300px; }
  .modal-details { padding: 1.5rem; }
  .modal-details h3 { font-size: 2rem; }
  .close-modal { font-size: 2.5rem; top: 15px; right: 20px; }
  .footer-logo { width: 60px; }
  .about-container { flex-direction: column; text-align: center; }
  .about-text h2, .about-text p { text-align: center; }
  .about-logo { width: 180px; }
  .hero h1 {
    font-size: clamp(3rem, 9vw, 4rem);
    letter-spacing: 0.05em;
    line-height: 1.1;
    padding: 0 1rem;
  }

  .section h2 {
    font-size: clamp(1.8rem, 6vw, 2.6rem);
    line-height: 1.2;
    padding: 0 1rem;
  }
}

@font-face {
        font-family: "ZenDots";
        src: url("../assets/webfonts/ZenDots-Regular.ttf") format("truetype");
        font-weight: normal;
        font-style: normal;
    }

.register-container {
  margin-top: 2.5rem;
  text-align: center;
  animation: fadeInUp 1s ease-out 1.2s backwards;
}

.hero-register-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.9));
  color: #dc143c;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(220, 20, 60, 0.3);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(220, 20, 60, 0.1);
  position: relative;
  overflow: hidden;
}

.hero-register-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(145deg, rgba(25, 25, 25, 0.95), rgba(15, 15, 15, 0.95));
  border-color: rgba(220, 20, 60, 0.5);
  box-shadow: 
    0 8px 30px rgba(220, 20, 60, 0.2),
    0 4px 20px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 0 0 1px rgba(220, 20, 60, 0.2);
  color: #fff;
}

/* Optional: Add right arrow */
.hero-register-btn::after {
  content: '→';
  margin-left: 10px;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.hero-register-btn:hover::after {
  transform: translateX(5px);
}

/* Schedule Register Buttons */
.event-register {
  text-align: center;
  width: 120px;
}

.schedule-register-btn {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: rgba(20, 20, 20, 0.7);
  color: #dc143c;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(220, 20, 60, 0.2);
  backdrop-filter: blur(5px);
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.schedule-register-btn:hover {
  background: rgba(30, 30, 30, 0.8);
  color: #fff;
  transform: translateY(-1px);
  border-color: rgba(220, 20, 60, 0.4);
  box-shadow: 
    0 4px 12px rgba(220, 20, 60, 0.15),
    0 2px 8px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Event Card Register Button */
.event-register-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.5rem;
  background: rgba(203, 12, 228, 0.4);
  color: #49105f;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(203, 12, 228, 0.4);
  backdrop-filter: blur(5px);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(203, 12, 228, 0.4);
}

.event-item:hover .event-register-btn {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.event-register-btn:hover {
  background: rgba(214, 5, 241, 0.507);
  transform: translateY(-2px);
  border-color: rgba(130, 5, 146, 0.4);
  box-shadow: 
    0 4px 15px rgba(123, 2, 139, 0.507),
    0 2px 8px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(203, 12, 228, 0.4);
}
/* Modal Register Button */

.modal-register-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: linear-gradient(145deg, rgba(20, 20, 20, 0.95), rgba(10, 10, 10, 0.95));
  color: #dc143c;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(220, 20, 60, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.modal-register-btn:hover {
  background: linear-gradient(145deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.95));
  color: #fff;
  transform: translateY(-3px);
  border-color: rgba(220, 20, 60, 0.5);
  box-shadow: 
    0 8px 30px rgba(220, 20, 60, 0.25),
    0 4px 20px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-register-btn {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }
  
  .event-register-btn {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }
}
/* Event Item with hover overlay */
.event-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 300px; /* Fixed height */
}

.event-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* Overlay - hidden by default */
.event-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  text-align: center;
}

/* Show overlay on hover */
.event-item:hover .event-overlay {
  opacity: 1;
  transform: translateY(0);
}

.event-overlay h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease 0.1s;
}

.event-overlay p {
  color: #ccc;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease 0.2s;
  line-height: 1.5;
}

/* Register button - also hidden until hover */
.event-register-btn {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease 0.3s;
  padding: 0.7rem 1.8rem;
  background: rgba(173, 4, 196, 0.4);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid rgba(86, 1, 97, 0.4);
  font-weight: 500;
  backdrop-filter: blur(10px);
}

/* Show text elements when overlay is visible */
.event-item:hover .event-overlay h3,
.event-item:hover .event-overlay p,
.event-item:hover .event-register-btn {
  opacity: 1;
  transform: translateY(0);
}

.event-register-btn:hover {
  background: rgba(214, 5, 241, 0.507);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(226, 7, 255, 0.4);
}

.modal-content {
  max-height: 85vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(220, 20, 60, 0.5) rgba(20, 20, 20, 0.3);
}

.modal-content::-webkit-scrollbar {
  width: 8px;
}

.modal-content::-webkit-scrollbar-track {
  background: rgba(20, 20, 20, 0.3);
  border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: rgba(220, 20, 60, 0.5);
  border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: rgba(220, 20, 60, 0.7);
}

.event-details {
  margin-top: 1.5rem;
  padding: 1.2rem;
  background: rgba(20, 20, 20, 0.5);
  border-radius: 8px;
  border-left: 3px solid #dc143c;
}

.event-details p {
  margin: 0.5rem 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .modal-content {
    max-height: 90vh;
    margin: 1rem;
  }
  
  .modal-details {
    padding: 1rem;
  }
}
