body {
  font-family: "Inter", sans-serif;
  background-color: #1a1a2e;
  color: #e0e0e0;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #ffffff;
  font-weight: 700;
}

a {
  color: #8a2be2;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #9370db;
}

.btn {
  text-decoration: none !important;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary,
.custom-btn-primary {
  background-color: #8a2be2;
  border-color: #8a2be2;
  color: #ffffff;
}

.btn-primary:hover,
.custom-btn-primary:hover {
  background-color: #9370db;
  border-color: #9370db;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
  color: #ffffff;
  border-color: #ffffff;
}

.btn-outline-light:hover {
  background-color: #ffffff;
  color: #1a1a2e;
}

.card {
  border: none;
  border-radius: 1rem;
  background-color: #2e2e4a;
  color: #e0e0e0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.dark-card {
  background-color: #2e2e4a;
  color: #e0e0e0;
}

.text-primary {
  color: #8a2be2 !important;
}

.text-warning {
  color: #ffc107 !important;
}

.text-danger {
  color: #dc3545 !important;
}

.text-success {
  color: #28a745 !important;
}

.text-info {
  color: #17a2b8 !important;
}

.bg-dark-gradient {
  background: linear-gradient(135deg, #1a1a2e 0%, #2e2e4a 100%);
}

.bg-light-cards {
  background-color: #1a1a2e;
}

.header-section {
  background-color: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(5px);
  z-index: 1030;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-logo {
  height: 40px;
  width: auto;
}

.site-name {
  font-size: 1.8rem;
  color: #ffffff;
  background: linear-gradient(90deg, #8a2be2, #00bfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-warning {
  font-size: 0.85rem;
  color: #e0e0e0;
}

main {
  padding-top: 80px;
}

.hero-section {
  position: relative;
  background-image: url("uploads/content/hero-background_21.webp");
  background-size: cover;
  background-position: center;
  padding-top: 120px !important;
  padding-bottom: 120px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-content,
.hero-image-container {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

.hero-image {
  animation: scaleIn 0.8s forwards;
  animation-delay: 0.4s;
}

.hero-content {
  animation-delay: 0.2s;
}

.hero-features li {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.hero-features i {
  color: #00bfff;
}

.section-title-gradient {
  background: linear-gradient(90deg, #8a2be2, #00bfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 2rem;
}

.section-title-dark {
  color: #ffffff;
}

.about-image,
.responsible-gaming-image {
  max-height: 400px;
  object-fit: cover;
}

.about-features li,
.responsible-gaming-tips li {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.platform-card {
  background-color: #22223b;
  color: #e0e0e0;
  overflow: hidden;
}

.platform-image-link {
  display: block;
  height: 100%;
}

.platform-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.platform-image-link:hover .platform-image {
  transform: scale(1.05);
}

.rating-stars i {
  font-size: 1.2rem;
}

.rating-number {
  font-size: 1.1rem;
}

.platform-features li {
  margin-bottom: 0.5rem;
}

.badge {
  font-size: 0.85rem;
  padding: 0.5em 0.8em;
  border-radius: 0.3rem;
}

.faq-accordion .accordion-item {
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  background-color: #2e2e4a;
  color: #ffffff;
  font-weight: 600;
  padding: 1rem 1.5rem;
  border-bottom: none;
  transition: background-color 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background-color: #3a3a5a;
  color: #ffffff;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq-accordion .accordion-body {
  background-color: #22223b;
  color: #e0e0e0;
  padding: 1rem 1.5rem;
}

.faq-accordion .accordion-button::after {
  filter: brightness(0) invert(1);
}

.testimonials-section {
  background-image: url("uploads/content/testimonials-bg_4.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 5rem 0;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.testimonials-section .container {
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background-color: rgba(46, 46, 74, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 2px solid #8a2be2;
}

.contact-section {
  background-image: url("uploads/content/contact-bg_3.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 5rem 0;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.contact-section .container {
  position: relative;
  z-index: 2;
}

.contact-section .form-label {
  color: #ffffff;
  font-weight: 600;
}

.contact-section .form-control {
  background-color: #3a3a5a;
  border: 1px solid #5a5a7a;
  color: #e0e0e0;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
}

.contact-section .form-control::placeholder {
  color: #a0a0c0;
}

.contact-section .form-control:focus {
  background-color: #4a4a6a;
  border-color: #8a2be2;
  box-shadow: 0 0 0 0.25rem rgba(138, 43, 226, 0.25);
  color: #ffffff;
}

.contact-section .invalid-feedback {
  color: #ff6b6b;
}

.disclaimer-section {
  background-color: #1a1a2e;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.disclaimer-content {
  background-color: #22223b;
  border: 2px solid #8a2be2;
  color: #e0e0e0;
  position: relative;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
}

.disclaimer-content h4 {
  color: #8a2be2;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.disclaimer-content p {
  margin-bottom: 1rem;
}

.disclaimer-content .fw-bold {
  color: #00bfff;
}

.footer-section {
  background-color: #111122;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  height: 50px;
  width: auto;
}

.footer-links a {
  font-size: 0.9rem;
  white-space: nowrap;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-logos {
  gap: 1.5rem;
}

.footer-org-logo {
  max-width: 120px;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.footer-org-logo:hover {
  transform: scale(1.05);
}

.footer-org-logo-18plus {
  max-width: 60px;
  height: auto;
  display: block;
}

.age-modal-content {
  background-color: #22223b;
  color: #e0e0e0;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.age-modal-content .modal-title {
  color: #ffffff;
}

.cookie-banner {
  background-color: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(5px);
  z-index: 1040;
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
  max-width: 700px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cookie-banner p {
  font-size: 0.9rem;
}

.cookie-banner a {
  color: #00bfff !important;
}

.cookie-banner a:hover {
  color: #ffffff !important;
}

.cookie-banner .btn-primary {
  background-color: #00bfff;
  border-color: #00bfff;
}

.cookie-banner .btn-primary:hover {
  background-color: #0099cc;
  border-color: #0099cc;
}

.cookie-banner .btn-outline-light {
  border-color: #00bfff;
  color: #00bfff;
}

.cookie-banner .btn-outline-light:hover {
  background-color: #00bfff;
  color: #ffffff;
}

.modal-content.dark-card {
  background-color: #22223b;
  color: #e0e0e0;
}

.modal-content.dark-card .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-content.dark-card .modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-close-white {
  filter: invert(1);
}

.form-check-label {
  color: #e0e0e0;
}

.form-check-input:checked {
  background-color: #8a2be2;
  border-color: #8a2be2;
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(138, 43, 226, 0.25);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767.98px) {
  .header-section .container {
    text-align: center;
  }
  .site-name {
    font-size: 1.5rem;
    margin-top: 0.5rem;
  }
  .header-logo {
    height: 30px;
  }
  .header-warning {
    font-size: 0.75rem;
    display: none;
  }
  main {
    padding-top: 120px;
  }

  .hero-features {
    text-align: center !important;
  }
  .section-title-gradient,
  .section-title-dark {
    font-size: 24px;
  }
  .platform-card .row {
    flex-direction: column;
  }
  .platform-card .col-md-4,
  .platform-card .col-md-8 {
    width: 100%;
  }
  .platform-image {
    border-radius: 1rem 1rem 0 0 !important;
    max-height: 250px;
  }
  .platform-card .card-body {
    padding: 1.5rem;
  }
  .disclaimer-content {
    padding: 1.5rem;
  }
  .footer-links a {
    display: block;
    margin: 0.5rem 0 !important;
  }
  .footer-logos {
    gap: 1rem;
  }
  .footer-org-logo {
    max-width: 80px;
  }
  .footer-org-logo-18plus {
    max-width: 40px;
  }
}
/* Parent container for the trust pillar unit */
.trustPillarUnit {
  padding-left: 20px; /* Left spacing for the content */
  padding-right: 20px; /* Right spacing for the content */
  max-width: 1200px; /* Limit content width for readability on large screens */
  margin-left: auto; /* Center the container horizontally */
  margin-right: auto; /* Center the container horizontally */
}

/* Heading 1 styles within trust pillar unit */
.trustPillarUnit h1 {
  font-size: 2.2em; /* Moderate size for the main heading */
  line-height: 1.2; /* Tighter line height for headings */
  font-weight: 700; /* Bold font weight */
  color: #0099cc; /* Darker color for prominence */
}

/* Heading 2 styles within trust pillar unit */
.trustPillarUnit h2 {
  font-size: 1.8em; /* Slightly smaller than h1 */
  line-height: 1.3;
  margin-top: 1.6em;
  margin-bottom: 0.7em;
  font-weight: 600;
  color: #0099cc;
}

/* Heading 3 styles within trust pillar unit */
.trustPillarUnit h3 {
  font-size: 1.5em; /* Smaller than h2 */
  line-height: 1.4;
  margin-top: 1.4em;
  margin-bottom: 0.6em;
  font-weight: 500;
  color: #0099cc;
}

/* Heading 4 styles within trust pillar unit */
.trustPillarUnit h4 {
  font-size: 1.2em; /* Smaller than h3 */
  line-height: 1.5;
  margin-top: 1.2em;
  margin-bottom: 0.5em;
  font-weight: 500;
  color: #0099cc;
}

/* Heading 5 styles within trust pillar unit */
.trustPillarUnit h5 {
  font-size: 1.1em; /* Smallest heading, slightly larger than paragraph */
  line-height: 1.5;
  margin-top: 1em;
  margin-bottom: 0.4em;
  font-weight: 500;
  color: #0099cc;
}

/* Paragraph styles within trust pillar unit */
.trustPillarUnit p {
  font-size: 1em; /* Base font size for paragraphs */
  line-height: 1.7; /* Good readability for body text */
  margin-bottom: 1em; /* Spacing between paragraphs */
  color: #ffffff; /* Slightly lighter color for body text */
}

/* Unordered list styles within trust pillar unit */
.trustPillarUnit ul {
  list-style-type: disc; /* Default disc bullets */
  margin-top: 1em; /* Spacing above the list */
  margin-bottom: 1em; /* Spacing below the list */
  padding-left: 25px; /* Indent for bullet points */
  color: #ffffff;
}

/* List item styles within trust pillar unit */
.trustPillarUnit li {
  font-size: 1em; /* Inherit or explicitly set for consistency */
  line-height: 1.6; /* Line height for list items */
  margin-bottom: 0.5em; /* Spacing between list items */
  color: #ffffff;
}

@media (max-width: 767px) {
  #cookieConsentBanner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

#cookieConsentBanner {
  top: auto !important;
  bottom: 0;
}

footer p,
footer .text-white-50 {
  color: #fff !important;
}

.footer-logo {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-link{
    color: #fff;
    transition: 0.4s linear;

    &:hover{
        color: #0099cc !important;
    }
}



.body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main{
    flex: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.text-muted,
.text-secondary{
    color: #ffffffda !important;
}
