/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #e8e8e8;
  background-color: #0a0e27;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 14, 39, 0.98);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.modal-content {
  background: linear-gradient(135deg, #1a1f4d 0%, #2d3561 100%);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  max-width: 500px;
  border: 2px solid #4a5a9e;
  box-shadow: 0 0 30px rgba(74, 90, 158, 0.5);
}

.modal-content h2 {
  color: #c0d0f0;
  margin-bottom: 20px;
  font-size: 28px;
}

.modal-content p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #b0c0e0;
}

.modal-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 25px;
}

.modal-content form {
  width: 100%;
}

.modal-content form .modal-buttons {
  width: 100%;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1f4d 0%, #2d3561 100%);
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
  border-top: 2px solid #4a5a9e;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-content p {
  flex: 1;
  color: #b0c0e0;
  font-size: 14px;
}

.cookie-content a {
  color: #8ba9d9;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-content form {
  display: inline;
}

.cookie-content form .cookie-buttons {
  display: inline-flex;
  gap: 10px;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-play-header,
.btn-play-main,
.btn-large {
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, #4a5a9e 0%, #6b7ab8 100%);
  color: #ffffff;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #5a6aae 0%, #7b8ac8 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(74, 90, 158, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #8ba9d9;
  border: 2px solid #4a5a9e;
}

.btn-secondary:hover {
  background: rgba(74, 90, 158, 0.2);
  border-color: #6b7ab8;
}

.btn-large {
  padding: 15px 40px;
  font-size: 18px;
}

.btn-play-main {
  background: linear-gradient(135deg, #6b7ab8 0%, #8b9ad8 100%);
  color: #ffffff;
  font-size: 24px;
  padding: 20px 60px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(107, 122, 184, 0.5);
}

.btn-play-main:hover {
  background: linear-gradient(135deg, #7b8ac8 0%, #9baae8 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(107, 122, 184, 0.6);
}

/* Header */
header {
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #2d3561;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo a {
  font-size: 28px;
  font-weight: bold;
  color: #c0d0f0;
  text-decoration: none;
  text-shadow: 0 0 10px rgba(192, 208, 240, 0.5);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-menu ul li a {
  color: #b0c0e0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu ul li a:hover {
  color: #c0d0f0;
}

.btn-play-header {
  background: linear-gradient(135deg, #4a5a9e 0%, #6b7ab8 100%);
  color: #ffffff;
  padding: 10px 25px;
}

/* Burger Menu */
#burger-toggle {
  display: none;
}

.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1002;
}

.burger-line {
  width: 30px;
  height: 3px;
  background-color: #c0d0f0;
  margin: 4px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(
      135deg,
      rgba(10, 14, 39, 0.85) 0%,
      rgba(26, 31, 77, 0.85) 50%,
      rgba(45, 53, 97, 0.85) 100%
    ),
    url("../images/Southern Cross Jackpots.jpg") center/cover no-repeat;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(74, 90, 158, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(107, 122, 184, 0.3) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 48px;
  color: #c0d0f0;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(192, 208, 240, 0.5);
}

.hero-subtitle {
  font-size: 20px;
  color: #8ba9d9;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.disclaimer-text {
  font-size: 22px;
  color: #ffb84d;
  font-weight: 600;
  margin: 30px auto;
  max-width: 900px;
  padding: 20px;
  background: rgba(255, 184, 77, 0.1);
  border-radius: 10px;
  border: 2px solid #ffb84d;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

/* Play Section */
.play-section {
  padding: 80px 0;
  background: linear-gradient(
      135deg,
      rgba(26, 31, 77, 0.9) 0%,
      rgba(45, 53, 97, 0.9) 100%
    ),
    url("../images/Stellar Reels.jpg") center/cover no-repeat;
  text-align: center;
  position: relative;
}

.play-content h2 {
  font-size: 42px;
  color: #c0d0f0;
  margin-bottom: 25px;
}

.play-content p {
  font-size: 18px;
  color: #b0c0e0;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.play-disclaimer {
  font-size: 16px;
  color: #8ba9d9;
  font-style: italic;
  margin-bottom: 40px;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background: #0a0e27;
}

.about-section h2 {
  font-size: 42px;
  color: #c0d0f0;
  margin-bottom: 40px;
  text-align: center;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.about-text p {
  margin-bottom: 20px;
  color: #b0c0e0;
  font-size: 16px;
  line-height: 1.8;
}

.about-image,
.guide-image {
  width: 100%;
}

.about-image img,
.guide-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image img:hover,
.guide-image img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(107, 122, 184, 0.4);
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #2d3561 0%, #3d4571 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7ab8;
  font-size: 24px;
  font-weight: 600;
  border: 2px dashed #4a5a9e;
}

/* Leaderboard Section */
.leaderboard-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1f4d 0%, #2d3561 100%);
}

.leaderboard-section h2 {
  font-size: 42px;
  color: #c0d0f0;
  margin-bottom: 15px;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: #8ba9d9;
  font-size: 18px;
  margin-bottom: 40px;
}

.leaderboard-list {
  max-width: 700px;
  margin: 0 auto;
}

.leaderboard-item {
  background: rgba(45, 53, 97, 0.5);
  padding: 20px 30px;
  margin-bottom: 15px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px solid #3d4571;
  transition: all 0.3s ease;
}

.leaderboard-item:hover {
  background: rgba(45, 53, 97, 0.8);
  transform: translateX(5px);
}

.leaderboard-item.rank-1 {
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.2) 0%,
    rgba(45, 53, 97, 0.5) 100%
  );
  border-color: #ffd700;
}

.leaderboard-item.rank-2 {
  background: linear-gradient(
    135deg,
    rgba(192, 192, 192, 0.2) 0%,
    rgba(45, 53, 97, 0.5) 100%
  );
  border-color: #c0c0c0;
}

.leaderboard-item.rank-3 {
  background: linear-gradient(
    135deg,
    rgba(205, 127, 50, 0.2) 0%,
    rgba(45, 53, 97, 0.5) 100%
  );
  border-color: #cd7f32;
}

.leaderboard-item .rank {
  font-size: 28px;
  font-weight: bold;
  color: #c0d0f0;
  min-width: 50px;
}

.leaderboard-item .player-name {
  flex: 1;
  font-size: 20px;
  color: #b0c0e0;
  padding: 0 20px;
}

.leaderboard-item .score {
  font-size: 18px;
  color: #8ba9d9;
  font-weight: 600;
}

.leaderboard-note {
  text-align: center;
  color: #8ba9d9;
  margin-top: 30px;
  font-style: italic;
}

/* Security Section */
.security-section {
  padding: 80px 0;
  background: #0a0e27;
}

.security-section h2 {
  font-size: 42px;
  color: #c0d0f0;
  margin-bottom: 40px;
  text-align: center;
}

.security-text p {
  margin-bottom: 20px;
  color: #b0c0e0;
  font-size: 16px;
  line-height: 1.8;
}

.certificates {
  margin-top: 50px;
}

.certificates h3 {
  font-size: 32px;
  color: #c0d0f0;
  margin-bottom: 30px;
  text-align: center;
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.certificate-item {
  background: linear-gradient(135deg, #1a1f4d 0%, #2d3561 100%);
  padding: 30px;
  border-radius: 10px;
  border: 2px solid #4a5a9e;
  transition: all 0.3s ease;
}

.certificate-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(74, 90, 158, 0.3);
}

.cert-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.certificate-item h4 {
  font-size: 22px;
  color: #c0d0f0;
  margin-bottom: 15px;
}

.certificate-item p {
  color: #b0c0e0;
  font-size: 15px;
  line-height: 1.6;
}

/* Guide Section */
.guide-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1f4d 0%, #2d3561 100%);
}

.guide-section h2 {
  font-size: 42px;
  color: #c0d0f0;
  margin-bottom: 40px;
  text-align: center;
}

.guide-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.guide-text p {
  margin-bottom: 20px;
  color: #b0c0e0;
  font-size: 16px;
  line-height: 1.8;
}

.guide-text strong {
  color: #c0d0f0;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: #0a0e27;
}

.faq-section h2 {
  font-size: 42px;
  color: #c0d0f0;
  margin-bottom: 50px;
  text-align: center;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(135deg, #1a1f4d 0%, #2d3561 100%);
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 2px solid #4a5a9e;
}

.faq-item h3 {
  font-size: 22px;
  color: #c0d0f0;
  margin-bottom: 15px;
}

.faq-item p {
  color: #b0c0e0;
  font-size: 16px;
  line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1f4d 0%, #2d3561 100%);
}

.testimonials-section h2 {
  font-size: 42px;
  color: #c0d0f0;
  margin-bottom: 50px;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: rgba(10, 14, 39, 0.6);
  padding: 30px;
  border-radius: 10px;
  border: 2px solid #4a5a9e;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(74, 90, 158, 0.3);
}

.testimonial-stars {
  color: #ffd700;
  font-size: 24px;
  margin-bottom: 15px;
}

.testimonial-text {
  color: #b0c0e0;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.testimonial-author strong {
  color: #c0d0f0;
  font-size: 18px;
}

.testimonial-author span {
  color: #8ba9d9;
  font-size: 14px;
}

/* Games Showcase Section */
.games-section {
  padding: 80px 0;
  background: #0a0e27;
}

.games-section h2 {
  font-size: 42px;
  color: #c0d0f0;
  margin-bottom: 15px;
  text-align: center;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.game-card {
  background: rgba(26, 31, 77, 0.6);
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #4a5a9e;
  transition: all 0.3s ease;
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(107, 122, 184, 0.5);
  border-color: #6b7ab8;
}

.game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-card:hover img {
  transform: scale(1.1);
}

.game-card h3 {
  font-size: 22px;
  color: #c0d0f0;
  padding: 20px 20px 10px;
  margin: 0;
}

.game-card p {
  font-size: 14px;
  color: #8ba9d9;
  padding: 0 20px 20px;
  margin: 0;
  line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
  background: #0a0e27;
}

.gallery-section h2 {
  font-size: 42px;
  color: #c0d0f0;
  margin-bottom: 15px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1f4d 0%, #2d3561 100%);
  text-align: center;
}

.contact-section h2 {
  font-size: 42px;
  color: #c0d0f0;
  margin-bottom: 30px;
}

.contact-content p {
  color: #b0c0e0;
  font-size: 18px;
  margin-bottom: 30px;
}

.contact-info {
  max-width: 600px;
  margin: 0 auto 30px;
}

.contact-item {
  background: rgba(10, 14, 39, 0.6);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 2px solid #4a5a9e;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-item strong {
  color: #c0d0f0;
  font-size: 18px;
}

.contact-item a {
  color: #8ba9d9;
  text-decoration: none;
  font-size: 16px;
}

.contact-item a:hover {
  color: #c0d0f0;
}

.contact-item span {
  color: #b0c0e0;
  font-size: 16px;
}

.contact-note {
  color: #8ba9d9;
  font-size: 16px;
  font-style: italic;
}

/* Footer */
footer {
  background: #0a0e27;
  padding: 60px 0 20px;
  border-top: 2px solid #2d3561;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: #c0d0f0;
  font-size: 20px;
  margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
  color: #8ba9d9;
  font-size: 14px;
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #c0d0f0;
}

.footer-disclaimer {
  background: rgba(26, 31, 77, 0.5);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 2px solid #4a5a9e;
}

.footer-disclaimer p {
  color: #b0c0e0;
  font-size: 14px;
  line-height: 1.7;
}

.footer-disclaimer strong {
  color: #ffb84d;
}

.footer-banners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.footer-banners img {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-banners a {
  display: inline-block;
  line-height: 0;
}

.footer-banners a:hover img {
  transform: scale(1.05);
  opacity: 0.8;
}

.footer-banners .h-4 {
  height: 1rem;
  width: auto;
}

.footer-banners .h-8 {
  height: 2rem;
  width: auto;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #2d3561;
}

.footer-bottom p {
  color: #8ba9d9;
  font-size: 14px;
}

/* Legal Pages Styles */
.legal-section {
  min-height: 100vh;
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 50%, #2d3561 100%);
}

.legal-section .container {
  max-width: 900px;
}

.legal-section h1 {
  font-size: 48px;
  color: #c0d0f0;
  text-align: center;
  margin-bottom: 15px;
  text-shadow: 0 0 20px rgba(192, 208, 240, 0.3);
}

.legal-updated {
  text-align: center;
  color: #8ba9d9;
  font-size: 14px;
  margin-bottom: 40px;
  font-style: italic;
}

.legal-content {
  background: rgba(26, 31, 77, 0.4);
  padding: 40px;
  border-radius: 15px;
  border: 2px solid #4a5a9e;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.legal-content h2 {
  font-size: 28px;
  color: #c0d0f0;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #4a5a9e;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 20px;
  color: #8ba9d9;
  margin-top: 25px;
  margin-bottom: 15px;
}

.legal-content p {
  color: #b0c0e0;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.legal-content strong {
  color: #c0d0f0;
  font-weight: 600;
}

.legal-content a {
  color: #6b7ab8;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.legal-content a:hover {
  color: #8ba9d9;
}

.legal-content ul,
.legal-content ol {
  color: #b0c0e0;
  margin-left: 25px;
  margin-bottom: 20px;
  line-height: 1.8;
}

.legal-content li {
  margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 900px) {
  /* Burger Menu Activation */
  .burger-menu {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 100%);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    gap: 0;
  }

  #burger-toggle:checked ~ .nav-menu {
    right: 0;
  }

  #burger-toggle:checked ~ .burger-menu .burger-line:nth-child(1) {
    transform: rotate(45deg) translateY(15px);
  }

  #burger-toggle:checked ~ .burger-menu .burger-line:nth-child(2) {
    opacity: 0;
  }

  #burger-toggle:checked ~ .burger-menu .burger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-15px);
  }

  .nav-menu ul {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .nav-menu ul li {
    width: 100%;
    border-bottom: 1px solid #2d3561;
  }

  .nav-menu ul li a {
    display: block;
    padding: 15px 0;
    width: 100%;
  }

  .btn-play-header {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }

  /* Content Adjustments */
  .hero-content h1 {
    font-size: 36px;
  }

  .about-content,
  .guide-content {
    grid-template-columns: 1fr;
  }

  .certificate-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid,
  .games-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .legal-section h1 {
    font-size: 36px;
  }

  .legal-content {
    padding: 30px;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .disclaimer-text {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-play-main {
    font-size: 20px;
    padding: 15px 40px;
  }

  .modal-content {
    padding: 30px 20px;
    margin: 20px;
  }

  .modal-buttons {
    flex-direction: column;
    width: 100%;
  }

  .modal-buttons button {
    width: 100%;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  section h2 {
    font-size: 32px;
  }

  .legal-section h1 {
    font-size: 28px;
  }

  .legal-content {
    padding: 20px;
  }

  .legal-content h2 {
    font-size: 24px;
  }

  .legal-content h3 {
    font-size: 18px;
  }

  .legal-content p {
    font-size: 15px;
  }
}
