:root{
  --bg1:#7359A6;
  --bg2:#F9ED32;
}
html,body{
  height:auto;
  margin:0;
}
body{
  background: linear-gradient(103deg, rgba(115, 89, 166, 1) 20%, rgba(249, 237, 50, 1) 49%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color:#111;
  display:flex;
  flex-direction:column;
  align-items:stretch;
}
h1, h2, h3 {
  color: #fff;
  text-transform: uppercase;
}
.site-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  width:100%;
  padding:1.25rem 2rem;
  box-sizing:border-box;
}
.site-header .col{
  color:rgba(255,255,255,0.95);
  font-weight:700;
}
/* left and right columns get fixed width, center grows */
.site-header .left,
.site-header .right{
  flex:0 0 220px;
}
/* Uiverse 'Foolish Shrimp' button */
.button {
  --h-button: 48px;
  --w-button: 102px;
  --round: 0.75rem;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.25s ease;
  /* brand: purple base with subtle yellow radial accent */
  background: radial-gradient(
      65.28% 65.28% at 50% 100%,
      rgba(249, 237, 50, 0.14) 0%,
      rgba(249, 237, 50, 0) 60%
    ),
    linear-gradient(0deg, #7359a6, #5e3f98);
  border-radius: var(--round);
  border: none;
  outline: none;
  padding: 21px 30px;
}
.button::before,
.button::after {
  content: "";
  position: absolute;
  inset: var(--space);
  transition: all 0.5s ease-in-out;
  border-radius: calc(var(--round) - var(--space));
  z-index: 0;
}
.button::before {
  --space: 1px;
  background: linear-gradient(
    177.95deg,
    rgba(255, 255, 255, 0.19) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}
.button::after {
  --space: 2px;
  /* subtle yellow radial highlight over the purple base */
  background: radial-gradient(
      65.28% 65.28% at 50% 100%,
      rgba(249, 237, 50, 0.12) 0%,
      rgba(249, 237, 50, 0) 60%
    ),
    linear-gradient(0deg, #7359a6, #5e3f98);
}
.button:active {
  transform: scale(0.95);
}

.fold {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  height: 1rem;
  width: 1rem;
  display: inline-block;
  transition: all 0.5s ease-in-out;
  background: radial-gradient(
    100% 75% at 55%,
    rgba(249, 237, 50, 0.9) 0%,
    rgba(249, 237, 50, 0) 100%
  );
  box-shadow: 0 0 3px black;
  border-bottom-left-radius: 0.5rem;
  border-top-right-radius: var(--round);
}
.fold::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150%;
  height: 150%;
  transform: rotate(45deg) translateX(0%) translateY(-18px);
  background-color: #e8e8e8;
  pointer-events: none;
}
.button:hover .fold {
  margin-top: -1rem;
  margin-right: -1rem;
}

.points_wrapper {
  overflow: hidden;
  width: 100%;
  height: 100%;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.points_wrapper .point {
  bottom: -10px;
  position: absolute;
  animation: floating-points infinite ease-in-out;
  pointer-events: none;
  width: 2px;
  height: 2px;
  background-color: #fff;
  border-radius: 9999px;
}
@keyframes floating-points {
  0% {
    transform: translateY(0);
  }
  85% {
    opacity: 0;
  }
  100% {
    transform: translateY(-55px);
    opacity: 0;
  }
}
.points_wrapper .point:nth-child(1) {
  left: 10%;
  opacity: 1;
  animation-duration: 2.35s;
  animation-delay: 0.2s;
}
.points_wrapper .point:nth-child(2) {
  left: 30%;
  opacity: 0.7;
  animation-duration: 2.5s;
  animation-delay: 0.5s;
}
.points_wrapper .point:nth-child(3) {
  left: 25%;
  opacity: 0.8;
  animation-duration: 2.2s;
  animation-delay: 0.1s;
}
.points_wrapper .point:nth-child(4) {
  left: 44%;
  opacity: 0.6;
  animation-duration: 2.05s;
}
.points_wrapper .point:nth-child(5) {
  left: 50%;
  opacity: 1;
  animation-duration: 1.9s;
}
.points_wrapper .point:nth-child(6) {
  left: 75%;
  opacity: 0.5;
  animation-duration: 1.5s;
  animation-delay: 1.5s;
}
.points_wrapper .point:nth-child(7) {
  left: 88%;
  opacity: 0.9;
  animation-duration: 2.2s;
  animation-delay: 0.2s;
}
.points_wrapper .point:nth-child(8) {
  left: 58%;
  opacity: 0.8;
  animation-duration: 2.25s;
  animation-delay: 0.2s;
}
.points_wrapper .point:nth-child(9) {
  left: 98%;
  opacity: 0.6;
  animation-duration: 2.6s;
  animation-delay: 0.1s;
}
.points_wrapper .point:nth-child(10) {
  left: 65%;
  opacity: 1;
  animation-duration: 2.5s;
  animation-delay: 0.2s;
}

.inner {
  z-index: 2;
  gap: 6px;
  position: relative;
  width: 100%;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.5;
  transition: color 0.2s ease-in-out;
}

.inner svg.icon {
  width: 18px;
  height: 18px;
  transition: fill 0.1s linear;
}

.button:focus svg.icon {
  fill: white;
}
.button:hover svg.icon {
  fill: transparent;
  animation:
    dasharray 1s linear forwards,
    filled 0.1s linear forwards 0.95s;
}
@keyframes dasharray {
  from {
    stroke-dasharray: 0 0 0 0;
  }
  to {
    stroke-dasharray: 68 68 0 0;
  }
}
@keyframes filled {
  to {
    fill: white;
  }
}


.badge{
  display:inline-block;
  padding:0.35rem 0.9rem;
  background:transparent;
  border:3px solid #F9ED32;
  color:#F9ED32;
  border-radius:40px;
  font-weight:800;
  letter-spacing:0.6px;
}
.center{
  text-align: center;
  margin: 0 auto;
}
h1{
  margin:0 0 0.5rem 0;
  color:#fff;
}
p{
  margin:0 0 1.25rem 0;
  color:rgba(255,255,255,0.9);
}
.btn{
  display:inline-block;
  padding:0.6rem 1rem;
  background:rgba(0,0,0,0.15);
  color:#fff;
  text-decoration:none;
  border-radius:8px;
}

/* Pricing table styles */
.pricing-table{
  max-width: 1200px;
  margin:2rem auto 4rem auto;
  padding:1rem;
  box-sizing:border-box;
}
.pricing-table .table-wrap{
  background:rgba(0,0,0,0.1);
  color:#fff;
  border:3px solid rgba(255,255,255,0.85);
  border-radius:18px;
  overflow:hidden;
}
.pricing-table .table-head{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr 180px;
  gap:0;
  padding:0.6rem 1rem;
  text-align:center;
  font-size:0.85rem;
  text-transform:uppercase;
  letter-spacing:1px;
  border-bottom:3px solid rgba(255,255,255,0.85);
}
.pricing-table .row{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr 180px;
  align-items:center;
  gap:0;
  padding:1.2rem 1rem;
  border-bottom:1px solid rgba(255,255,255,0.12);
}
.pricing-table .row:last-child{border-bottom:none}
.pricing-table .cell{
  padding:0.2rem 1rem;
}
.pricing-table .title .label{
  font-size:1.4rem;
  font-weight:800;
}
.pricing-table .title .sub{
  font-size:0.9rem;
  opacity:0.85;
  margin-top:0.35rem;
}
.pricing-table .price{
  font-size:3rem;
  font-weight:900;
  text-align:center;
}
.pricing-table .limit{ 
  text-align:center;
  font-size:2.4rem;
  font-weight:900;
}
.pricing-table .small{
  display:block;
  font-size:0.7rem;
  font-weight:700;
  letter-spacing:1px;
}

.logo {
    max-width: 500px;
}

.logo-cta {
    margin-top: 1.5rem;
}

.mobile-list {display:none;}

@media (max-width:900px){
  .pricing-table .row{grid-template-columns: 1fr}
  .logo{height:96px}
}

/* Mobile optimizations */
@media (max-width:1024px){
  .logo{height:110px}
  .button{padding:8px 12px;} 
  .inner{font-size:18px}

  /* hide desktop grid layout and show mobile list */

  .pricing-table .table-head, .pricing-table .row .cell, .pricing-table .row .cell.limit{
    display:none;
  }
  .pricing-table .row .cell.title{padding:0}
  .pricing-table .row > .mobile-list{display:block !important;padding:12px 16px;background:transparent;color:#fff}
  .mobile-list .m-title{font-weight:800;font-size:1.05rem}
  .mobile-list .m-sub{opacity:0.9;margin-bottom:0.5rem}
  .mobile-list .m-line{margin:0.35rem 0}
  .mobile-sep{border:none;border-top:1px solid rgba(255,255,255,0.08);margin:12px 0}
}

/* hide mobile-list by default on desktop (kept earlier in file if needed) */


/* Button consolidated: use `.button` styles. */
/* Legacy `.shadcn-btn` selector kept for compatibility (no styles). */
.shadcn-btn{}


/* Footnote styling for prices */
.price-foot{
  display: block;
  font-size:0.62rem;
  vertical-align:super;
  margin-left:3px;
  color:rgba(255,255,255,0.85);
}
.footnote{
  max-width:1200px;
  margin:0.5rem auto 2rem auto;
  color:rgba(255,255,255,0.78);
  font-size:0.8rem;
  text-align:left;
  padding:0 1rem;
}

/* Hotel info cards below pricing */
.hotel-info{margin:0 auto 3rem auto;max-width:1200px;padding:1rem}
.hotel-wrap{display:grid;grid-template-columns:1fr 1fr;gap:1.25rem;align-items:start}
.hotel{background:rgba(0,0,0,0.06);padding:1rem;border-radius:12px;    border: 3px solid rgba(255, 255, 255, 0.85);;text-align:left}
.hotel-thumb{width:100%;height:250px;object-fit:cover;border-radius:8px;display:block;margin-bottom:0.75rem}
.hotel h3{margin:0 0 0.35rem 0;color:#fff}
.hotel .address{margin:0 0 0.5rem 0;color:rgba(255,255,255,0.85);font-size:0.95rem}
.hotel a{color:#7359A6;font-weight:700;text-decoration:none}

@media (max-width:700px){
  .hotel-wrap{grid-template-columns:1fr}
  .hotel-thumb{height:160px}
}


