:root {
  --bg-color: #1e1e2f;
  --hero-bg: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --header-bg: #f9627b;
  --text-color: #fff;
  --accent-color: #764ba2;
  --shadow-color: rgba(0, 0, 0, 0.548);
  --hover-color: #667eea;
}

/* General styles */
body {
  font-family: "Arial", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

header {
  background: #252542;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.3s;
  border-bottom: 2px solid #ffd700;
}

.visible {
  transform: translateY(0);
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 40px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 90px;
  width: auto;
}

.logo-text {
  font-size: 1.2rem;
  margin-left: 10px;
  font-weight: bold;
  text-transform: uppercase;
}

.header-boxes {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 10px;
}

.header-box {
  margin: 0 5px;
  padding: 5px;
  min-width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.header-image {
  border-radius: 10px;
  max-width: 85%;
  min-width: 153px;
  height: auto;
  cursor: pointer;
  border: 0.5px solid white;
}

.header-box:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -250px;
  background-color: #33334d;
  border: 1px solid #ffd700;
  border-radius: 5px;
  padding: 10px;
  width: 1000px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s, transform 0.3s;
}

.dropdown-menu h3 {
  color: #ffd700;
  font-size: 1rem;
  margin-bottom: 10px;
}

.dropdown-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.dropdown-menu ul li {
  color: #fff;
  padding: 10px;
  font-size: 0.6rem;
  flex: 2 2 17%;
  box-sizing: border-box;
  position: relative;
  text-align: center;
}

.dropdown-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: #252542;
  border: 1px solid #ffd700;
  border-radius: 5px;
  padding: 10px;
  margin: 5px;
}

.dropdown-card img {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 5px;
}

.approve-badge {
  position: absolute; /* Changed to relative */
  margin-left: 20%;
  min-width: max-content;
  display: inline-block; /* Ensures it wraps around content */
  background-color: #4caf50;
  color: white;
  font-size: 0.5rem;
  font-weight: bold;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
}

.approve-badge::after {
  content: ""; /* Creates pseudo-element for the image */
  position: absolute;
  top: -14px; /* Adjust position to top right */
  right: -16px; /* Adjust position to top right */
  width: 27px; /* Adjust width as needed */
  height: 27px; /* Adjust height as needed */
  background-image: url("/aprrove-rabbit.svg"); /* Path to your image */
  background-size: cover;
}

.dropdown-card button {
  background-color: #ffd700;
  margin: 5px;
  border: none;
  color: #252542;
  padding: 3px 7px;
  font-size: 0.8rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 3px;
  transition: background-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.dropdown-card button:hover {
  background-color: #e6c200;
  color: white;
  transform: scale(1.2);
}

.dropdown-card button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background-color: rgb(0, 174, 255);
  transition: transform 0.5s ease-out;
  z-index: -1;
  transform: translate(-50%, -50%) rotate(45deg) scale(0);
}

.dropdown-card button:hover::before {
  transform: translate(-50%, -50%) rotate(45deg) scale(3);
}

.dropdown-card button span {
  position: relative;
  z-index: 1;
}

.header-top nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.header-top nav ul li {
  min-width: max-content;
  display: flex;
  background-color: #33334d;
  padding: 2px;
  margin: 2px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  justify-content: center;
  align-items: center;
  border: 0.5px solid rgba(255, 255, 255, 0.379);
}

.header-top nav ul li a {
  color: #ffd700;
  text-decoration: none;
  padding: 5px;
  transition: background-color 0.3s, color 0.3s;
  font-size: clamp(14px, 0.8vw, 1rem);
}

.header-top nav ul li:hover {
  background-color: var(--hover-color);
  border-radius: 3px;
  transform: translateY(-5px);
}

/* Responsive design */
@media (max-width: 1500px) {
  .header-top {
    flex-direction: column;
    text-align: center;
  }

  .logo {
    margin-bottom: 20px;
  }

  .header-boxes {
    flex-direction: row;
    margin: 10px 0;
  }

  .header-box {
    margin: 10px 0;
  }

  .header-top nav ul {
    flex-direction: row;
  }

  .header-top nav ul li {
    margin: 5px 5px;
  }

  .dropdown-menu {
    width: 100%;
    /* left: 0px; */
  }
  .first {
    left: 30px;
  }
  .middle {
    left: -100px;
  }
  .last {
    right: 0px;
  }
  .dropdown-menu ul li {
    flex: 1 1 50%;
  }
}
@media (max-width: 700px) {
  .header-top nav ul li a {
    padding: 2px;
    font-size: 0.6rem;
  }
  .dropdown-menu {
    width: 100%; /* Make the dropdown menu full width of its parent */
    left: -50px; /* Ensure it starts from the left edge */
  }
}

.main-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 50px 20px;
  background: var(--hero-bg);
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.436);
  box-shadow: 0 8px 16px var(--shadow-color);
}

.hero-top {
  width: 100%;
  padding: 0 20px;
  z-index: 1;
  color: var(--text-color);
}

.hero-top h1 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.hero-top p {
  font-size: 0.8rem;
  line-height: 1.6;
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px;
  z-index: 1;
}

.hero-box {
  flex: 1;
  max-width: 45%;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.hero-box img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.hero-box h2 {
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: bold;
  color: var(--text-color);
}

.hero-box p {
  font-size: 0.8rem;
  color: var(--text-color);
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .hero-bottom {
    flex-direction: column;
    align-items: center;
  }

  .hero-box {
    width: 100%;
    max-width: none;
    margin-bottom: 20px;
  }
}

main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  position: relative;
}

/* Card styles */
.card {
  background-color: #2a2a3c;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 20px;
  width: 300px;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  z-index: 0;
}

.card::before,
.card::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.2)
  );
  opacity: 0;
  transition: opacity 0.3s;
  animation: holographic 1.5s infinite alternate;
}

.card:hover::before,
.card:hover::after {
  opacity: 1;
}

@keyframes holographic {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.card img {
  width: 100%;
  border-bottom: 2px solid #764ba2;
  transition: transform 0.3s;
}

.card:hover img {
  transform: scale(1.1);
}

.card-content {
  padding: 20px;
  position: relative;
}

.card-content h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 0.7rem;
  margin-bottom: 20px;
}

.card-content a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #764ba2;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.3s;
  z-index: 1;
  position: relative;
}

.card-content a:hover {
  background-color: #667eea;
  transform: scale(1.1);
}

.benefits {
  padding: 50px 20px;
  margin-top: 10px;
  background-color: #252542;
  border-radius: 25px;
  border-top: 3px solid rgba(255, 255, 255, 0.436);
  border-bottom: 3px solid rgba(255, 255, 255, 0.436);
  margin-bottom: 10px;
}

.benefits h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

.benefits-content {
  max-width: max-content;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.benefit {
  background-color: #33334d;
  border-radius: 10px;
  padding: 20px;
  margin: 10px;
  width: 215px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.benefit:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.benefit h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ffd700;
}

.benefit p {
  font-size: 0.7rem;
  line-height: 1.5;
  color: #ccc;
}

/* Features section styles */
.features {
  padding: 50px 20px;
  background-color: var(--bg-color);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.436);
}

.features-content {
  display: flex;
}

.features h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.feature {
  background-color: var(--accent-color);
  border-radius: 10px;
  padding: 20px;
  margin: 20px;
  width: calc(100% - 40px);
  max-width: 600px;
  box-shadow: 0 4px 8px var(--shadow-color);
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px var(--shadow-color);
  background-color: var(--hover-color);
}

.feature h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ffd700;
}

.feature p {
  font-size: 0.7rem;
  line-height: 1.5;
  color: #ccc;
}

/* Footer styles */
footer {
  text-align: center;
  padding: 20px 0;
  background-color: var(--bg-color);
  color: #bbb;
  position: relative;
  overflow: hidden;
}

footer::before,
footer::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  animation: animate 10s linear infinite;
}

footer::before {
  top: -50px;
  left: -50px;
  border-radius: 50%;
}

footer::after {
  bottom: -50px;
  right: -50px;
  border-radius: 50%;
}

/* Animation keyframes for header and footer */
@keyframes animate {
  0% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.5) translate(30px, 30px);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  header h1 {
    font-size: 2.5rem;
  }

  header p {
    font-size: 0.7rem;
  }

  .card {
    width: 100%;
  }

  .benefit,
  .feature {
    width: calc(100% - 40px);
  }

  footer::before,
  footer::after,
  header::before,
  header::after {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  header h1 {
    font-size: 2rem;
  }

  .card {
    width: calc(100% - 40px);
  }
}

#about {
  padding: 0px 20px;
  background-color: #252542;
  color: var(--text-color);
  padding-bottom: 50px;
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.436);
  margin-bottom: 10px;
}

.about-container {
  max-width: calc(100% - 2rem);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.text-container {
  flex: 1 1 50%;
  max-width: 70%;
  background-color: #33334d;
  padding: 34px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.text-container::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  padding: 3px;
  background: linear-gradient(45deg, #667eea, #764ba2, #ffd700, #667eea);
  background-size: 300% 300%;
  z-index: -1;
  animation: moveGradient 7s linear infinite;
}

.text-container::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  bottom: 3px;
  left: 3px;
  background-color: #33334d;
  border-radius: 7px;
  z-index: -1;
}

@keyframes moveGradient {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 50% 100%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 50% 0%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.rabbit-container {
  flex: 0 0 30%;
  position: relative;
  text-align: right;
}

.rabbit-container img {
  width: 100%;
  max-width: 300px;
  height: auto;
  animation: subtleMovement 10s ease infinite;
}

.tooltip {
  visibility: hidden;
  width: 200px;
  background-color: rgba(0, 0, 0, 0.638);
  border: 1px solid #ffd700;
  color: white;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  top: calc(0% + 10px);
  right: 13%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
  font-size: 0.8rem;
}

.rabbit-container:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

#about p {
  font-size: clamp(18px, 1.2vw, 1.3rem);
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .text-container,
  .rabbit-container {
    max-width: 100%;
    flex: 1 1 100%;
    text-align: center;
  }

  .rabbit-container {
    order: -1;
    margin-bottom: 20px;
  }

  .rabbit-container img {
    max-width: 200px;
  }

  .tooltip {
    top: calc(100% + 10px);
  }
}

@keyframes subtleMovement {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-3px, -3px);
  }
  50% {
    transform: translate(0, 0);
  }
  75% {
    transform: translate(3px, 3px);
  }
  100% {
    transform: translate(0, 0);
  }
}

#card-container {
  border-radius: 25px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.436);
  border-top: 3px solid rgba(255, 255, 255, 0.436);
  box-shadow: 0 8px 16px var(--shadow-color);
  background-color: var(--bg-color);
}

#card-container .text-centered h1 {
  font-size: clamp(24px, 2vw, 2rem);
  text-transform: uppercase;
  text-align: center;
}

.games-section {
  padding: 50px 20px;
  background-color: var(--bg-color);
  color: var(--text-color);
  text-align: center;
  border-radius: 25px;
  /* border-bottom-left-radius: 25px; */
  border-bottom: 3px solid rgba(255, 255, 255, 0.436);
  border-top: 3px solid rgba(255, 255, 255, 0.436);
  box-shadow: 0 8px 16px var(--shadow-color);
}

.games-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.games-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.games-container .card {
  background-color: #2a2a3c;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 20px;
  width: 300px;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.3s, box-shadow 0.3s;
}

.games-container .card img {
  width: 100%;
  border-bottom: 2px solid #764ba2;
  transition: transform 0.3s;
}

.games-container .card:hover img {
  transform: scale(1.1);
}

.games-container .card-content {
  padding: 20px;
}

.games-container .card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.games-container .card-content p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.games-container .card-content a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #764ba2;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.3s;
}

.games-container .card-content a:hover {
  background-color: #667eea;
  transform: scale(1.1);
}

/* Responsive adjustments for Games section */
@media screen and (max-width: 768px) {
  .games-container .card {
    width: calc(50% - 40px);
  }
}

@media screen and (max-width: 480px) {
  .games-container .card {
    width: calc(100% - 40px);
  }
}

.bonuses-section {
  padding: 50px 20px;
  margin-top: 10px;
  background: linear-gradient(to bottom, #1e1e2f, #252542);
  color: var(--text-color);
  text-align: center;
  border-top-right-radius: 25px;
  border-top-left-radius: 25px;
  border-top: 3px solid rgba(255, 255, 255, 0.436);
}

.bonuses-section h2 {
  font-size: clamp(24px, 2.2vw, 1.8rem);
  margin-bottom: 30px;
}

.bonuses-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.bonuses-box {
  position: relative;
  display: inline-block;
  margin: 20px;
  padding: 20px;
  background-color: #2a2a3c;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 250px;
  text-align: center;
  color: white;
  font-family: Arial, sans-serif;
  transition: transform 0.2s;
}
.bonuses-box:nth-child(1) {
  border: 2px solid #f9627b;
}

.bonuses-box:nth-child(2) {
  border: 2px solid #764ba2;
}

.bonuses-box:nth-child(3) {
  border: 2px solid #667eea;
}

.bonuses-box:nth-child(4) {
  border: 2px solid #ffd700;
}
.magical-light {
  position: absolute;
  width: 0px;
  height: 0px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.127);
  box-shadow: 0 0 100px 140px rgba(255, 255, 255, 0.8);
  pointer-events: none;
  z-index: 1000;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: left 0.2s ease, top 0.2s ease, opacity 0.5s ease;
  mix-blend-mode: overlay;
}

.bonuses-box h3 {
  font-size: clamp(18px, 1.4vw, 1.7rem);
  margin-bottom: 10px;
}

.bonuses-box p {
  font-size: clamp(16px, 1vw, 1.1rem);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Responsive adjustments for Bonuses section */
@media screen and (max-width: 768px) {
  .bonuses-container {
    flex-direction: column;
    align-items: center;
  }
}

/* FAQs Section Styles */
.faq-section {
  padding: 50px 20px;
  background-color: var(--bg-color);
  color: var(--text-color);
  text-align: center;
  border-radius: 25px;
  border-top: 3px solid rgba(255, 255, 255, 0.436);
  border-bottom: 3px solid rgba(255, 255, 255, 0.436);
  margin-top: 10px;
}

.faq-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.faq-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.faq-item {
  background-color: #2a2a3c;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
  padding: 20px;
  text-align: left;
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 0.7rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Responsive adjustments for FAQs section */
@media screen and (max-width: 768px) {
  .faq-container {
    flex-direction: column;
    align-items: center;
  }
}

/* Free Spins Section Styles */
.free-spins-section {
  padding: 50px 20px;
  background-color: var(--bg-color);
  color: var(--text-color);
  text-align: center;
  border-top-right-radius: 25px;
  border-top-left-radius: 25px;
  border-top: 3px solid rgba(255, 255, 255, 0.436);
  margin-top: 10px;
}

.free-spins-container {
  max-width: calc(100% - 2rem);
  margin: 0 auto;
}

.free-spins-container h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.free-spins-container p {
  font-size: 0.7rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #ffd700;
  color: #252542;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.7rem;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  background-color: #e65100;
  transform: scale(1.2);
  color: white;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background-color: rgb(0, 174, 255);
  transition: transform 0.5s ease-out;
  z-index: -1;
  transform: translate(-50%, -50%) rotate(45deg) scale(0);
}

.cta-button:hover::before {
  transform: translate(-50%, -50%) rotate(45deg) scale(3);
}

@media screen and (max-width: 768px) {
  .free-spins-container {
    padding: 20px;
  }
}

.promotions {
  padding: 50px 20px;
  background-color: var(--bg-color);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #b3b3b3;
  border-top-right-radius: 25px;
  border-top-left-radius: 25px;
  border-top: 3px solid rgba(255, 255, 255, 0.436);
  margin-top: 10px;
}

.promotions h2 {
  font-size: 2.5rem;
  color: var(--text-color);
}

.promotions-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.promotion {
  background-color: #1f253d;
  border-radius: 15px;
  padding: 30px;
  margin: 30px;
  width: calc(100% - 60px);
  max-width: 700px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.promotion:hover {
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.8);
  background-color: #1a1f2f;
  transition: 0.3s ease-in-out;
}
.promotion:nth-child(1):hover {
  transform: scale(1.02) rotate(1deg);
}
.promotion:nth-child(2):hover {
  transform: scale(1.05) rotate(-1deg);
}
.promotion:nth-child(3):hover {
  transform: scale(1.03) rotate(1deg);
}
.promotion:nth-child(4):hover {
  transform: scale(1.06) rotate(-1deg);
}
.promotion:nth-child(5):hover {
  transform: scale(1.03) rotate(1deg);
}
.promotion:nth-child(6):hover {
  transform: scale(1.02) rotate(-1deg);
}
.promotion:hover h3 {
  color: #667eea;
}
.promotion:hover p {
  color: #ccc;
}

.promotion h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #ffd700;
}

.promotion p {
  font-size: 0.7rem;
  line-height: 1.8;
  color: #999;
}

.strategies {
  padding: 50px 20px;
  background-color: var(--bg-color);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.436);
}

.strategies-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.strategy {
  background-color: var(--accent-color);
  border-radius: 15px;
  padding: 30px;
  margin: 30px;
  width: calc(100% - 60px);
  max-width: 700px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.strategy:hover {
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.6);
  background-color: #2d3755;
}

.strategies h2 {
  font-size: 2rem;
}
.strategy h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #ffd700;
}

.strategy p {
  font-size: 0.7rem;
  line-height: 1.8;
  color: #ccc;
}

.slots-strategies-section {
  padding: 50px 20px;
  background-color: var(--bg-color);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #b3b3b3;
  border-top-right-radius: 25px;
  border-top-left-radius: 25px;
  border-top: 3px solid rgba(255, 255, 255, 0.436);
  margin-top: 10px;
}

.slots-strategies-section h2 {
  font-size: 2.5rem;
  color: var(--text-color);
  margin-bottom: 20px;
}

.slots-strategies-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.slots-strategy,
.casino-strategy {
  background-color: #1f253d;
  border-radius: 15px;
  padding: 30px;
  margin: 30px;
  width: calc(100% - 60px);
  max-width: 700px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.slots-strategy:hover,
.casino-strategy:hover {
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.8);
  background-color: #1a1f2f;
  transition: 0.3s ease-in-out;
}

.slots-strategy:nth-child(odd):hover,
.casino-strategy:nth-child(odd):hover {
  transform: scale(1.02) rotate(1deg);
}

.slots-strategy:nth-child(even):hover,
.casino-strategy:nth-child(even):hover {
  transform: scale(1.05) rotate(-1deg);
}

.slots-strategy h3,
.casino-strategy h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #ffd700;
}

.slots-strategy p,
.casino-strategy p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #ccc;
}

.slots-strategy:hover h3,
.casino-strategy:hover h3 {
  color: #667eea;
}

.slots-strategy:hover p,
.casino-strategy:hover p {
  color: #ccc;
}

.slots-strategy ol,
.casino-strategy ol {
  margin-top: 15px;
  padding-left: 20px;
}

.slots-strategy ol li,
.casino-strategy ol li {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #ccc;
}
