* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;

}

/*  -webkit-user-select: none;
  user-select: none; */
body {
  font-family: "Montserrat", "Arial", sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

body.hero-intro {
  overflow: hidden;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
  position: relative;
  padding: 60px 20px;
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

body.hero-intro .hero {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

body.hero-revealed .hero {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  min-height: 60px;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

body.hero-revealed .logo-container {
  transform: scale(0.55);
  margin: 0;
}

body.hero-revealed .logo-box {
  padding: 8px 18px;
  margin-bottom: 2px;
  border: 2px solid #000;
}

body.hero-revealed .logo-text {
  font-size: 26px;
  letter-spacing: 4px;
}

body.hero-revealed .logo-event {
  padding: 0 12px;
}

body.hero-revealed .logo-arsenal {
  padding: 0 12px;
}

body.hero-revealed .tagline {
  font-size: 15px;
  letter-spacing: 3px;
  margin-top: 3px;
  font-weight: 400;
}

body.hero-revealed .scroll-indicator {
  display: none;
}

body.hero-revealed {
  padding-top: 60px;
}

.about-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease 0.5s, transform 1s ease 0.5s;
}

body.hero-revealed .about-section {
  opacity: 1;
  transform: translateY(0);
}
.logo-container {
  text-align: center;
  animation: fadeIn 1s ease-in;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.logo-box {
  display: inline-flex;
  background: #fff;
  padding: 20px 40px;
  margin-bottom: 15px;
  border: 3px solid #000;
}
.logo-text {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 8px;
  color: #000;
}
.logo-event {
  background: #fff;
  color: #000;
  padding: 0 15px;
}
.logo-arsenal {
  background: #000;
  color: #fff;
  padding: 0 15px;
}
.tagline {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 4px;
  margin-top: 10px;
}
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.scroll-indicator:hover {
  border-color: #fff;
}
.scroll-arrow {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  animation: scrollDown 2s infinite;
}
@keyframes scrollDown {
  0% {
    opacity: 1;
    top: 8px;
  }
  50% {
    opacity: 0.5;
    top: 28px;
  }
  100% {
    opacity: 0;
    top: 28px;
  }
}
@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.about-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
  position: relative;
  overflow: hidden;
}

.about-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 85%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.35;
  filter: blur(2px);
  display: none;
  border-radius: 50px;
}

.about-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse 50% 60% at center,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.65) 50%,
    rgba(0, 0, 0, 0.9) 80%,
    #000 100%
  );
  z-index: 1;
  pointer-events: none;
  display: none;
}

@media (min-width: 769px) {
  .about-video-bg,
  .about-video-overlay {
    display: block;
  }
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-title {
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #fff 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease;
}

.about-subtitle {
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 60px;
  color: rgba(255, 255, 255, 0.85);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.8s ease 0.4s both;
}

.feature-card:nth-child(2) {
  animation-delay: 0.5s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.6s;
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(212, 175, 55, 0.05);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.1) 0%,
    rgba(212, 175, 55, 0.05) 100%
  );
  border: 2px solid rgba(212, 175, 55, 0.2);
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  border-color: rgba(212, 175, 55, 0.5);
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.2) 0%,
    rgba(212, 175, 55, 0.1) 100%
  );
}

.feature-icon svg {
  width: 40px;
  height: 40px;
  color: #d4af37;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon svg {
  color: #f4d03f;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
  color: #fff;
}

.feature-description {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.about-cta {
  text-align: center;
  padding: 50px 20px;
  animation: fadeInUp 0.8s ease 0.7s both;
}

.cta-text {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-button {
  display: inline-block;
  padding: 18px 45px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #000;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  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, height 0.6s;
}

.cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.cta-button:active {
  transform: translateY(-1px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 20px;
  }

  .about-title {
    font-size: 32px;
  }

  .about-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .about-features {
    gap: 25px;
  }

  .feature-card {
    padding: 30px 20px;
  }

  .cta-text {
    font-size: 18px;
  }

  .cta-button {
    padding: 15px 35px;
    font-size: 16px;
  }
}

.pricing-section {
  padding: 40px 20px;
  background: #000;
  min-height: auto;
}
.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: 4px;
}
.mobile-thumbnails {
  display: none;
  gap: 16px;
  padding: 0 20px 30px;
  justify-content: center;
  flex-wrap: nowrap;
  overflow: hidden;
  pointer-events: none;
}
.mobile-thumbnails::-webkit-scrollbar {
  display: none;
}
.mobile-thumbnail {
  flex: 0 0 auto;
  width: 120px;
  height: 180px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), 0 6px 15px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  background: rgba(20, 20, 30, 0.6);
  pointer-events: auto;
}
.mobile-thumbnail::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.6) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: -1;
  filter: blur(20px);
  transition: opacity 0.4s ease;
}
.mobile-thumbnail.active {
  width: 180px;
  border-color: var(--gold);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), 0 6px 15px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.mobile-thumbnail.active::before {
  opacity: 1;
}
.mobile-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.mobile-thumbnail-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 10px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.6) 60%,
    transparent 100%
  );
}
.mobile-thumbnail-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  line-height: 1.3;
}
.carousel-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  padding: 0 60px;
}
.carousel {
  overflow: hidden;
  position: relative;
  border-radius: 15px;
  cursor: default;
  user-select: none;
}
.carousel.dragging {
  cursor: default;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.carousel-track.no-transition {
  transition: none;
}
.carousel-slide {
  min-width: 100%;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
}
.price-card {
  background: #0a0a0a;
  border: 2px solid #333;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: auto;
  width: 100%;
  min-height: 0;
}
.card-image-section {
  position: relative;
  width: 100%;
  height: 120px;
  overflow: hidden;
  flex-shrink: 0;
}
.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.price-card:hover .card-image {
  transform: scale(1.02);
}
.card-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-image-text {
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
}
.card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-title {
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 4px;
  margin-bottom: 20px;
  text-transform: uppercase;
  border-bottom: 2px solid #333;
  padding-bottom: 10px;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 10px;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}
.packages-grid-two-rows {
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 10px;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}
.packages-grid-special {
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 10px;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}
.packages-grid-special .package:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}
.packages-grid-special .package:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}
.packages-grid-special .package:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}
.packages-grid-special .package:nth-child(4) {
  grid-column: 4;
  grid-row: 1;
}
.packages-grid-special .package-large {
  grid-column: 1 / 3;
  grid-row: 2;
}
.packages-grid-center {
  grid-template-columns: repeat(4, 1fr);
  max-width: 100%;
  margin-top: 10px;
  justify-content: center;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}
.package {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  transition: none;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}
.package:active {
  transform: none;
  opacity: 1;
}
.package-large {
  grid-column: span 2;
}
.package:hover {
  background: #1a1a1a;
  border-color: #333;
  transform: none;
  box-shadow: none;
}
.package-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffd93d;
  padding: 8px 0;
  border-bottom: 2px solid #ffd93d;
  text-shadow: 0 0 10px rgba(255, 217, 61, 0.3);
}
.package-items {
  list-style: none;
  margin: 10px 0;
  text-align: left;
}
.package-items li {
  padding: 6px 0 6px 18px;
  font-size: 11px;
  border-bottom: 1px solid #2a2a2a;
  position: relative;
  color: #ccc;
  transition: color 0.2s ease;
}
.package-items li:hover {
  color: #ffd93d;
}
.package-items li::before {
  content: "✓";
  position: absolute;
  left: 2px;
  color: #ffd93d;
  font-weight: bold;
}
.package-items li:last-child {
  border-bottom: none;
}
.package-price {
  font-size: 18px;
  font-weight: 900;
  color: #ffd93d;
  margin-top: 10px;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 217, 61, 0.2);
}
.package-note {
  font-size: 9px;
  color: #888;
  margin-top: 6px;
  line-height: 1.3;
  font-style: italic;
}
.note {
  text-align: center;
  font-size: 10px;
  color: #888;
  margin-top: 15px;
  font-style: italic;
  padding: 8px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}
.carousel-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 10;
}
.carousel-button {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 2px solid #333;
  background: #1a1a1a;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
}
.carousel-button-left {
  left: 20px;
}
.carousel-button-right {
  right: 20px;
}
.carousel-button:hover:not(:disabled) {
  background: #fff;
  color: #000;
  border-color: #fff;
  transform: scale(1.1);
}
.carousel-button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  border-color: #222;
}
.carousel-counter-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
.carousel-counter {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #444;
  cursor: pointer;
  transition: background 0.3s ease;
}
.dot:hover {
  background: #888;
}
.dot.active {
  background: #fff;
  width: 30px;
  border-radius: 5px;
  transition: width 0.3s ease, background 0.3s ease;
}

.reviews-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
  position: relative;
}

.reviews-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.review-message {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  animation: slideIn 0.6s ease;
}

.review-message-left {
  flex-direction: row;
  justify-content: flex-start;
}

.review-message-right {
  flex-direction: row-reverse;
  justify-content: flex-start;
}

.review-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.review-avatar svg {
  width: 24px;
  height: 24px;
  color: #000;
}

.review-bubble {
  max-width: 70%;
  padding: 16px 20px;
  border-radius: 20px;
  position: relative;
  animation: bubbleIn 0.4s ease;
}

.review-message-left .review-bubble {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px 20px 20px 4px;
}

.review-message-right .review-bubble {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.15) 0%,
    rgba(212, 175, 55, 0.08) 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px 20px 4px 20px;
}

.review-text {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 8px 0;
  word-wrap: break-word;
}

.review-time {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

.review-message-right .review-time {
  text-align: right;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bubbleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 60px 20px;
  }

  .review-bubble {
    max-width: 85%;
  }

  .review-avatar {
    width: 38px;
    height: 38px;
  }

  .review-avatar svg {
    width: 20px;
    height: 20px;
  }

  .review-text {
    font-size: 14px;
  }
}

footer {
  padding: 30px 20px;
  text-align: center;
  background: #000;
  border-top: 1px solid #333;
}
footer p {
  font-size: 13px;
  color: #888;
  letter-spacing: 2px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-socials {
  display: flex;
  gap: 10px;
  align-items: center;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #fff;
  border: 1px solid #333;
  border-radius: 50%;
  background: transparent;
  transition: all 0.18s ease;
  text-decoration: none;
}
.social-link:focus {
  outline: 2px solid rgba(255, 217, 61, 0.9);
  outline-offset: 2px;
}
.social-link:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
  transform: scale(1.06);
}
.social-icon {
  width: 18px;
  height: 18px;
  display: block;
}
@media (max-width: 1024px) {
  .carousel-container {
    padding: 0 80px;
  }
  .carousel-button-left {
    left: 15px;
  }
  .carousel-button-right {
    right: 15px;
  }
  .card-image-section {
    height: 130px;
  }
  .card-content {
    padding: 20px;
  }
  .card-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .package {
    padding: 12px;
  }
  .package-name {
    font-size: 16px;
  }
  .package-items li {
    font-size: 12px;
  }
  .package-price {
    font-size: 22px;
  }
  .package-large {
    grid-column: span 1;
  }
  .packages-grid-special {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
  .packages-grid-special .package-large {
    order: 99;
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .packages-grid-center {
    max-width: none;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    padding: 40px 20px;
  }
  .scroll-indicator {
    bottom: 30px;
    width: 26px;
    height: 44px;
  }
  .scroll-arrow {
    width: 5px;
    height: 5px;
  }
  .logo-text {
    font-size: 28px;
    letter-spacing: 5px;
  }
  .logo-box {
    padding: 15px 30px;
  }
  .tagline {
    font-size: 16px;
    letter-spacing: 3px;
  }
  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .pricing-section {
    padding: 40px 0;
  }
  .card-title {
    font-size: 22px;
    letter-spacing: 3px;
    margin-bottom: 18px;
  }
  .carousel-container {
    padding: 0;
    max-width: 100%;
  }
  .carousel-slide {
    min-width: 100%;
    padding: 0 12px;
  }
  .card-image-section {
    display: none;
  }
  .card-title {
    display: none;
  }
  .price-card {
    background: transparent;
    border: none;
  }
  .card-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: auto;
  }
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
  }
  .packages-grid-two-rows {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
  }
  .package {
    padding: 10px;
    aspect-ratio: 1 / 1.1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
  }
  .package:hover {
    background: #1a1a1a;
    border-color: #333;
    transform: none;
    box-shadow: none;
  }
  .package-name {
    font-size: 14px;
    margin-bottom: 6px;
    flex-shrink: 0;
    line-height: 1.1;
  }
  .package-items {
    margin: 4px 0 !important;
    flex: 1;
    min-height: 0;
    overflow: hidden;
  }
  .package-items li {
    font-size: 10px;
    padding: 2px 0 2px 12px;
    border-bottom: 1px solid #2a2a2a;
    line-height: 1.25;
  }
  .package-price {
    font-size: 18px;
    margin-top: 6px;
    flex-shrink: 0;
  }
  .package-large {
    grid-column: 1 / -1;
    aspect-ratio: auto;
    min-height: auto;
  }
  .packages-grid-special {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    width: 100%;
  }
  .packages-grid-special .package {
    aspect-ratio: auto;
    min-height: auto;
    padding: 12px;
  }
  .packages-grid-special .package-name {
    font-size: 14px;
    margin-bottom: 6px;
  }
  .packages-grid-special .package-items {
    margin: 4px 0 !important;
  }
  .packages-grid-special .package-items li {
    font-size: 11px;
    padding: 2px 0 2px 12px;
    line-height: 1.3;
  }
  .packages-grid-special .package-price {
    font-size: 18px;
    margin-top: 6px;
  }
  .packages-grid-special .package:nth-child(1) {
    grid-column: 1;
    grid-row: auto;
  }
  .packages-grid-special .package:nth-child(2) {
    grid-column: 2;
    grid-row: auto;
  }
  .packages-grid-special .package:nth-child(3) {
    grid-column: 1;
    grid-row: auto;
  }
  .packages-grid-special .package:nth-child(4) {
    grid-column: 2;
    grid-row: auto;
  }
  .packages-grid-special .package-large {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: auto;
  }
  .packages-grid-center {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
    max-width: none;
  }
  .packages-grid-center .package {
    aspect-ratio: 1 / 1.1;
  }
  .packages-grid-center .package:nth-child(3) {
    grid-column: 1 / -1;
    aspect-ratio: auto;
  }
  .note {
    margin-top: 15px;
    padding: 10px;
    flex-shrink: 0;
  }
  .mobile-thumbnails {
    display: flex;
    width: 100%;
    margin: 0 0 24px;
    padding: 0 16px;
    gap: 16px;
  }
  .carousel-nav {
    display: none;
  }
  .carousel-dots {
    display: none;
  }
}
@media (max-width: 480px) {
  .hero {
    min-height: 100vh;
    padding: 30px 20px;
  }
  .scroll-indicator {
    bottom: 25px;
    width: 24px;
    height: 40px;
  }
  .scroll-arrow {
    width: 4px;
    height: 4px;
  }
  .logo-text {
    font-size: 22px;
    letter-spacing: 4px;
  }
  .logo-box {
    padding: 12px 25px;
  }
  .tagline {
    font-size: 14px;
    letter-spacing: 2px;
  }
  .section-title {
    font-size: 22px;
  }
  .card-title {
    font-size: 18px;
  }
  .card-image-section {
    height: 140px;
  }
  .card-content {
    padding: 0;
    min-height: auto;
  }
  .packages-grid,
  .packages-grid-two-rows,
  .packages-grid-special,
  .packages-grid-center {
    gap: 8px;
  }
  .packages-grid-special {
    gap: 6px;
  }
  .package {
    padding: 10px;
    aspect-ratio: 1 / 1.2;
  }
  .package-name {
    font-size: 13px;
  }
  .package-items li {
    font-size: 9.5px;
  }
  .package-price {
    font-size: 16px;
  }
  .packages-grid-special .package {
    padding: 10px;
  }
  .packages-grid-special .package-name {
    font-size: 13px;
    margin-bottom: 5px;
  }
  .packages-grid-special .package-items li {
    font-size: 10px;
    padding: 2px 0 2px 10px;
  }
  .packages-grid-special .package-price {
    font-size: 17px;
    margin-top: 5px;
  }
  .carousel-container {
    padding: 0;
  }
  .carousel-slide {
    padding: 0 15px;
  }
  .mobile-thumbnail {
    width: 100px;
    height: 150px;
    border-radius: 18px;
  }
  .mobile-thumbnail.active {
    width: 150px;
  }
  .mobile-thumbnail-title {
    font-size: 10px;
    letter-spacing: 0.5px;
  }
}
@media (min-width: 1025px) {
  .carousel-slide {
    padding: 0 15px;
    margin-top: 16px;
  }
  .carousel-slide:first-child {
    margin-top: 0;
  }
  .package-name {
    text-shadow: none;
  }
  .package-price {
    text-shadow: none;
  }
  .carousel-container {
    max-width: 1500px;
    padding: 0 60px;
    position: relative;
    padding-bottom: 50px;
  }
  .price-card {
    display: flex;
    flex-direction: row;
    height: 65vh;
    min-height: 500px;
    max-height: 650px;
    gap: 18px;
    padding: 15px;
    background: #0a0a0a;
    border: 2px solid #333;
    border-radius: 20px;
  }
  .card-image-section {
    flex: 0 0 auto;
    width: 260px;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  }
  .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 6px;
    overflow: hidden;
    position: relative;
  }
  .card-title {
    font-size: 21px;
    letter-spacing: 3px;
    margin-bottom: 9px;
    text-align: center;
    border-bottom: 2px solid #ffd93d;
    padding-bottom: 6px;
    flex-shrink: 0;
  }
  .packages-grid,
  .packages-grid-two-rows {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 5px;
    height: 100%;
  }
  .packages-grid-center {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    margin-top: 5px;
    height: 100%;
  }
  .packages-grid-center .package:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  .packages-grid-center .package:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }
  .packages-grid-center .package:nth-child(3) {
    grid-column: 2;
    grid-row: 1 / 3;
  }
  .packages-grid-special {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    margin-top: 7px;
    height: 100%;
  }
  .packages-grid-special .package:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  .packages-grid-special .package:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  .packages-grid-special .package:nth-child(3) {
    grid-column: 3;
    grid-row: 1 / 3;
  }
  .packages-grid-special .package:nth-child(4) {
    grid-column: 4;
    grid-row: 1 / 3;
  }
  .packages-grid-special .package-large {
    grid-column: 1 / 3;
    grid-row: 2;
  }
  .package {
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 10px;
    padding: 7px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    min-height: 100px;
    overflow: hidden;
  }
  .package:hover {
    background: #222;
    border-color: #ffd93d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  }
  .package-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    padding-bottom: 4px;
    border-bottom: 2px solid #ffd93d;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    color: #ffd93d;
    text-shadow: none;
    flex-shrink: 0;
  }
  .package-items {
    list-style: none;
    margin: 4px 0;
    flex: 1;
    overflow: hidden;
    min-height: 0;
  }
  .package-items li {
    padding: 2px 0 2px 12px;
    font-size: 12px;
    border-bottom: 1px solid #2a2a2a;
    position: relative;
    color: #ddd;
    transition: color 0.2s ease;
    line-height: 1.25;
  }
  .package-items li:hover {
    color: #ffd93d;
  }
  .package-items li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffd93d;
    font-weight: bold;
    font-size: 8.5px;
  }
  .package-items li:last-child {
    border-bottom: none;
  }
  .package-price {
    font-size: 22px;
    font-weight: 900;
    color: #ffd93d;
    margin-top: 4px;
    letter-spacing: 1.5px;
    text-align: center;
    text-shadow: none;
    flex-shrink: 0;
  }
  .note {
    margin-top: 8px;
    padding: 6px;
    background: rgba(255, 217, 61, 0.1);
    border-left: 3px solid #ffd93d;
    font-size: 10px;
    text-align: center;
    flex-shrink: 0;
  }
  .mobile-thumbnails {
    display: none !important;
  }
  .carousel-dots {
    margin-top: 18px;
  }
  .dot {
    width: 12px;
    height: 12px;
  }
  .dot.active {
    width: 35px;
  }
}
@media (min-width: 1025px) {
  .carousel-note {
    max-width: 1500px;
    margin: 15px auto 0;
    padding: 10px 75px;
  }
  .carousel-note .note {
    background: rgba(255, 217, 61, 0.1);
    border-left: 3px solid #ffd93d;
    padding: 10px;
    font-size: 11px;
    text-align: center;
    color: #ddd;
  }
}
