/* General Styles */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
}

/* Header Styles */
header {
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-link a {
  color: #fff;
  font-size: 1.1rem;
  padding-bottom: 0.2rem;
  transition: all 0.3s ease;
}

.nav-link.active a {
  color: #fef3c7;
  border-bottom: 2px solid #fef3c7;
}

.nav-link a:hover {
  color: #fef3c7;
  border-bottom: 2px solid #fef3c7;
}

#burger-menu:hover {
  color: #fef3c7;
}

#mobile-menu.active {
  display: flex;
}

/* CTA Button Styles */
.cta-button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 70px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .cta-button {
    width: 100%;
  }
}

/* Image Styles */
img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}

.card:hover img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  transform: scale(1.05);
}

/* Parallax Effect */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Fade In Animation */
.fade-in {
  opacity: 0;
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 0.6s ease, transform 0.6s ease;
  -moz-transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  transform: translateY(0);
}

/* Marquee Animation */
.marquee-content {
  -webkit-animation: marquee 15s linear infinite;
  -moz-animation: marquee 15s linear infinite;
  animation: marquee 15s linear infinite;
}

@-webkit-keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@-moz-keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Table Styles */
table {
  width: 100%;
  border-collapse: collapse;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

th, td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

@media (max-width: 768px) {
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* Spoiler Styles */
.spoiler button {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.spoiler button:hover {
  background-color: #fef3c7;
}

.spoiler-content {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* Tabs Styles */
.tab-button {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tab-button.active {
  background-color: #fff;
  border-bottom: 2px solid #fef3c7;
}

.tab-button:hover {
  background-color: #f3f4f6;
}