*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'IM Fell English SC', serif;
  line-height: 1.6;
  background: linear-gradient(135deg, #ff8c00, #ff5e62);
  color: #fff;
  padding: 0 20px;
}

a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #ffde00;
}

h1, h2, h3, h4 {
  font-family: 'MedievalSharp', cursive;
  text-align: center;
}

.psi_header_container {
  background-color: #1d1d1d;
  padding: 15px 0;
  text-align: center;
}

.psi_header_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 22px;
    padding: 0 11px;
}

.psi_header_logo {
  font-size: 2rem;
  color: #ffde00;
  font-weight: bold;
}

.psi_header_button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff5e62;
  color: white;
  margin-top: 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.psi_header_button:hover {
  background-color: #ff8c00;
}

.psi_age_modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.99);
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
}

.psi_age_modal-content {
  background: #333;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  width: 80%;
  max-width: 500px;
}

.psi_age_modal-header {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #ff5e62;
}

.psi_age_modal-body {
  font-size: 1.1rem;
  color: #fff;
}

.psi_age_btn {
  padding: 10px 20px;
  margin-top: 20px;
  background: #ff5e62;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.psi_age_btn:hover {
  background: #ff8c00;
}

.psi_cookie_notice {
  background: rgba(0, 0, 0, 0.7);
  padding: 20px;
  color: white;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 989;
  display: none;
  justify-content: space-between;
  align-items: center;
}

.psi_cookie_accept {
  background: #ff5e62;
  padding: 10px 20px;
  border-radius: 5px;
}

.psi_cookie_accept:hover {
  background: #ff8c00;
}

.psi_main_highlight {
  padding: 40px 0;
  background: #1a1a1a;
  text-align: center;
}

.psi_main_title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 20px;
}

.psi_features_list {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 20px;
}

.psi_features_item {
  background: #ff5e62;
  padding: 20px;
  border-radius: 10px;
  width: 200px;
  text-align: center;
  color: #fff;
  transition: transform 0.3s ease;
}

.psi_features_item:hover {
  transform: scale(1.1);
}

.psi_features_icon {
  font-size: 3rem;
  margin-bottom: 10px;
}

.psi_offer_button {
  background: #ffde00;
  padding: 10px 20px;
  border-radius: 5px;
  color: #1d1d1d;
  font-weight: bold;
  transition: background 0.3s ease;
}

.psi_offer_button:hover {
  background: #ff8c00;
}

.psi_top_offer {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}
  
.psi_top_offer .psi_offer_left {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #555;
    border-radius: 8px;
    padding: 9px 18px;
}
  
.psi_top_offer .psi_offer_logo {
    width: 100%;
    height: auto;
    margin-right: 20px;
}
  
.psi_top_offer .psi_offer_rating {
    display: flex;
    align-items: center;
    color: #ffb400;
    font-size: 18px;
}
  
.psi_top_offer .psi_offer_rating i {
    margin-right: 5px;
}
  
.psi_top_offer .psi_offer_right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
  
.psi_top_offer .psi_offer_title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}
  
.psi_top_offer .psi_offer_bonus {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: #00a859;
    padding: 15px;
    border-radius: 10px;
    color: white;
    margin-bottom: 15px;
}
  
.psi_top_offer .psi_offer_text {
    font-size: 18px;
    font-weight: 600;
}
  
.psi_top_offer .psi_offer_button {
    background-color: #ff4081;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}
  
.psi_top_offer .psi_offer_button:hover {
    background-color: #e63946;
}
  
.psi_top_offer .psi_offer_note {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
}
  
.psi_advantage__sections {
  width: 100%;
  background-image: url('../psi-imges/psi-backgr-images.jpg');
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
}

.psi_advantage__pair {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.psi_content_section {
  background-color: #3a3a3a;
  padding: 20px;
  border-radius: 10px;
  flex: 1;
}

.psi_content_title {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #ffde00;
}

.psi_content_text {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 10px;
}

.psi_licenses-section_wrap {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.psi_licenses-section_container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.psi_licenses-section_title {
  font-family: 'Kenia', cursive;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #111;
}

.psi_licenses-section_text {
  font-family: 'Arial', sans-serif;
  font-size: 1rem;
  color: #444;
  margin-bottom: 40px;
}

.psi_licenses-section_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.psi_licenses-section_card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: left;
  transition: transform 0.3s ease;
}

.psi_licenses-section_card:hover {
  transform: translateY(-5px);
}

.psi_licenses-section_image {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 10px;
}

.psi_licenses-section_name {
  font-family: 'UnifrakturMaguntia', cursive;
  font-size: 1.5rem;
  color: #222;
  margin-bottom: 10px;
}

.psi_licenses-section_desc {
  font-family: 'Arial', sans-serif;
  font-size: 0.95rem;
  color: #555;
}

.psi_footer_container {
  background-color: #1d1d1d;
  padding: 40px 0;
  color: #fff;
  text-align: center;
}

.psi_footer_logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffde00;
  margin-bottom: 10px;
}

.psi_footer_text {
  font-size: 1rem;
  padding: 25px;
  margin-bottom: 10px;
}

.psi_footer_link {
  color: #ffde00;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.psi_footer_link:hover {
  color: #ff8c00;
}

.psi_footer_orgs {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.psi_regulator_logo {
  max-width: 150px;
  max-height: 50px;
}

.psi_age_badge {
  width: 77px;
  height: 77px;
  font-size: 2rem;
  font-weight: bold;
  color: #ff5e62;
  padding: 13px 10px;
  background-color: #fff;
  border-radius: 50%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.psi_footer_container {
  animation: fadeIn 1.5s ease-in-out;
}

.psi_footer_about {
    display: flex;
    flex-direction: column;
}

@media (max-width: 1024px) {
    .psi_features_list {
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .psi_features_item {
      width: 45%;
      margin-bottom: 20px;
    }
  
    .psi_top_offer {
      flex-direction: column;
      padding: 15px;
      margin-top: 20px;
    }
  
    .psi_top_offer .psi_offer_left,
    .psi_top_offer .psi_offer_right {
      align-items: center;
      margin-bottom: 20px;
    }
  
    .psi_offer_button {
      padding: 10px 18px;
      font-size: 15px;
    }
  
    .psi_main_title {
      font-size: 2rem;
    }
  
    .psi_advantage__pair {
      flex-direction: column;
      gap: 20px;
    }
  
    .psi_content_section {
      width: 100%;
      margin-bottom: 20px;
    }
  
    .psi_header_logo {
      font-size: 1.8rem;
    }
  
    .psi_header_button {
      font-size: 14px;
    }
  
    .psi_footer_logo {
      font-size: 1.6rem;
    }
}
  
@media (max-width: 768px) {
    .psi_features_item {
      width: 48%;
      margin-bottom: 20px;
    }
  
    .psi_top_offer {
      flex-direction: column;
      padding: 15px;
      margin-top: 20px;
    }
  
    .psi_top_offer .psi_offer_left,
    .psi_top_offer .psi_offer_right {
      align-items: center;
      margin-bottom: 20px;
    }
  
    .psi_offer_button {
      padding: 12px 18px;
      font-size: 16px;
    }
  
    .psi_main_title {
      font-size: 2.2rem;
    }
  
    .psi_advantage__pair {
      flex-direction: column;
      gap: 25px;
    }
  
    .psi_content_section {
      width: 100%;
      margin-bottom: 20px;
    }

    .psi_licenses-section_wrap {
      padding: 50px 5px;
    }

    .psi_licenses-section_title {
      font-size: 2rem;
    }
  
    .psi_header_logo {
      font-size: 1.6rem;
    }
  
    .psi_header_button {
      font-size: 14px;
    }
  
    .psi_footer_logo {
      font-size: 1.5rem;
    }

    .psi_footer_orgs {
        flex-direction: column;
        flex-wrap: wrap;
        gap: 22px;
    }

    .psi_age_badge {
        margin: 15px auto;
    }
  
    .psi_footer_text {
      font-size: 0.9rem;
    }
}
  
@media (max-width: 480px) {
    body {
      padding: 0 5px;
    }
  
    .psi_header_container {
      padding: 10px 0;
    }
  
    .psi_header_logo {
      font-size: 1.5rem;
    }
  
    .psi_header_button {
      padding: 8px 15px;
      font-size: 13px;
    }
  
    .psi_features_item {
      width: 90%;
      margin-bottom: 15px;
    }
  
    .psi_top_offer {
      flex-direction: column;
      padding: 15px;
      margin-top: 15px;
    }
  
    .psi_top_offer .psi_offer_left,
    .psi_top_offer .psi_offer_right {
      align-items: center;
      margin-bottom: 15px;
    }
  
    .psi_offer_button {
      padding: 12px 18px;
      font-size: 15px;
    }
  
    .psi_main_title {
      font-size: 2rem;
    }
  
    .psi_advantage__pair {
      flex-direction: column;
      gap: 20px;
    }
  
    .psi_content_section {
      width: 100%;
      margin-bottom: 20px;
    }
  
    .psi_footer_logo {
      font-size: 1.4rem;
    }
  
    .psi_footer_text {
        padding: 0 15px;
      font-size: 0.8rem;
    }
  
    .psi_footer_link {
      font-size: 1rem;
    }
  
    .psi_footer_orgs {
      flex-direction: column;
      gap: 10px;
    }
  
    .psi_regulator_logo {
      max-width: 250px;
    }

    .psi_main_highlight {
        padding: 40px 0 0;
    }

    .psi_cookie_notice {
        flex-direction: column;
        gap: 22px;
    }

    .psi_footer_copyright {
        margin-top: 21px;
    }
    
}
