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

html {
  scroll-behavior: smooth;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #000000 0%, #0a0a0f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  text-align: center;
  animation: fadeInUp 0.8s ease;
}

.loading-logo {
  width: 120px;
  height: auto;
  margin-bottom: 2rem;
  animation: pulse 2s ease-in-out infinite;
}

.loading-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 0 auto 2rem;
}

.loading-dots .dot {
  width: 14px;
  height: 14px;
  background: #4a90e2;
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
}

.loading-dots .dot:nth-child(1) {
  animation-delay: 0s;
}

.loading-dots .dot:nth-child(2) {
  animation-delay: 0.2s;
}

.loading-dots .dot:nth-child(3) {
  animation-delay: 0.4s;
}

.loading-fact {
  font-family: 'Rubik', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  max-width: 500px;
  text-align: center;
  padding: 0 2rem;
  animation: fadeInUp 0.6s ease;
}

@keyframes blink {
  0%, 100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

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

@keyframes fadeInOut {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

/* Smooth Page Transitions */
body {
  animation: fadeIn 0.5s ease-in-out;
}

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

/* Dark Background for Events, Team, and Board Pages */
body.events-page .background-overlay,
body.team-page .background-overlay,
body.board-page .background-overlay {
  background: rgba(0, 0, 0, 0.85) !important;
  opacity: 1 !important;
}

/* Offset for sections on standalone pages */
body.events-page .events,
body.team-page .team,
body.board-page .board {
  padding-top: 150px;
}

body {
  font-family: "Rubik", sans-serif;
  background: #000000;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Rubik for everything */
* {
  font-family: 'Rubik', sans-serif;
}

/* Checkpoint Navigation Dots */
.checkpoint-nav {
  position: fixed;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 900;
}

.checkpoint-dot {
  width: 10px;
  height: 10px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  display: block;
  transition: all 0.3s ease;
}

.checkpoint-dot:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}

.checkpoint-dot.active {
  background: #4a90e2;
  width: 12px;
  height: 12px;
}

/* Scroll Down Indicator */
.scroll-indicator {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 900;
  animation: bounceArrow 2s ease-in-out infinite;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.5s ease, all 0.3s ease;
}

.scroll-indicator:hover {
  transform: translateY(5px);
}

.scroll-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.scroll-indicator:hover .scroll-text {
  color: #ffffff;
}

.scroll-arrow {
  font-size: 1.2rem;
  color: #4a90e2;
  transition: color 0.3s ease;
}

.scroll-indicator:hover .scroll-arrow {
  color: #00c6ff;
}

@keyframes bounceArrow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

/* Mobile optimization for scroll indicator */
@media (max-width: 768px) {
  .scroll-indicator {
    bottom: 1.5rem;
    right: 1.5rem;
  }
  
  .scroll-text {
    font-size: 0.7rem;
    letter-spacing: 0.3px;
  }
  
  .scroll-arrow {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .scroll-indicator {
    bottom: 1rem;
    right: 1rem;
  }
  
  .scroll-text {
    font-size: 0.65rem;
  }
  
  .scroll-arrow {
    font-size: 0.9rem;
  }
}


/* Background Video */
.background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
  transition: background 0.3s ease;
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1200px;
  background: rgba(10, 10, 15, 0.6);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  z-index: 1000;
  padding: 0.8rem 1rem;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 4px 24px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: 
    radial-gradient(
      circle at 30% 50%,
      rgba(74, 144, 226, 0.03),
      transparent 60%
    );
  opacity: 1;
}

.navbar::after {
  display: none;
}

.navbar:hover {
  background: rgba(15, 15, 20, 0.7);
  border-color: rgba(255, 255, 255, 0.12);
}

.nav-container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px #4a90e2);
  transition: transform 0.3s ease;
}

.nav-logo-img:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.5rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.6rem 1.2rem;
  border-radius: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link.active {
  color: #4a90e2;
  font-weight: 600;
}

/* Singularity Button - Special Aesthetic Design */
.singularity-btn {
  background: linear-gradient(135deg, #00c6ff 0%, #0072ff 50%, #00d4ff 100%);
  background-size: 200% 200%;
  color: #ffffff !important;
  padding: 0.7rem 1.5rem;
  border-radius: 0;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  box-shadow: 0 0 20px rgba(0, 198, 255, 0.5);
  animation: gradientShift 3s ease infinite;
}

.singularity-btn::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #00c6ff, #0072ff, #00d4ff, #00c6ff);
  background-size: 400% 400%;
  border-radius: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: gradientRotate 4s ease infinite;
}

.singularity-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.singularity-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 0 30px rgba(0, 198, 255, 0.7), 0 0 60px rgba(0, 114, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.singularity-btn:hover::before {
  opacity: 1;
}

.singularity-btn:hover::after {
  width: 300px;
  height: 300px;
  opacity: 0;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes gradientRotate {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.nav-logo a {
  text-decoration: none;
  display: block;
}

.footer-logo a {
  text-decoration: none;
  display: block;
}

/* Page-specific hero sections */
.events-hero,
.team-hero,
.board-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: transparent;
  overflow: hidden;
  padding-top: 120px;
}

.events-hero-content,
.team-hero-content,
.board-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.events-hero h1,
.team-hero h1,
.board-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px #4a90e2;
}

.events-hero p,
.team-hero p,
.board-hero p {
  font-size: 1.2rem;
  color: #e0e0e0;
  max-width: 600px;
  margin: 0 auto;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  z-index: 1000;
}

.hamburger span {
  width: 25px;
  height: 2.5px;
  background: #ffffff;
  margin: 3.5px 0;
  transition: all 0.3s ease;
  border-radius: 0;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

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

/* Floating Particles Background Effect */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 20% 30%, rgba(74, 144, 226, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(102, 126, 234, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(118, 75, 162, 0.06) 0%, transparent 50%);
  background-size: 30px 30px, 400px 400px, 500px 500px, 600px 600px;
  background-position: 0 0, 0 0, 100% 100%, 50% 50%;
  z-index: 1;
  pointer-events: none;
  animation: floatingOrbs 25s ease-in-out infinite;
}

@keyframes floatingOrbs {
  0%, 100% {
    background-position: 0 0, 0% 0%, 100% 100%, 50% 50%;
  }
  25% {
    background-position: 10px 10px, 10% 20%, 90% 80%, 60% 40%;
  }
  50% {
    background-position: 20px 0, 20% 30%, 80% 70%, 40% 60%;
  }
  75% {
    background-position: 10px -10px, 30% 10%, 70% 90%, 50% 50%;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 2rem;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.hero-title {
  font-size: 6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: font-size 0.3s ease, transform 0.3s ease;
  transform-origin: center;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7), 0 2px 8px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.hero-title-line {
  display: block;
  animation: titleReveal 1s ease-out backwards;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleReveal 1s ease-out backwards, gradientSlide 8s ease-in-out infinite;
}

.hero-title-line:first-child {
  animation-delay: 0.2s;
}

.hero-title-line:last-child {
  animation-delay: 0.4s;
}

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

@keyframes gradientSlide {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-title.scrolled {
  font-size: 3rem;
}

.hero-title.scrolled .hero-title-line {
  animation: none;
  background: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 8px;
  transition: font-size 0.3s ease, opacity 0.3s ease;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  opacity: 0.85;
  text-transform: uppercase;
}

.hero-subtitle.scrolled {
  font-size: 1.2rem;
}

.hero-logo {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 20px #4a90e2);
  animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  0% {
    filter: drop-shadow(0 0 20px #4a90e2);
    transform: scale(1);
  }
  100% {
    filter: drop-shadow(0 0 30px #4a90e2);
    transform: scale(1.02);
  }
}

/* Section Styles */
section {
  padding: 5rem 0;
  position: relative;
  background: transparent;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

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

section:nth-child(1) {
  animation-delay: 0.1s;
}
section:nth-child(2) {
  animation-delay: 0.2s;
}
section:nth-child(3) {
  animation-delay: 0.3s;
}
section:nth-child(4) {
  animation-delay: 0.4s;
}
section:nth-child(5) {
  animation-delay: 0.5s;
}
section:nth-child(6) {
  animation-delay: 0.6s;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(90deg, #4a90e2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  animation: titleGlow 2s ease-in-out infinite alternate;
}

/* About Section */
.about {
  background: transparent;
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #e0e0e0;
  line-height: 1.8;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: transparent;
  border-radius: 0;
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

/* .stat-item:hover::before {
  left: 100%;
} */

.stat-item h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #4a90e2;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: #e0e0e0;
  font-weight: 500;
}

.image-placeholder {
  width: 100%;
  height: 300px;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #4a90e2;
  border: none;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}

.image-placeholder:hover {
  transform: scale(1.05);
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.image-placeholder:hover img {
  transform: scale(1.1);
}

/* Events Section */
.events {
  background: transparent;
}

.events-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #4a90e2;
  text-align: center;
}

.events-section {
  margin-bottom: 4rem;
}

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

.event-card {
  background: linear-gradient(135deg, rgba(15, 15, 25, 0.95) 0%, rgba(10, 10, 15, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4a90e2, #357ae8, #4a90e2);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.event-card:hover {
  transform: translateY(-8px);
  border-color: rgba(74, 144, 226, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(74, 144, 226, 0.1);
}

.event-card:hover::before {
  opacity: 1;
}

/* Hackathon Event Background */
.hackathon-event {
  background-image:
    linear-gradient(135deg, rgba(0, 0, 0, 0.92) 0%, rgba(5, 5, 10, 0.96) 100%),
    url("https://res.cloudinary.com/ds0ipwzxr/image/upload/v1761658955/HachMSC_igttdh.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

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

/* Quantum Computing Event Background */
.quantum-event {
  background-image:
    linear-gradient(135deg, rgba(0, 0, 0, 0.92) 0%, rgba(5, 5, 10, 0.96) 100%),
    url("https://res.cloudinary.com/ds0ipwzxr/image/upload/v1761658945/QuantumComp_yes6wo.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

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

/* Tech Fest Event Background */
.techfest-event {
  background-image:
    linear-gradient(135deg, rgba(0, 0, 0, 0.92) 0%, rgba(5, 5, 10, 0.96) 100%),
    url("https://res.cloudinary.com/ds0ipwzxr/image/upload/v1761658960/TechFest_qshvkr.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

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

.zerojam-event {
  background-image:
    linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(5, 5, 10, 0.9) 100%),
    url("https://res.cloudinary.com/ds0ipwzxr/image/upload/v1761658980/ZeroZam_qpyr1u.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

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

.techhunt-event {
  background-image:
    linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(5, 5, 10, 0.9) 100%),
    url("https://res.cloudinary.com/ds0ipwzxr/image/upload/v1761658920/TechHunt_ocdicd.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

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

.hackxmsc-event {
  background-image:
    linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(5, 5, 10, 0.9) 100%),
    url("https://res.cloudinary.com/ds0ipwzxr/image/upload/v1761658924/HackXMSC_vc0uae.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

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

.event-card-header {
  padding: 1.5rem 1.8rem 1rem 1.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.event-date {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(74, 144, 226, 0.15);
  border: 1px solid rgba(74, 144, 226, 0.3);
  border-radius: 0;
  padding: 0.4rem 0.9rem;
  margin-bottom: 0.8rem;
}

/* Translucent dates for past events */
.past-event .event-date {
  background: rgba(125, 124, 124, 0.15);
  border-color: rgba(125, 124, 124, 0.3);
}

.event-date .month {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-date .day {
  font-size: 1.1rem;
  font-weight: 700;
  color: #4a90e2;
}

.past-event .event-date .day {
  color: rgba(255, 255, 255, 0.5);
}

.event-content {
  padding: 0 1.8rem 1.5rem 1.8rem;
}

.event-content h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.event-content p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.2rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

.event-details {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 0;
  border-left: 2px solid rgba(74, 144, 226, 0.3);
}

.event-time,
.event-location {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.event-time i,
.event-location i {
  color: #4a90e2;
  font-size: 1rem;
  width: 18px;
  text-align: center;
}

.event-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: auto;
}

.register-btn {
  background: linear-gradient(135deg, #4a90e2 0%, #357ae8 100%);
  color: #ffffff;
  border: none;
  padding: 0.85rem 2.2rem;
  border-radius: 0;
  font-weight: 600;
  font-family: 'Rubik', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

.register-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.register-btn:hover {
  background: linear-gradient(135deg, #357ae8 0%, #2a66c9 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(74, 144, 226, 0.6);
}

.register-btn:hover::before {
  left: 100%;
}

.register-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(74, 144, 226, 0.4);
}

.past-event {
  opacity: 0.8;
}

.past-event .event-date {
  background: linear-gradient(135deg, #666, #888);
}

/* Founders Section */
.founders {
  background: transparent;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.founder-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.founder-card:hover {
  transform: translateY(-5px);
}

.founder-image {
  margin-bottom: 1.5rem;
}

.founder-image .image-placeholder {
  width: 120px !important;
  height: 120px !important;
  border-radius: 50% !important;
  margin: 0 auto;
  font-size: 3rem;
  overflow: hidden;
  position: relative;
  display: block !important;
  background: none !important;
  border: none !important;
}

.founder-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}

.founder-info h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.founder-role {
  color: #4a90e2;
  font-weight: 500;
  margin-bottom: 1rem;
}

.founder-bio {
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.founder-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.founder-social a {
  width: 40px;
  height: 40px;
  background: rgba(74, 144, 226, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.founder-social a:hover {
  background: rgba(74, 144, 226, 1);
}

.founder-social a:hover {
  transform: scale(1.1);
}

/* Board Members Section */
.board {
  background: transparent;
  padding-top: 150px;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.board-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.board-card:hover {
  transform: translateY(-5px);
}

.board-image {
  margin-bottom: 1.5rem;
}

.board-image .image-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto;
  font-size: 3rem;
  overflow: hidden;
  position: relative;
  display: block !important;
  background: none !important;
  border: none !important;
}

.board-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}

.board-info h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.board-role {
  color: #4a90e2;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.board-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.board-social a {
  width: 40px;
  height: 40px;
  background: rgba(74, 144, 226, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.board-social a:hover {
  background: rgba(74, 144, 226, 1);
}

.board-social a:hover {
  transform: scale(1.1);
}

/* Team Members Section */
.team {
  background: transparent;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-image {
  margin-bottom: 1.5rem;
}

.team-image .image-placeholder {
  width: 120px !important;
  height: 120px !important;
  border-radius: 50% !important;
  margin: 0 auto;
  font-size: 3rem;
  overflow: hidden;
  position: relative;
  display: block !important;
  background: none !important;
  border: none !important;
}

.team-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}

.team-info h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.team-role {
  color: #4a90e2;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.team-social a {
  width: 40px;
  height: 40px;
  background: rgba(74, 144, 226, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: rgba(74, 144, 226, 1);
}

.team-social a:hover {
  transform: scale(1.1);
}

/* Contact Section */
.contact {
  background: transparent;
  padding: 8rem 0;
}

.contact .section-title {
  margin-bottom: 4rem;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  color: #4a90e2;
  margin-bottom: 1rem;
  text-align: center;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 0;
  transition: all 0.3s ease;
}

.contact-item i {
  font-size: 1.3rem;
  color: #4a90e2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 144, 226, 0.1);
  border: 1px solid rgba(74, 144, 226, 0.3);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-item:hover i {
  background: rgba(74, 144, 226, 0.2);
  border-color: #4a90e2;
  transform: scale(1.1);
}

.contact-item p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.6;
  padding-top: 0.5rem;
}

.contact-form {
  background: linear-gradient(135deg, rgba(15, 15, 25, 0.6) 0%, rgba(10, 10, 15, 0.7) 100%);
  padding: 3.5rem 3rem;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  min-height: 500px;
}

.contact-form h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 2rem;
  text-align: center;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  color: #ffffff;
  font-family: 'Rubik', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(74, 144, 226, 0.4);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-form button {
  background: transparent;
  color: #4a90e2;
  border: 2px solid #4a90e2;
  padding: 1.2rem 3rem;
  border-radius: 0;
  font-weight: 600;
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.contact-form button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(74, 144, 226, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.contact-form button:hover {
  background: #4a90e2;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(74, 144, 226, 0.4);
}

.contact-form button:hover::before {
  width: 300px;
  height: 300px;
}

.contact-form button:active {
  transform: translateY(-1px);
}

.contact-form button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(74, 144, 226, 0.3);
  color: rgba(74, 144, 226, 0.5);
}

.contact-form button:disabled:hover {
  transform: none;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.05);
}

/* Form Status Messages */
.form-status {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 0;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
}

.form-status.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.form-status.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.form-status.info {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #3b82f6;
}

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

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px #4a90e2);
  transition: transform 0.3s ease;
}

.footer-logo-img:hover {
  transform: scale(1.05);
}

.footer-connect {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-connect p {
  color: #ffffff;
  font-weight: 500;
  margin: 0;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(74, 144, 226, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: rgba(74, 144, 226, 1);
}

.footer-social a:hover {
  transform: scale(1.1);
}

.footer-right {
  display: flex;
  align-items: center;
}

.footer-right p {
  color: #ffffff;
  font-weight: 500;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Hide custom cursor on mobile */
  .cursor {
    display: none;
  }

  body {
    cursor: auto;
    overflow-x: hidden;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
    position: relative;
  }

  .navbar {
    width: 95%;
    top: 1rem;
    padding: 1rem 1.2rem;
    border-radius: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    position: relative;
  }
  
  /* Hide checkpoint navigation on mobile */
  .checkpoint-nav {
    display: none;
  }
  
  .nav-logo-img {
    height: 45px;
    transition: height 0.3s ease;
  }
  
  .container {
    padding: 0 20px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    gap: 1rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 999;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  
  .nav-link {
    padding: 1.2rem 3rem;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 1px;
    border: none;
    border-radius: 0;
    margin: 0.3rem 0;
    width: 100%;
    max-width: 400px;
    transition: all 0.3s ease;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .nav-link::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #4a90e2;
    transform: translateX(-50%);
    transition: width 0.3s ease;
  }
  
  .nav-link:hover {
    background: transparent;
    color: rgba(255, 255, 255, 0.95);
    transform: none;
  }
  
  .nav-link:hover::before {
    width: 80%;
  }
  
  .nav-link.active {
    background: transparent;
    color: #4a90e2;
    font-weight: 600;
  }
  
  .nav-link.active::before {
    width: 80%;
  }
  
  /* Mobile Singularity Button Styling */
  .singularity-btn {
    background: transparent;
    border: 2px solid;
    border-image: linear-gradient(135deg, #667eea, #764ba2, #f093fb) 1;
    padding: 1.2rem 2.5rem;
    margin: 1.5rem 0 0.3rem 0;
    font-size: 1.3rem;
    border-radius: 0;
    box-shadow: none;
    color: #f093fb !important;
    animation: none;
  }
  
  .singularity-btn::before,
  .singularity-btn::after {
    display: none;
  }
  
  .singularity-btn:hover {
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    color: #ffffff !important;
    transform: none;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
  }

  .hero {
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 2rem;
  }
  
  .hero-content {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
    text-align: center;
    width: 100%;
    gap: 0.3rem;
  }
  
  .hero-title-line {
    font-size: 2.2rem;
  }
  
  .hero-title.scrolled {
    font-size: 1.5rem;
  }
  
  .hero-title.scrolled .hero-title-line {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 4px;
  }
  
  .hero-subtitle.scrolled {
    font-size: 0.75rem;
  }
  
  .hero-logo-img {
    height: 90px;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .about {
    padding: 4rem 0;
  }
  
  .about-content {
    padding: 2rem 1.5rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }
  
  .event-card {
    padding: 1.2rem;
  }

  .founders-grid {
    grid-template-columns: 1fr;
  }
  
  .board-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .contact {
    padding: 3rem 0;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-info h3 {
    font-size: 1.3rem;
  }
  
  .contact-form {
    padding: 2.5rem 2rem;
    min-height: auto;
  }
  
  .contact-form h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-item {
    display: flex;
    margin: 0.5rem;
  }

  .footer {
    padding: 2rem 0 1.5rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-left {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-connect {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-logo-img {
    height: 35px;
  }

  .sponsors {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  .hero {
    padding-top: 90px;
  }
  
  .hero-content {
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .hero-title {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 0.8rem;
    text-align: center;
    width: 100%;
    gap: 0.2rem;
  }
  
  .hero-title-line {
    font-size: 1.5rem;
  }
  
  .hero-title.scrolled {
    font-size: 1.3rem;
  }
  
  .hero-title.scrolled .hero-title-line {
    font-size: 1.3rem;
  }

  .hero-subtitle {
    font-size: 0.7rem;
    letter-spacing: 3px;
  }
  
  .hero-subtitle.scrolled {
    font-size: 0.6rem;
  }
  
  .hero-logo {
    margin: 1.5rem 0;
  }
  
  .hero-logo-img {
    height: 70px;
  }
  
  .navbar {
    width: 94%;
    top: 0.8rem;
    padding: 0.9rem 1rem;
    border-radius: 0;
    z-index: 1000;
  }
  
  .nav-logo-img {
    height: 40px;
  }
  
  .hamburger {
    z-index: 1001;
  }
  
  .nav-menu {
    width: 100%;
    height: 100vh;
    top: 0;
    padding: 0;
  }
  
  .nav-link {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    max-width: 350px;
    margin: 0.3rem 0;
  }
  
  /* Mobile Singularity Button for Small Screens */
  .singularity-btn {
    padding: 1rem 2rem;
    margin: 1.2rem 0 0.3rem 0;
    font-size: 1.1rem;
    max-width: 300px;
  }
  
  .about {
    padding: 3rem 0;
  }
  
  .about-content {
    padding: 1.5rem 1rem;
  }
  
  .founders-grid,
  .board-grid,
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .event-card {
    flex-direction: column;
    text-align: left;
    padding: 0;
  }
  
  .event-card-header {
    padding: 1rem 1rem 0.5rem 1rem;
  }
  
  .event-content {
    padding: 0 1rem 1rem 1rem;
  }

  .event-date {
    align-self: flex-start;
    margin-bottom: 0.8rem;
  }
  
  .event-details {
    padding: 0.7rem;
    margin-bottom: 1rem;
  }
  
  .events-subtitle {
    font-size: 1.4rem;
  }
  
  .contact {
    padding: 2.5rem 0;
  }
  
  .contact-info {
    margin-bottom: 2rem;
  }
  
  .contact-item {
    padding: 0.8rem 1.2rem;
    margin: 0.5rem;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
    min-height: auto;
  }
  
  .contact-form h3 {
    font-size: 1.2rem;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 1rem;
    font-size: 0.9rem;
  }
  
  .contact-form button {
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }
  
  .register-btn,
  .more-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
  }
  
  .footer {
    padding: 2.5rem 0 1.5rem;
  }
  
  .footer-logo-img {
    height: 55px;
  }
  
  .footer-social a {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  /* Loading Screen Mobile */
  .loading-logo {
    width: 80px;
    margin-bottom: 1.5rem;
  }
  
  .loading-dots {
    gap: 10px;
    margin-bottom: 1.5rem;
  }
  
  .loading-dots .dot {
    width: 10px;
    height: 10px;
  }
  
  .loading-fact {
    font-size: 0.85rem;
    padding: 0 1.5rem;
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
    width: 100%;
  }
  
  /* Event Modal Mobile */
  .event-modal-content {
    width: 95%;
    max-height: 90vh;
  }
  
  .event-modal-header {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
  }
  
  .event-modal-close {
    top: 1rem;
    right: 1rem;
  }
  
  .event-modal-title {
    font-size: 1.5rem;
    padding-right: 40px;
  }
  
  .event-modal-body {
    padding: 1.5rem;
  }
  
  .event-modal-footer {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
    flex-direction: column;
  }
  
  .event-modal-register {
    width: 100%;
  }
}

.more-btn {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-family: 'Rubik', sans-serif;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  padding: 0.8rem 2rem;
  margin-left: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  outline: none;
  position: relative;
  overflow: hidden;
}

.more-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  transition: left 0.4s ease;
}

.more-btn:hover,
.more-btn:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  transform: translateY(-2px);
}

.more-btn:hover::after {
  left: 100%;
}

.more-btn:active {
  transform: translateY(0);
}

/* Event Modal Card */
.event-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.event-modal.active {
  opacity: 1;
  visibility: visible;
}

.event-modal-content {
  background: linear-gradient(135deg, rgba(15, 15, 25, 0.95) 0%, rgba(10, 10, 15, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  max-width: 700px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  backdrop-filter: blur(20px);
  transform: scale(0.8) translateY(-50px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(74, 144, 226, 0.2);
}

.event-modal.active .event-modal-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.event-modal-header {
  padding: 2rem 2.5rem 1.5rem 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.event-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
}

.event-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: rotate(90deg);
}

.event-modal-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.8rem;
  letter-spacing: -0.5px;
}

.event-modal-date {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(74, 144, 226, 0.15);
  border: 1px solid rgba(74, 144, 226, 0.3);
  border-radius: 0;
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #4a90e2;
}

.event-modal-body {
  padding: 2rem 2.5rem;
}

.event-modal-section {
  margin-bottom: 2rem;
}

.event-modal-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.event-modal-section h4::before {
  content: '';
  width: 4px;
  height: 20px;
  background: #4a90e2;
  border-radius: 0;
}

.event-modal-section p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: 0.95rem;
}

.event-modal-section ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.event-modal-section li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.event-modal-section li::before {
  content: '▸';
  position: absolute;
  left: 0.5rem;
  color: #4a90e2;
  font-weight: bold;
}

.event-modal-footer {
  padding: 1.5rem 2.5rem 2rem 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.event-modal-register {
  background: #4a90e2;
  color: #ffffff;
  border: none;
  padding: 0.9rem 2.5rem;
  border-radius: 0;
  font-weight: 600;
  font-family: 'Rubik', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.event-modal-register:hover {
  background: #357ae8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

/* Custom Scrollbar for Modal */
.event-modal-content::-webkit-scrollbar {
  width: 8px;
}

.event-modal-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0;
}

.event-modal-content::-webkit-scrollbar-thumb {
  background: rgba(74, 144, 226, 0.3);
  border-radius: 0;
}

.event-modal-content::-webkit-scrollbar-thumb:hover {
  background: rgba(74, 144, 226, 0.5);
}
