/* ============ RESET / GLOBAL ============ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: #fff4c2;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, h4 {
  font-weight: 500;
  margin-bottom: 1rem;
}
/* ============ HEADER / NAVBAR ============ */
.header {
  background-color: #fff4c2;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 99;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: relative;
}

.logo img {
  max-height: 80px;
}

/* Navigation Links */
.nav-menu .nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  font-weight: bold;
  position: relative;
  padding: 0.5rem;
  color: #333;
  text-decoration: none;
}

.nav-links li a:hover {
  color: #101010;
}

/* Burger Menu Icon */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 3px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    display: none;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding: 1rem 0;
  }
  
  .burger {
    display: flex;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    display: none;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding: 1rem 0;
  }
  
  .burger {
    display: flex;
  }
}

/* -------------------- HERO SECTION -------------------- */
.hero {
  position: relative;
  height: 40vh;
  overflow: hidden;
}

/* Common slide styles */
.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1s ease, transform 1s ease;
}

.slide.active {
  opacity: 1;
  z-index: 2;
  transform: scale(1.05);
}

.slide.active {
  opacity: 1;
  z-index: 1;
  transform: scale(1.05);
}

.slide.fade-out {
  opacity: 0;
  transform: scale(1.2);
  z-index: 2;
}

/* Dark overlay to dim background */
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* adjust darkness here */
  z-index: 2;
}

/* Center circular image */
.hero-center-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.hero-center-image img {
  width: 180px;
  height: 180px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
  object-fit: cover;
}

.slide.fade-out {
  opacity: 0;
  transform: scale(1.2);
  z-index: 3;
}

/* Gradient overlay for improved text contrast */
.hero-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.7));
  z-index: -1;
}

/* Slide 1: Content on far bottom left */
.slide.slide-left-bottom .hero-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  margin: 0; 
}

/* Slide 2: Content on bottom right */
.slide.slide-right-bottom .hero-overlay {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 30px 30px 30px 0;
}

/* Hero content styling */
.hero-content {
  z-index: 4;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
}

/* Heading styling */
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 0.75rem;
  padding: 15px 25px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Paragraph styling */
.hero-content p {
  font-size: 1.2rem;
  margin: 0;
  max-width: 500px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  color: #fff;
  line-height: 1.5;
}

/* Sections */
.section {
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.section-title {
  font-size: 2.2rem;
  margin-bottom: .5rem;
  background: linear-gradient(90deg, #ffd310, #1c2751);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: #000000;
  margin-bottom: 3rem;
}

/* Highlights Grid */
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr; /* Single column on mobile */
  gap: 1.5rem; /* Reduced gap on mobile */
}

/* Tablet and larger screens */
@media (min-width: 768px) {
  .highlights-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
  }
}

.highlight-card {
  background: #2a2d37;
  padding: 1.5rem; /* Reduced padding on mobile */
  border-radius: 16px; /* Slightly less rounded on mobile */
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4); /* Softer shadow on mobile */
  transition: transform .4s ease, box-shadow .4s ease;
}

/* Desktop card styles */
@media (min-width: 768px) {
  .highlight-card {
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
  }
}

.highlight-card:hover {
  transform: translateY(-8px) scale(1.02); /* Less aggressive transform on mobile */
  box-shadow: 0 12px 30px rgba(123, 107, 43, 0.8); /* Adjusted shadow */
}

/* Desktop hover effects */
@media (min-width: 768px) {
  .highlight-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 15px 35px rgba(123, 107, 43, 0.992);
  }
}

.icon-circle {
  width: 60px; /* Smaller on mobile */
  height: 60px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #1c2751, #ffe7a3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem; /* Smaller icon on mobile */
  color: #ffd310;
  box-shadow: 0 0 15px rgba(125, 110, 70, 0.5); /* Softer glow on mobile */
}

/* Desktop icon styles */
@media (min-width: 768px) {
  .icon-circle {
    width: 70px;
    height: 70px;
    font-size: 2rem;
    box-shadow: 0 0 20px rgba(125, 110, 70, 0.6);
  }
}

/* Timeline Schedule */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  max-width: 700px;
  margin: auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(90deg, #272a42, #ffd76a);
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
}
.timeline-item .time {
  flex: 0 0 100px;
  font-weight: bold;
  color: #e63946;
  text-align: right;
}
.timeline-item .details {
  background: #fff;
  padding: 1rem 1.5rem;
  border-radius: 15px;
  text-align: left;
  flex: 1;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform .3s;
}
.timeline-item .details:hover {
  transform: scale(1.03);
}

/* Masonry Gallery */
.masonry-gallery {
  column-count: 3;
  column-gap: 1rem;
}
.masonry-gallery img {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 15px;
  display: block;
  transition: transform .4s ease, box-shadow .4s ease;
}
.masonry-gallery img:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Mobile */
@media (max-width: 768px) {
  .masonry-gallery {
    column-count: 2;
  }
}
@media (max-width: 500px) {
  .masonry-gallery {
    column-count: 1;
  }
}

/* ticket */
.ticket {
  background: url('../img/d4.jpg') center/cover no-repeat;
  height: 50vh; /* default for mobile */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

/* Desktop & larger screens */
@media (min-width: 768px) {
  .ticket {
    height: 50vh;
  }
}

.ticket::after {
  content: ""; 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%;
  background: rgba(0,0,0,0.55);
}

.ticket-content {
  position: relative; 
  z-index: 1;
  max-width: 700px; 
  padding: 1rem;
}

.ticket-content h1 {
  font-size: 1.8rem; /* Smaller on mobile */
  font-weight: 700; 
  color: var(--primary);
  margin-bottom: 0.5rem; /* Reduced margin */
}

/* Desktop heading size */
@media (min-width: 768px) {
  .ticket-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}

.ticket-content p {
  margin: 0.5rem 0 1rem 0; /* Reduced top/bottom margins */
  font-size: 1rem; /* Slightly smaller on mobile */
  color: #eee;
}

/* Desktop paragraph size */
@media (min-width: 768px) {
  .ticket-content p {
    margin: 1rem 0;
    font-size: 1.1rem;
  }
}

.ticket-content .btn {
  display: inline-block;
  background: linear-gradient(90deg, #272a42, #ffd76a);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.ticket-content .btn:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 25px rgba(0,0,0,0.4);
  color: var(--secondary);
}

.countdown {
  display: flex;
  gap: 8px; /* Reduced gap on mobile */
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  margin: 15px 0; /* Reduced margins */
}

/* Desktop countdown spacing */
@media (min-width: 768px) {
  .countdown {
    gap: 15px;
    margin: 20px 0;
  }
}

.countdown div {
  background: rgba(0,0,0,0.6);
  padding: 8px 12px; /* Smaller padding on mobile */
  border-radius: 8px; /* Slightly less rounded */
  text-align: center;
  min-width: 50px; /* Smaller minimum width */
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Desktop countdown boxes */
@media (min-width: 768px) {
  .countdown div {
    padding: 15px 20px;
    border-radius: 10px;
    min-width: 70px;
  }
}

.countdown span {
  font-size: 1.4rem; /* Smaller on mobile */
  font-weight: bold;
  color: #ffce00;
  display: block;
}

/* Desktop countdown numbers */
@media (min-width: 768px) {
  .countdown span {
    font-size: 2rem;
  }
}

.countdown small {
  font-size: 0.7rem; /* Smaller on mobile */
  color: #fff;
  text-transform: uppercase;
}

/* Desktop countdown labels */
@media (min-width: 768px) {
  .countdown small {
    font-size: 0.9rem;
  }
}

/**************************************/
/* ========== MINI SHOP SECTION ========== */
  .ales-mini-shop {
    /* Beautiful gradient or pattern background */
    background: #eee;
    
  }

  .ales-mini-shop h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .ales-mini-shop p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 2rem;
  }

  /* ========== PRODUCT VIEW CONTAINER ========== */
  .ales-product-view {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    background: #fff4c2;
    max-width: 100%;
    margin: 0 auto;
    padding: 2rem 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  }

  /* ========== CAROUSEL SECTION FOR IMAGES ========== */
  .ales-product-img {
    position: relative;
    flex: 1 1 300px;
    max-width: 500px;
    width: 100%; /* Ensure full width on mobile */
    margin: auto;
    display: flex; /* Added for better centering */
    justify-content: center; /* Center horizontally */
  }

  .ales-carousel {
    position: relative;
    width: 100%;
    height: 400px; /* adjust as needed */
    perspective: 1000px; /* for 3D transforms */
    overflow: hidden;
    border-radius: 0.75rem;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/pro-bg1.jpeg);
    background-size: cover;
    display: flex; /* Added for better centering */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
  }

  .ales-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: flex; /* Added for better centering */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
  }

  .ales-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed to contain to prevent cropping */
    object-position: center;
    max-height: 90%; /* Allow some breathing room */
    max-width: 90%; /* Allow some breathing room */
  }

  /* The active slide is shown with rotation/fade effect */
  .ales-carousel-slide.active {
    z-index: 10;
    opacity: 1;
    transform: rotateY(0) scale(1);
  }

  /* Optional: If you want a slight tilt effect on the incoming/outgoing slides */
  .ales-carousel-slide.next {
    transform: rotateY(90deg) scale(0.9);
  }
  .ales-carousel-slide.prev {
    transform: rotateY(-90deg) scale(0.9);
  }

  /* ========== CAROUSEL ARROW BUTTONS (IMAGES) ========== */
  .ales-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(50, 50, 50, 0.7);
    color: #fff;
    border: none;
    font-size: 1.25rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    outline: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: background 0.3s;
  }

  .ales-carousel-btn:hover {
    background: rgb(23, 23, 23);
  }

  .ales-carousel-prev {
    left: 10px;
  }

  .ales-carousel-next {
    right: 10px;
  }

  /* ========== PRODUCT INFO STYLING ========== */
  .ales-product-info {
    flex: 1 1 300px;
    max-width: 400px;
    margin: auto;
    text-align: center;
  }

  /* ========== MEDIA QUERIES FOR RESPONSIVENESS ========== */
  @media (max-width: 768px) {
    .ales-product-view {
      padding: 2rem 1rem;
      border-radius: 1.5rem;
    }
    
    .ales-product-img {
      flex: 1 1 100%;
      max-width: 100%;
    }
    
    .ales-carousel {
      height: 350px;
    }
    
    .ales-carousel-btn {
      width: 35px;
      height: 35px;
      font-size: 1rem;
    }
  }

  /* For very small screens */
  @media (max-width: 480px) {
    .ales-product-view {
      padding: 1.5rem 0.75rem;
      border-radius: 1rem;
    }
    
    .ales-carousel {
      height: 320px; /* Increased height on mobile */
      margin: 0 auto; /* Center the carousel */
      width: 95%; /* Slightly less than full width to avoid overflow */
    }

    .ales-carousel-slide img {
      max-height: 95%; /* Larger image on mobile */
      max-width: 95%; /* Larger image on mobile */
    }
    
    .ales-carousel-btn {
      width: 30px;
      height: 30px;
  }
}

  .ales-product-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #000000;
    text-transform: uppercase;
  }

  .ales-product-info p {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #444;
  }

  /* ========== ARROWS FOR SWITCHING PRODUCTS ========== */
  .ales-product-navigation {
    margin-top: 2rem;
  }

  .ales-btn-nav {
    background-color: #000000;
    color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin: 0 1rem;
    border: none;
    outline: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: background 0.3s;
  }

  .ales-btn-nav:hover {
    background-color: #1d1d1d;
  }

  .ales-shop-header {
  text-align: center;
  margin-bottom: 2rem;
}

.ales-shop-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent); /* or gradient */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ales-shop-header h2 i {
  color: var(--primary);
  font-size: 2rem;
}

.ales-shop-header p {
  font-size: 1.2rem;
  color: #444;
  margin: 0.5rem auto 0;
  line-height: 1.5;
}

.ales-shop-header {
  text-align: center;
  margin-bottom: 2rem;
}

/* Logos side by side */
.ales-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.ales-logos img {
  max-width: 220px;
  height: auto;
  object-fit: contain;
}

.ales-logos span {
  font-size: 1.6rem;
  font-weight: 1000;
  color: var(--accent);
}

/* Responsive shrink on smaller devices */
@media (max-width: 600px) {
  .ales-logos img {
    max-width: 120px;
  }
  .ales-logos span {
    font-size: 1.2rem;
  }
}

/* ============ FOOTER ============ */
.footer {
  background-color: #000;
  color: #fff;
  padding: 3rem 1rem;
  margin-top: 3rem;
}

.footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.footer a:hover {
  color: #007bff;
}
.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: start;
}
/* Logo Styles */
.footer-logo {
  grid-column: 1 / -1;
}
.footer-logo img {
  max-width: 100px;
}
/* Column Titles and Lists */
.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}
.footer-column ul {
  list-style: none;
  padding: 0;
}
.footer-column li {
  margin-bottom: 0.5rem;
}
/* WhatsApp Button Styles */
.whatsapp-btn {
  background-color: #25D366;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  margin-top: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
}
.whatsapp-btn i {
  margin-right: 0.5rem;
}
/* Social Icons Styles */
.social-icons {
  margin-top: 1rem;
}
.social-icons a {
  color: #fff;
  margin-right: 0.5rem;
  font-size: 1.2rem;
  display: inline-block;
}
/* Footer Bottom */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  border-top: 1px solid #333;
  padding-top: 1rem;
}
.footer-bottom p {
  margin-bottom: 0.5rem;
}
/* App Store Links */
.btn-app {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 0.5rem 1rem;
  margin-right: 0.5rem;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: background-color 0.3s, border-color 0.3s;
}
.btn-app i {
  margin-right: 0.5rem;
}
.btn-app:hover {
  background-color: #252526;
  border-color: #000000;
}
.store-links img {
  width: 100px;
}

.ales-product-order {
  margin-top: 1.5rem;
  text-align: center;
}

.ales-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(90deg, #272a42, #ffd76a);
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: 50px; /* curved pill shape */
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.ales-order-btn i {
  font-size: 1.2rem;
}

.ales-order-btn:hover {
  background: #000000;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}


/* ============ MEDIA QUERIES (EXTRA RESPONSIVE FIXES) ============ */

/* Smaller tablets / large phones */
@media (max-width: 768px) {
  /* Reduce big gaps in Our Story */
  .story-flex {
    flex-direction: column;
    gap: 2rem;
  }

  /* Fix large gap in App Download section */
  .app-download-content {
    gap: 2rem; /* Instead of 30rem on smaller screens */
  }

  /* Make the hero heading a bit smaller */
  .hero-content h1 {
    font-size: 2.2rem; /* Instead of 3rem */
  }
}

/* Very small screens */
@media (max-width: 480px) {
  /* Further reduce hero height if it feels too large */
  .hero {
    height: 50vh;
  }

  /* Make the heading scale well on tiny devices */
  .hero-content h1 {
    font-size: 1.8rem;
    padding: 10px 15px;
  }

  /* Ensure text is still readable */
  .hero-content p {
    font-size: 1rem;
    padding: 10px 15px;
  }

  /* Tweak the Our Story image & slides */
  .story-flex {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  /* Tighten up the download section further */
  .app-download-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  /* Tab links stack if needed */
  .tab-links {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}

.ales-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.ales-modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
}

.ales-close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
}
