/* Common Page Styles */
.page-header {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  padding: 120px 0 60px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(37, 99, 235, 0.3) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 70% 60%,
      rgba(168, 85, 247, 0.3) 0%,
      transparent 40%
    );
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease 0.2s both;
}

.page-description {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.2rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.4s both;
}

/* Active link styling */
.nav-link.active {
  color: #2563eb;
}

.nav-link.active::after {
  width: 100%;
}

/* Navigation and Mobile Menu Styles */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #2563eb;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #2563eb;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .nav-menu.active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background: #374151;
    transition: all 0.3s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

/* Enhanced button styles */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #2563eb;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #2563eb;
}

.btn-secondary:hover {
  background: rgba(37, 99, 235, 0.1);
  transform: translateY(-3px);
}

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

/* Agenda Page Styles */
.agenda-section {
  padding: 5rem 0;
}

.timeline-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.timeline-block {
  margin-bottom: 4rem;
  position: relative;
}

.timeline-heading {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  padding: 1.5rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  border-left: 5px solid #2563eb;
}

.timeline-heading h3 {
  margin: 0;
  color: #1e40af;
}

.timeline-time {
  font-weight: 600;
  color: #64748b;
}

.timeline-event {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  border-radius: 10px;
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.timeline-event:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.timeline-event.featured {
  border-left: 5px solid #a855f7;
  background: linear-gradient(to right, rgba(168, 85, 247, 0.05), white);
}

.event-time {
  font-weight: 600;
  color: #2563eb;
}

.event-content h4 {
  margin: 0 0 0.5rem 0;
  color: #1a1a1a;
}

.event-content p {
  margin: 0 0 0.5rem 0;
  color: #64748b;
}

.event-location {
  display: inline-block;
  font-size: 0.85rem;
  background: #f1f5f9;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  color: #475569;
  margin-top: 0.5rem;
}

/* Speakers Page Styles */
.speakers-section {
  padding: 5rem 0;
}

.speakers-section.alt-bg {
  background: #f8fafc;
}

.keynote-speakers {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

.keynote-speaker {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 2rem;
  padding: 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.keynote-speaker:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.keynote-speaker .speaker-image {
  width: 150px;
  height: 150px;
}

.keynote-speaker .speaker-bio {
  margin-bottom: 1.5rem;
}

.speaker-keynote {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  padding: 1rem;
  border-radius: 10px;
  border-left: 4px solid #2563eb;
}

.speaker-keynote h4 {
  margin: 0 0 0.5rem 0;
  color: #1e40af;
  font-size: 1rem;
}

.speaker-keynote p {
  margin: 0;
  font-size: 0.95rem;
  color: #475569;
}

.speakers-grid.expanded {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

/* Gallery Page Styles */
.gallery-section {
  padding: 5rem 0;
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tab-btn {
  background: #f1f5f9;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #64748b;
}

.tab-btn.active {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.gallery-tab-content {
  display: none;
}

.gallery-tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease both;
}

.gallery-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.category-btn {
  background: transparent;
  border: 1px solid #e2e8f0;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #64748b;
}

.category-btn.active {
  background: #2563eb;
  color: white;
  border-color: #2563eb;
}

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

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

.video-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.video-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.video-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 1rem;
  text-align: center;
}

.video-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.video-placeholder p {
  color: white;
  font-weight: 600;
  margin: 0 0 1rem 0;
  font-size: 1rem;
}

.video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 5px;
  font-size: 0.8rem;
}

/* FAQ Page Styles */
.faq-section {
  padding: 5rem 0;
}

.faq-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  background: #f8fafc;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f1f5f9;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #1a1a1a;
}

.toggle-icon {
  font-size: 1.5rem;
  color: #64748b;
  transition: all 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  padding: 0 1.5rem;
}

.faq-answer.active {
  max-height: 500px;
  padding: 1rem 1.5rem 1.5rem;
}

.faq-answer p {
  margin: 0 0 1rem 0;
  color: #64748b;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* Mini FAQ Section */
.mini-faq {
  padding: 5rem 0;
  background: #f8fafc;
}

.mini-faq-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.mini-faq-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.mini-faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mini-faq-item h3 {
  margin: 0 0 1rem 0;
  color: #1a1a1a;
  font-size: 1.1rem;
}

.mini-faq-item p {
  margin: 0;
  color: #64748b;
}

.view-all-faq {
  text-align: center;
}

/* Contact Page Styles */
.contact-section {
  padding: 5rem 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-methods {
  display: grid;
  gap: 2rem;
}

.contact-method {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.method-icon {
  font-size: 2rem;
}

.method-details h3 {
  margin: 0 0 1rem 0;
  color: #1a1a1a;
}

.method-details p {
  margin: 0.5rem 0;
  color: #64748b;
}

.method-details a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.method-details a:hover {
  color: #1d4ed8;
  transform: translateX(3px);
}

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

.social-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: white;
  border-radius: 50px;
  text-decoration: none;
  color: #475569;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.social-link:hover {
  background: #2563eb;
  color: white;
  border-color: #2563eb;
  transform: translateY(-3px);
}

.contact-form-container {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-form-container h3 {
  margin: 0 0 1.5rem 0;
  color: #1a1a1a;
  text-align: center;
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

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

.form-group label {
  font-weight: 500;
  color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.form-group.checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-group.checkbox input {
  margin-top: 0.25rem;
}

.form-group.checkbox label {
  font-weight: normal;
  color: #64748b;
  font-size: 0.95rem;
}

.form-success {
  text-align: center;
  padding: 3rem 1rem;
}

.form-success h3 {
  color: #2563eb;
  margin-bottom: 1rem;
}

/* Registration Page Styles */
.registration-content {
  display: flex;
  justify-content: center;
  margin: 2rem 0 4rem;
}

.registration-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 800px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.registration-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.registration-header {
  padding: 3rem;
  text-align: center;
}

.registration-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.registration-header h3 {
  margin: 0 0 2rem 0;
  color: #1a1a1a;
  font-size: 1.8rem;
}

.registration-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  text-align: left;
}

.registration-features li {
  padding: 0.75rem 0;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.registration-features li i {
  color: #2563eb;
  font-size: 1.2rem;
}

.registration-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.registration-note {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.2rem;
}

.group-registration {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
}

.group-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.group-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.benefit {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.benefit:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  font-size: 2rem;
}

.benefit span {
  color: #475569;
  text-align: center;
}

.registration-steps {
  padding: 5rem 0;
}

.steps {
  max-width: 800px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 3rem;
  left: 1.5rem;
  width: 2px;
  height: calc(100% - 1rem);
  background: #e2e8f0;
  z-index: 1;
}

.step-number {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.step-content {
  padding-top: 0.5rem;
}

.step-content h3 {
  margin: 0 0 0.5rem 0;
  color: #1a1a1a;
}

.step-content p {
  margin: 0;
  color: #64748b;
}

.testimonials {
  padding: 5rem 0;
  background: #f8fafc;
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide:first-child {
  display: block;
}

.testimonial-content {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-content::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50px;
  border-width: 20px 20px 0;
  border-style: solid;
  border-color: white transparent transparent;
}

.testimonial-content p {
  font-size: 1.1rem;
  color: #475569;
  font-style: italic;
  line-height: 1.8;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-left: 2rem;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

.author-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2563eb, #a855f7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}

.author-info h4 {
  margin: 0 0 0.25rem 0;
  color: #1a1a1a;
}

.author-info p {
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.nav-btn {
  background: white;
  border: 1px solid #e2e8f0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #64748b;
}

.nav-btn:hover {
  background: #2563eb;
  color: white;
  border-color: #2563eb;
}

.nav-indicators {
  display: flex;
  gap: 0.5rem;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e8f0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #2563eb;
  transform: scale(1.2);
}

.cta-countdown {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 1rem;
  border-radius: 15px;
  min-width: 80px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.count-number {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  display: block;
}

.count-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Confirmation Page Styles */
.confirmation-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
}

.confirmation-content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.confirmation-icon {
  width: 80px;
  height: 80px;
  background: #2563eb;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 2rem;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.confirmation-message {
  font-size: 1.2rem;
  color: #475569;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.confirmation-details {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 3rem;
  text-align: left;
}

.details-header {
  margin-bottom: 2rem;
}

.registration-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.info-label {
  font-size: 0.9rem;
  color: #64748b;
}

.info-value {
  font-weight: 600;
  color: #1a1a1a;
}

.ticket-qr {
  text-align: center;
  margin: 2rem 0;
}

.qr-placeholder {
  display: inline-block;
}

.qr-note {
  font-size: 0.9rem;
  color: #64748b;
}

.next-steps {
  margin-bottom: 3rem;
  text-align: left;
}

.steps-list {
  display: grid;
  gap: 1.5rem;
}

.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-icon {
  font-size: 1.5rem;
  background: #f1f5f9;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.additional-info {
  margin-bottom: 3rem;
}

.confirmation-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Legal Pages Styles */
.legal-content {
  padding: 5rem 0;
}

.legal-document {
  max-width: 900px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.legal-section p {
  color: #475569;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

/* Animation Utilities */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .contact-content,
  .keynote-speaker {
    grid-template-columns: 1fr;
  }

  .keynote-speaker .speaker-image {
    margin: 0 auto;
  }

  .timeline-event {
    grid-template-columns: 1fr;
  }

  .ticket-card.featured {
    transform: scale(1);
  }

  .ticket-card.featured:hover {
    transform: translateY(-10px);
  }

  .countdown-item {
    min-width: 60px;
  }

  .count-number {
    font-size: 1.5rem;
  }

  .count-label {
    font-size: 0.7rem;
  }

  .confirmation-content {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .page-header {
    padding: 120px 0 60px;
  }

  .tab-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .category-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }

  .confirmation-details {
    padding: 1.5rem;
  }

  .registration-info {
    grid-template-columns: 1fr;
  }

  .cta-countdown {
    flex-wrap: wrap;
  }
}
