/* Import font antic egiptean */
@import url('https://fonts.googleapis.com/css2?family=Cinzel&display=swap');

body {
    font-family: 'Cinzel', serif;
    background: #FAE0C3; /* Fundal general, culoarea nisipului */
    color: #6D4C41; /* Maro nisipiu */
    margin: 0;
    padding: 0;
}

/* Navbar cu aspect de nisip egiptean */
.pharaohs-trail-navbar {
    background: url("close-up-white-sea-sand-texture.jpg") no-repeat center center/cover; /* Bej deschis, ca nisipul */
    padding: 15px;
    text-align: center;
    color: #6D4C41;
    position: relative;
    border-bottom: 4px solid #C19A6B;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
}

/* Stil pentru logo */
.pharaohs-trail-navbar-logo {
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #6D4C41;
}

/* Link-uri */
.pharaohs-trail-navbar-links {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.pharaohs-trail-navbar-links li {
    display: inline-block;
    margin: 0 15px;
}

/* Butoane cu efect nisipiu */
.pharaohs-trail-navbar-links a {
    text-decoration: none;
    color: #6D4C41;
    font-size: 22px;
    font-weight: bold;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

/* Efect de aur la hover */
.pharaohs-trail-navbar-links a:hover {
    background: #DAA520; /* Auriu */
    color: #FFFFFF;
    box-shadow: 0 0 15px rgba(218, 165, 32, 0.8);
}

/* Scarabeul animat */
.pharaohs-trail-navbar-scarab {
  position: absolute;
  width: 40px;
  height: 40px;
  background: url('scarab.png') no-repeat center;
  background-size: contain;
  top: var(--random-top, 50%);
  left: 50%;
  transform: translate(-50%, -50%);
  animation: move-scarab 4s infinite alternate ease-in-out;
}

/* Mișcare randomizată */
@keyframes move-scarab {
  0% { left: 10px; top: calc(30% + var(--random-offset, 10%)); }
  25% { left: 30%; top: calc(50% + var(--random-offset, -10%)); }
  50% { left: 60%; top: calc(40% + var(--random-offset, 5%)); }
  75% { left: 80%; top: calc(55% + var(--random-offset, -5%)); }
  100% { left: 95%; top: calc(35% + var(--random-offset, 10%)); }
}



/* Hero Section - Welcome */
.pharaohs-trail-hero {
  background: url('welcome-hero-bg.png') no-repeat center center/cover;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #6D4C41;
  position: relative;
}

/* Semi-transparent overlay for better text readability */
.pharaohs-trail-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(245, 222, 179, 0.5); /* Bej translucid */
  z-index: 1;
}

/* Adaugă gradientul doar în partea de jos */
.pharaohs-trail-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%; /* Ajustează înălțimea gradientului */
  background: linear-gradient(to bottom, rgba(245, 222, 179, 0), rgba(245, 222, 179, 1));
}

/* Content container */
.pharaohs-trail-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

/* Hero title */
.pharaohs-trail-hero h1 {
  font-size: 50px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #8B4513; /* Maro regal */
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* Business summary */
.pharaohs-trail-hero p {
  font-size: 20px;
  margin: 20px 0;
  color: #6D4C41;
}

/* Call to Action Button */
.pharaohs-trail-hero-button {
  display: inline-block;
  padding: 12px 30px;
  font-size: 22px;
  font-weight: bold;
  background: #DAA520;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
}

/* Button Hover Effect */
.pharaohs-trail-hero-button:hover {
  background: #C19A6B;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5);
}


/* Import FontAwesome for icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

/* About & Features Section */
.pharaohs-trail-about {
    text-align: center;
    padding: 80px 20px;
    background: #F5DEB3; /* Bej nisipiu */
    color: #6D4C41; /* Maro nisipiu */
}

/* Title */
.pharaohs-trail-about-title {
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
    color: #8B4513; /* Maro regal */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
}

/* Features Grid */
.pharaohs-trail-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

/* Single Feature */
.pharaohs-trail-feature {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    border: 2px solid #C19A6B;
}

/* Hover Effects */
.pharaohs-trail-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.4);
    border-color: #DAA520;
}

/* Icon Styling */
.pharaohs-trail-feature i {
    font-size: 40px;
    color: #DAA520;
    margin-bottom: 15px;
}

/* Feature Title */
.pharaohs-trail-feature h3 {
    font-size: 22px;
    font-weight: bold;
    color: #6D4C41;
    margin-bottom: 10px;
    transition: color 0.3s ease-in-out;
}

/* Feature Description */
.pharaohs-trail-feature p {
    font-size: 18px;
    color: #8B4513;
    transition: color 0.3s ease-in-out;
}

/* Extra Hover Effects */
.pharaohs-trail-feature:hover h3 {
    color: #DAA520;
}

.pharaohs-trail-feature:hover p {
    color: #6D4C41;
}


/* About Each Game Section */
.pharaohs-trail-games {
    text-align: center;
    padding: 100px 20px;
    background: 
        linear-gradient(to bottom, rgba(245, 222, 179, 1), rgba(245, 222, 179, 0.9), rgba(245, 222, 179, 0.6), rgba(245, 222, 179, 0.3), rgba(245, 222, 179, 0)),
        url('aboutgames.png') no-repeat center center/cover;
    color: #6D4C41;
    position: relative;
    min-height: 100vh; /* Asigură că secțiunea acoperă tot ecranul */
}

.pharaohs-trail-games::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15%; /* Ajustează dacă vrei un efect mai subtil sau mai intens */
  background: linear-gradient(to bottom, rgba(245, 222, 179, 0),rgba(245, 222, 179, 0.3),rgba(245, 222, 179, 0.6),rgba(245, 222, 179, 0.9), rgba(245, 222, 179, 1));
}


/* Title Styling */
.pharaohs-trail-games-title {
  font-size: 38px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 50px;
  color: #8B4513;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* Game Card Styling */
.pharaohs-trail-game {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 80px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease-in-out;
}

/* Alternate row layout */
.pharaohs-trail-game.reverse {
  flex-direction: row-reverse;
}

/* Hover Effect */
.pharaohs-trail-game:hover {
  transform: scale(1.02);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.4);
}

/* Game Image Styling */
.pharaohs-trail-game-image {
  width: 45%;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

/* Hover Effect on Image */
.pharaohs-trail-game:hover .pharaohs-trail-game-image {
  transform: scale(1.05);
}

/* Background Images for Each Game */
.egypt { background: url('egypt-game.png') no-repeat center/cover; }
.jungle { background: url('jungle-game.png') no-repeat center/cover; }
.forest { background: url('shadow-forest-game.png') no-repeat center/cover; }
.cowboy { background: url('cowboy-game.png') no-repeat center/cover; }
.lantern { background: url('lantern-game.png') no-repeat center/cover; }

/* Game Content Styling */
.pharaohs-trail-game-content {
  width: 50%;
  text-align: left;
}

/* Game Title */
.pharaohs-trail-game-content h3 {
  font-size: 28px;
  color: #8B4513;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
  transition: color 0.3s ease-in-out;
}

/* Game Description */
.pharaohs-trail-game-content p {
  font-size: 18px;
  color: #6D4C41;
  line-height: 1.6;
}

/* Hover Effect on Text */
.pharaohs-trail-game:hover h3 {
  color: #DAA520;
}


/* FAQ Section */
.pharaohs-trail-faq {
  text-align: center;
  padding: 80px 20px;
  background: #F5DEB3; /* Bej nisipiu */
  color: #6D4C41;
}

/* FAQ Title */
.pharaohs-trail-faq-title {
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 40px;
  color: #8B4513;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

/* FAQ Items */
.pharaohs-trail-faq-item {
  background: url('https://www.textures.com/system/gallery/photos/Nature/Paper/Old/24293/PaperOld0032_3_350.jpg') no-repeat center center/cover;
  margin: 15px auto;
  padding: 15px;
  border-radius: 10px;
  max-width: 700px;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  border: 2px solid #C19A6B;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  transform-origin: top;
}

/* Hover Effect */
.pharaohs-trail-faq-item:hover {
  transform: scale(1.02);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.4);
}

/* FAQ Question */
.pharaohs-trail-faq-question {
  font-size: 22px;
  font-weight: bold;
  color: #8B4513;
  padding: 15px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  transition: background 0.3s ease-in-out;
}

/* Papirus Scroll Effect - Initially Hidden */
.pharaohs-trail-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s ease-in-out, padding 0.5s ease-in-out;
  opacity: 0;
  padding: 0px 15px;
}

/* Efect de desfășurare a pergamentului */
.pharaohs-trail-faq-item.active {
  transform: rotateX(10deg); /* Simulează un pergament desfășurat */
}

/* Arată răspunsul când este activ */
.pharaohs-trail-faq-item.active .pharaohs-trail-faq-answer {
  max-height: 300px;
  opacity: 1;
  padding: 15px;
  animation: unfold 1s ease-in-out;
}

/* Keyframes pentru efectul de pergament */
@keyframes unfold {
  from { transform: rotateX(-10deg); opacity: 0; }
  to { transform: rotateX(0deg); opacity: 1; }
}


/* Play Games Section */
.pharaohs-trail-play {
  text-align: center;
  padding: 100px 20px;
  background: 
      linear-gradient(to top, rgba(245, 222, 179, 0), rgba(245, 222, 179, 1)),
      url('plages.png') 
      no-repeat center center/cover;
  color: #6D4C41;
  position: relative;
}


/* Title Styling */
.pharaohs-trail-play-title {
  font-size: 38px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 50px;
  color: #8B4513;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* Grid Layout */
.pharaohs-trail-play-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* Game Cards */
.pharaohs-trail-play-card {
  background-size: cover;
  background-position: center;
  padding: 50px 20px;
  border-radius: 12px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px solid #C19A6B;
  color: white; /* Asigură vizibilitatea textului */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Hover Effect */
.pharaohs-trail-play-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.4);
  border-color: #DAA520;
}

/* Background Images for Each Game */
.egypt-play { background-image: url('Egypt Slot/icons/icon-512.png'); }
.jungle-play { background-image: url('Fortunge Jungle/icons/icone-256.png'); }
.forest-play { background-image: url('joc/icons/icon-512.png'); }
.cowboy-play { background-image: url('Slot Cowboy/icons/icon-512.png'); }
.lantern-play { background-image: url('Slot Lantern/icons/icon-512.png'); }

/* Dark Overlay to Improve Readability */
.pharaohs-trail-play-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

/* Ensure Content is Above Overlay */
.pharaohs-trail-play-card h3,
.pharaohs-trail-play-card p,
.pharaohs-trail-play-button {
  position: relative;
  z-index: 1;
}

/* Game Title */
.pharaohs-trail-play-card h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Game Description */
.pharaohs-trail-play-card p {
  font-size: 18px;
  line-height: 1.6;
}

/* Play Button */
.pharaohs-trail-play-button {
  display: inline-block;
  padding: 12px 30px;
  font-size: 20px;
  font-weight: bold;
  background: #DAA520;
  color: white;
  text-decoration: none;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
  margin-top: 15px;
}

/* Button Hover Effect */
.pharaohs-trail-play-button:hover {
  background: #C19A6B;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5);
}





/* Footer Styling */
.pharaohs-trail-footer {
  background: #4E342E; /* Maro închis - piatră veche */
  color: #FFD700;
  text-align: center;
  padding: 50px 20px;
  font-size: 16px;
  position: relative;
}

/* Footer Content */
.pharaohs-trail-footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

/* Footer Sections */
.pharaohs-trail-footer-section {
  flex: 1;
  min-width: 250px;
  margin: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Section Titles */
.pharaohs-trail-footer-section h3 {
  font-size: 22px;
  font-weight: bold;
  color: #DAA520;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* Section Paragraphs */
.pharaohs-trail-footer-section p {
  font-size: 16px;
  line-height: 1.5;
  color: #F5DEB3;
}

/* Hover Effects */
.pharaohs-trail-footer-section:hover {
  transform: translateY(-3px);
  box-shadow: 0px 10px 20px rgba(255, 215, 0, 0.3);
}

/* Contact Support Button */
.pharaohs-trail-footer-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  background: #DAA520;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 10px;
  box-shadow: 0px 5px 10px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease-in-out;
}

/* Button Hover Effect */
.pharaohs-trail-footer-button:hover {
  background: #C19A6B;
  box-shadow: 0px 10px 20px rgba(255, 215, 0, 0.5);
}

/* Footer Bottom */
.pharaohs-trail-footer-bottom {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 2px solid #8B4513;
  font-size: 14px;
}

/* Branding Name */
.pharaohs-trail-footer-bottom span {
  font-weight: bold;
  color: #DAA520;
}

/* 🔥 SPECIAL EFFECT: Disclaimer Animation */
.pharaohs-trail-footer-disclaimer {
  background: rgba(255, 0, 0, 0.2);
  border: 2px solid rgba(255, 0, 0, 0.6);
  position: relative;
  animation: pulse-glow 2s infinite alternate ease-in-out;
}

/* 🔥 Glowing Red Pulse Effect */
@keyframes pulse-glow {
  0% { box-shadow: 0px 0px 10px rgba(255, 0, 0, 0.5); }
  100% { box-shadow: 0px 0px 20px rgba(255, 0, 0, 0.8); }
}

html{
  scroll-behavior: smooth;
}


/* Age Verification Overlay */
.pharaohs-trail-age-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Age Verification Popup */
.pharaohs-trail-age-popup {
  background: #4E342E; /* Maro egiptean */
  color: #FFD700;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  width: 400px;
  box-shadow: 0px 5px 15px rgba(255, 215, 0, 0.5);
}

/* Title */
.pharaohs-trail-age-popup h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

/* Checkbox */
.pharaohs-trail-age-checkbox {
  margin: 15px 0;
  font-size: 16px;
}

/* Buttons */
.pharaohs-trail-age-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.pharaohs-trail-age-buttons button {
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

/* Enter Button */
#enter-site {
  background: #DAA520;
  color: white;
}

/* Disabled Enter Button */
#enter-site:disabled {
  background: #A9A9A9;
  cursor: not-allowed;
}

/* Leave Button */
#leave-site {
  background: #B22222;
  color: white;
}

/* Hover Effects */
#enter-site:hover:enabled {
  background: #C19A6B;
}

#leave-site:hover {
  background: #8B0000;
}

/* Disclaimer */
.pharaohs-trail-age-disclaimer {
  font-size: 14px;
  margin-top: 15px;
  color: #FFD700;
}





/* About Page Section */
.pharaohs-trail-about-page {
  text-align: center;
  padding: 80px 20px;
  background: #F5DEB3; /* Culoare nisipiu */
  color: #6D4C41;
  position: relative;
  overflow: hidden;
}

/* Container */
.pharaohs-trail-about-page-container {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

/* Hover Effect - Glow */
.pharaohs-trail-about-page-container:hover {
  transform: scale(1.02);
  box-shadow: 0px 10px 20px rgba(255, 215, 0, 0.4);
}

/* Title Styling */
.pharaohs-trail-about-page-title {
  font-size: 38px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 40px;
  color: #8B4513;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* Hover Effect pe Titlu */
.pharaohs-trail-about-page-title:hover {
  color: #DAA520;
  transform: scale(1.05);
}

/* Section Headers */
.pharaohs-trail-about-page h3 {
  font-size: 24px;
  color: #8B4513;
  margin-top: 30px;
  font-weight: bold;
  text-transform: uppercase;
  transition: letter-spacing 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* Hover Effect pe Subtitluri */
.pharaohs-trail-about-page h3:hover {
  letter-spacing: 2px;
  transform: translateY(-3px);
}

/* Paragraphs */
.pharaohs-trail-about-page p {
  font-size: 18px;
  line-height: 1.6;
  color: #6D4C41;
  margin-bottom: 20px;
  transition: opacity 0.3s ease-in-out;
}

/* Hover Effect pe Paragrafe */
.pharaohs-trail-about-page p:hover {
  opacity: 0.8;
}

/* Background Animation */
@keyframes floatingGlow {
  0% { box-shadow: 0px 0px 10px rgba(255, 215, 0, 0.2); }
  50% { box-shadow: 0px 0px 20px rgba(255, 215, 0, 0.4); }
  100% { box-shadow: 0px 0px 10px rgba(255, 215, 0, 0.2); }
}

.pharaohs-trail-about-page-container:hover {
  animation: floatingGlow 2s infinite alternate ease-in-out;
}


/* Contact Page Section */
.pharaohs-trail-contact-page {
  text-align: center;
  padding: 80px 20px;
  background: #F5DEB3; /* Culoare nisipiu */
  color: #6D4C41;
}

/* Container */
.pharaohs-trail-contact-container {
  max-width: 600px;
  margin: auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

/* Title */
.pharaohs-trail-contact-title {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: #8B4513;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* Form Styling */
.pharaohs-trail-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Form Group */
.pharaohs-trail-form-group {
  text-align: left;
}

/* Labels */
.pharaohs-trail-form-group label {
  font-weight: bold;
  color: #8B4513;
  display: block;
  margin-bottom: 5px;
}

/* Input Fields */
.pharaohs-trail-form-group input,
.pharaohs-trail-form-group textarea {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 2px solid #C19A6B;
  background: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  color: #6D4C41;
  transition: all 0.3s ease-in-out;
}

/* Hover & Focus Effects */
.pharaohs-trail-form-group input:focus,
.pharaohs-trail-form-group textarea:focus {
  border-color: #DAA520;
  background: #fff;
}

/* Submit Button */
.pharaohs-trail-contact-button {
  padding: 12px 20px;
  font-size: 18px;
  font-weight: bold;
  background: #DAA520;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0px 5px 15px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease-in-out;
}

/* Button Hover Effect */
.pharaohs-trail-contact-button:hover {
  background: #C19A6B;
  box-shadow: 0px 10px 20px rgba(255, 215, 0, 0.5);
}


/* Privacy Policy Section */
.pharaohs-trail-privacy-page {
  text-align: center;
  padding: 80px 20px;
  background: #F5DEB3;
  color: #6D4C41;
}

/* Container */
.pharaohs-trail-privacy-container {
  max-width: 900px;
  margin: auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

/* Title Styling */
.pharaohs-trail-privacy-title {
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #8B4513;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease-in-out;
}

.pharaohs-trail-privacy-title:hover {
  color: #DAA520;
}

/* Subtitles */
.pharaohs-trail-privacy-container h3 {
  font-size: 24px;
  color: #8B4513;
  margin-top: 25px;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}

.pharaohs-trail-privacy-container h3:hover {
  color: #DAA520;
}

/* Paragraphs */
.pharaohs-trail-privacy-container p,
.pharaohs-trail-privacy-container ul {
  font-size: 18px;
  line-height: 1.6;
  transition: opacity 0.3s ease-in-out;
}

.pharaohs-trail-privacy-container p:hover {
  opacity: 0.8;
}

/* List Styling */
.pharaohs-trail-privacy-container ul {
  list-style: square;
  text-align: left;
  padding-left: 30px;
}


/* Terms and Conditions Page */
.pharaohs-trail-terms-page {
  text-align: center;
  padding: 80px 20px;
  background: #F5DEB3;
  color: #6D4C41;
}

/* Container */
.pharaohs-trail-terms-container {
  max-width: 900px;
  margin: auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

/* Title Styling */
.pharaohs-trail-terms-title {
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #8B4513;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease-in-out;
}

.pharaohs-trail-terms-title:hover {
  color: #DAA520;
}

/* Subtitles */
.pharaohs-trail-terms-container h3 {
  font-size: 24px;
  color: #8B4513;
  margin-top: 25px;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}

.pharaohs-trail-terms-container h3:hover {
  color: #DAA520;
}

/* Paragraphs */
.pharaohs-trail-terms-container p,
.pharaohs-trail-terms-container ul {
  font-size: 18px;
  line-height: 1.6;
  transition: opacity 0.3s ease-in-out;
}

.pharaohs-trail-terms-container p:hover {
  opacity: 0.8;
}

/* List Styling */
.pharaohs-trail-terms-container ul {
  list-style: square;
  text-align: left;
  padding-left: 30px;
}




/* Responsible Gaming Page */
.pharaohs-trail-rsg-page {
  text-align: center;
  padding: 80px 20px;
  background: #F5DEB3;
  color: #6D4C41;
}

/* Container */
.pharaohs-trail-rsg-container {
  max-width: 900px;
  margin: auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

/* Title Styling */
.pharaohs-trail-rsg-title {
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #8B4513;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease-in-out;
}

.pharaohs-trail-rsg-title:hover {
  color: #DAA520;
}

/* Subtitles */
.pharaohs-trail-rsg-container h3 {
  font-size: 24px;
  color: #8B4513;
  margin-top: 25px;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}

.pharaohs-trail-rsg-container h3:hover {
  color: #DAA520;
}

/* Subheaders */
.pharaohs-trail-rsg-container h4 {
  font-size: 20px;
  color: #8B4513;
  font-weight: bold;
  margin-top: 20px;
  transition: color 0.3s ease-in-out;
}

.pharaohs-trail-rsg-container h4:hover {
  color: #DAA520;
}

/* Paragraphs */
.pharaohs-trail-rsg-container p,
.pharaohs-trail-rsg-container ul {
  font-size: 18px;
  line-height: 1.6;
  transition: opacity 0.3s ease-in-out;
}

.pharaohs-trail-rsg-container p:hover {
  opacity: 0.8;
}

/* List Styling */
.pharaohs-trail-rsg-container ul {
  list-style: square;
  text-align: left;
  padding-left: 30px;
}


/* Opt-Out Page */
.pharaohs-trail-optout-page {
  text-align: center;
  padding: 80px 20px;
  background: #F5DEB3;
  color: #6D4C41;
}

/* Container */
.pharaohs-trail-optout-container {
  max-width: 900px;
  margin: auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

/* Title Styling */
.pharaohs-trail-optout-title {
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #8B4513;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease-in-out;
}

.pharaohs-trail-optout-title:hover {
  color: #DAA520;
}

/* Subtitles */
.pharaohs-trail-optout-container h3 {
  font-size: 24px;
  color: #8B4513;
  margin-top: 25px;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}

.pharaohs-trail-optout-container h3:hover {
  color: #DAA520;
}

/* Paragraphs */
.pharaohs-trail-optout-container p {
  font-size: 18px;
  line-height: 1.6;
  transition: opacity 0.3s ease-in-out;
}

.pharaohs-trail-optout-container p:hover {
  opacity: 0.8;
}

/* Links */
.pharaohs-trail-optout-container a {
  color: #DAA520;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.pharaohs-trail-optout-container a:hover {
  color: #8B4513;
  text-decoration: underline;
}
