body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #1a0033 0%, #000040 100%);
  color: #f8f9fa;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

.text-light-alt {
  color: #ced4da;
}

.btn-primary-custom {
  background-color: #8a2be2;
  border-color: #8a2be2;
  color: white;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: #6a1fb8;
  border-color: #6a1fb8;
  color: white;
}

.btn-outline-light {
  border-radius: 50px;
  font-weight: 600;
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #8a2be2;
  border-radius: 2px;
}


.header-main {
  background-color: rgba(26, 0, 51, 0.95); 
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  z-index: 1030;
}

.navbar-brand {
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;

  img {
    width: 45px;
    height: 45px;
    object-fit: contain;
  }
}

.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;

  img {
    width: 45px;
    height: 45px;
    object-fit: contain;
  }
}

.nav-link {
  color: #f8f9fa !important;
  font-weight: 600;
  margin: 0 15px;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #8a2be2 !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: #8a2be2;
  left: 0;
  bottom: -5px;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-disclaimer-fr {
  background-color: #b80000;
  color: white;
  padding: 8px 15px;
  font-size: 0.9rem;
  border-radius: 5px;
  margin-top: 10px;
}


.hero-section {
  min-height: 100vh;
  padding-top: 120px; 
  background: linear-gradient(135deg, #1a0033 0%, #000040 100%);
  position: relative;
  overflow: hidden;
}

.hero-image-style {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}


.section-bg {
  background-color: #1a0033;
}

.section-bg-alt {
  background-color: #000040;
}


.platform-card {
  background-color: #2c0055;
  border: 1px solid rgba(138, 43, 226, 0.3);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.platform-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.platform-card .card-img-top {
  height: 180px;
  object-fit: contain;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(138, 43, 226, 0.2);
}

.platform-card .card-body {
  padding: 25px;
}

.platform-card .card-title {
  color: #8a2be2;
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 10px;
}


.responsible-play-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.responsible-item {
  background-color: #2c0055;
  border: 1px solid rgba(138, 43, 226, 0.3);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.responsible-item .icon-large {
  font-size: 3.5rem;
}


.disclaimer-block {
  background-color: #000040;
  padding-top: 80px;
  padding-bottom: 80px;
}

.disclaimer-content {
  background-color: #2c0055;
  border: 2px solid #8a2be2;
  box-shadow: 0 0 25px rgba(138, 43, 226, 0.5);
}

.disclaimer-title {
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
}

.disclaimer-title i {
  color: #ffc107; 
}

.disclaimer-content h3 {
  color: #8a2be2;
  font-weight: 600;
  font-size: 1.5rem;
}

.disclaimer-content ul {
  padding-left: 20px;
}

.disclaimer-content ul li {
  margin-bottom: 8px;
}


.footer-main {
  background-color: #000020;
  color: #f8f9fa;
  padding-top: 50px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(138, 43, 226, 0.2);
}

.footer-brand {
  color: #fff;
  font-size: 1.8rem;
  text-decoration: none;
}

.footer-brand:hover {
  color: #8a2be2;
}

.footer-link {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #8a2be2 !important;
}

.footer-logos {
  gap: 15px;
}

.footer-logo {
  max-width: 120px;
  height: auto;
  filter: brightness(0.8) grayscale(0.2);
  transition: filter 0.3s ease;
}

.footer-logo:hover {
  filter: brightness(1) grayscale(0);
}

.footer-logo-18plus {
  max-width: 80px;
  height: auto;
  filter: none; 
}


.age-verification-modal-content {
  background: linear-gradient(135deg, #2c0055 0%, #000060 100%);
  border: 1px solid #8a2be2;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.age-verification-modal-content .modal-title {
  color: #8a2be2;
  font-weight: 700;
}

.age-verification-modal-content .form-check-input {
  background-color: #4a00b8;
  border-color: #8a2be2;
}

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


.cookie-banner {
  background-color: rgba(26, 0, 51, 0.95);
  color: white;
  z-index: 1040;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
}


.cookie-settings-modal-content {
  background: linear-gradient(135deg, #2c0055 0%, #000060 100%);
  border: 1px solid #8a2be2;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.cookie-settings-modal-content .modal-title {
  color: #8a2be2;
  font-weight: 700;
}

.cookie-settings-modal-content .btn-close-white {
  filter: invert(1);
}

.cookie-settings-modal-content .form-check-input {
  background-color: #4a00b8;
  border-color: #8a2be2;
}

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


@media (max-width: 991.98px) {
  .hero-section {
    text-align: center;
  }
  .hero-section .col-lg-6:last-child {
    order: -1; 
  }
  .navbar-collapse {
    background-color: rgba(26, 0, 51, 0.98);
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
  }
  .nav-link {
    margin: 5px 0;
    text-align: center;
  }
  .nav-link::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-logos {
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 2rem;
  }
  .platform-card .card-img-top {
    height: 150px;
  }
  .disclaimer-title {
    font-size: 1.5rem;
  }
  .footer-main .col-md-4 {
    text-align: center;
  }
  .footer-main .col-md-4:nth-child(2) ul {
    padding-left: 0;
  }
}


.rightsCloudWrap {
  
  padding-top: 40px;
  padding-left: 20px;
  padding-right: 20px;
  
  padding-bottom: 40px;
}

.rightsCloudWrap h1 {
  
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 2.5rem; 
  margin-bottom: 1rem; 
  color: #333; 
}

.rightsCloudWrap h2 {
  
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: #ffffff;
}

.rightsCloudWrap h3 {
  
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 1.8rem;
  margin-bottom: 0.7rem;
  color: #ffffff;
}

.rightsCloudWrap h4 {
  
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
  color: #ffffff;
}

.rightsCloudWrap h5 {
  
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 1.2rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.rightsCloudWrap p {
  
  font-size: 1rem; 
  line-height: 1.6; 
  margin-bottom: 1em; 
  color: #b3b3b3; 
}

.rightsCloudWrap ul {
  
  list-style-type: disc; 
  margin-top: 1em; 
  margin-bottom: 1em; 
  padding-left: 2em; 
  color: #adadad;
}

.rightsCloudWrap ol {
  
  list-style-type: decimal; 
  margin-top: 1em; 
  margin-bottom: 1em; 
  padding-left: 2em; 
  color: #e6e6e6;
}

.rightsCloudWrap li {
  
  line-height: 1.5; 
  margin-bottom: 0.5em; 
}

#cookieConsentBanner {
  display: none; 
  
}

.text-center.mt-2.header-disclaimer-fr {
  margin-bottom: 10px;
}

.navbar-toggler {
  border: none;
  display: none;
}

@media (max-width: 991px) {
  
  .main-header .navbar.mt-2 {
    position: relative;
    top: auto;
    width: 100%;
  }

  
  .navbar-nav {
    justify-content: center;
  }

  .navbar-toggler {
    display: block;
  }
}

.navbar-toggler {
  border-color: #fff; 
}

.navbar-toggler {
  border: none; 
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,255,255,1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@media (min-width: 992px){
    .nav-wr{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

#hero{
    padding-top: 200px !important;
}

@media (max-width: 575px){
    #hero{
    padding-top: 230px !important;
}

.text-center.mt-2.header-disclaimer-fr p{
    font-size: 13px;
    font-weight: 400 !important;
}
}

@media (max-width: 767px){
    .responsible-play-grid{
        grid-template-columns: repeat(1, 1fr);
    }
}