* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Lusitana', serif;
  color: #000000;
  background: linear-gradient(90deg, #0a00cc, #000594);
  background-size: 400% 400%;
  animation: gradientShift 10s ease infinite;
  min-height: 100vh;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.pll-header-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1820px;
  margin: 0 auto;
  padding: 1rem 2rem;
  background-color: transparent;
}

.pll-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 2rem;
  flex-wrap: nowrap;
}

.pll-header-site-name a {
  font-family: 'Vollkorn SC', serif;
  font-size: 2rem;
  color: #ffffff;
  text-decoration: none;
}

.pll-header-navigation ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.pll-header-navigation li a {
  font-family: 'Vollkorn SC', serif;
  font-size: 1.6rem;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.pll-header-navigation li a:hover {
  color: #ffd700;
}

.pll-header-logo img {
  width: 6rem;
  height: auto;
}

.pll-header-burger {
  display: none;
  background: none;
  border: none;
  font-size: 2.4rem;
  color: #ffffff;
  cursor: pointer;
}

.pll-header-bottom {
  margin-top: 1rem;
  text-align: center;
}

.pll-header-bottom p {
  font-size: 1.6rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  animation: floatText 3s ease-in-out infinite;
}

@keyframes floatText {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@media (max-width: 1280px) {
  .pll-header-site-name a {
    font-size: 1.9rem;
  }

  .pll-header-navigation li a {
    font-size: 1.5rem;
  }

  .pll-header-logo img {
    width: 5.5rem;
  }
}

@media (max-width: 1024px) {
  .pll-header-navigation ul {
    gap: 2rem;
  }

  .pll-header-bottom p {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .pll-header-top {
    flex-wrap: wrap;
  }

  .pll-header-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 5, 148, 0.95);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }

  .pll-header-navigation.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    margin-top: 60px;
    z-index: 8;
    background: rgba(0, 5, 148, 0.99);
  }

  .pll-header-navigation ul {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
    
  }

  .pll-header-burger {
    display: block;
    
  }
}

@media (max-width: 480px) {
  .pll-header-site-name a {
    font-size: 1.6rem;
  }

  .pll-header-navigation li a {
    font-size: 1.4rem;
  }

  .pll-header-logo img {
    width: 5rem;
  }

  .pll-header-bottom p {
    font-size: 1.4rem;
    gap: 0.4rem;
  }
}

.pll-featured-platforms-section {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.pll-featured-platforms-background {
  position: relative;
  width: 100%;
  min-height: 60rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pll-featured-platforms-background img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  z-index: 0;
}

.pll-featured-platforms-content {
  position: relative;
  z-index: 1;
  max-width: 1820px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
  color: #ffffff;
}

.pll-featured-platforms-content h2 {
  font-family: 'Vollkorn SC', serif;
  font-size: 4rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out forwards;
}

.pll-featured-platforms-content p {
  font-family: 'Lusitana', serif;
  font-size: 1.8rem;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1.5s ease-out forwards;
}

.pll-featured-cards {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.pll-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2.5rem;
  width: calc(25% - 2rem);
  min-height: 22rem;
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease;
  animation: floatCard 3s ease-in-out infinite;
}

.pll-card:hover {
  transform: translateY(-1rem);
}

.pll-card i {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #ffd700;
}

.pll-card h3 {
  font-family: 'Vollkorn SC', serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.pll-card p {
  font-family: 'Lusitana', serif;
  font-size: 1.6rem;
}

.pll-featured-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Vollkorn SC', serif;
  font-size: 1.8rem;
  padding: 1.5rem 3rem;
  background: linear-gradient(90deg, #000594, #0a00cc);
  color: #ffffff;
  text-decoration: none;
  border-radius: 0.8rem;
  transition: background 0.3s ease;
  gap: 1rem;
  animation: pulseButton 2s ease-in-out infinite;
}

.pll-featured-button:hover {
  background: linear-gradient(90deg, #0a00cc, #000594);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-0.5rem); }
}

@keyframes pulseButton {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@media (max-width: 1280px) {
  .pll-featured-platforms-content h2 {
    font-size: 3.6rem;
  }

  .pll-featured-platforms-content p {
    font-size: 1.7rem;
  }

  .pll-card {
    width: calc(33% - 2rem);
  }
}

@media (max-width: 1024px) {
  .pll-featured-platforms-content h2 {
    font-size: 3.2rem;
  }

  .pll-featured-platforms-content p {
    font-size: 1.6rem;
  }

  .pll-card {
    width: calc(50% - 2rem);
  }
}

@media (max-width: 768px) {
  .pll-featured-platforms-content h2 {
    font-size: 2.8rem;
  }

  .pll-featured-platforms-content p {
    font-size: 1.5rem;
  }

  .pll-card {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .pll-featured-platforms-content h2 {
    font-size: 2.4rem;
  }

  .pll-featured-platforms-content p {
    font-size: 1.4rem;
  }

  .pll-card {
    padding: 2rem;
  }

  .pll-featured-button {
    font-size: 1.6rem;
    padding: 1.3rem 2.5rem;
  }
}

.pll-featured-platforms-section {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.pll-featured-platforms-content {
  position: relative;
  z-index: 1;
  max-width: 1820px;
  margin: 0 auto;
  padding: 6rem 2rem;
  text-align: center;
  color: #ffffff;
  background: url('../pll-image/pll-bg-img.jpg') no-repeat center center / cover;
  min-height: 60rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: backgroundShift 10s ease infinite;
}

@keyframes backgroundShift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.95; }
}

.pll-featured-platforms-content h1 {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 1rem;
  padding: 2.5rem;
  font-family: 'Vollkorn SC', serif;
  font-size: 4rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out forwards;
}

.pll-featured-platforms-content p {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 1rem;
  padding: 2rem;
  font-family: 'Lusitana', serif;
  font-size: 1.8rem;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1.5s ease-out forwards;
}

.pll-featured-cards {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.pll-card {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 1rem;
  padding: 2.5rem;
  width: calc(25% - 2rem);
  min-height: 22rem;
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease;
  animation: floatCard 3s ease-in-out infinite;
}

.pll-card:hover {
  transform: translateY(-1rem);
}

.pll-card i {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #ffd700;
}

.pll-card h3 {
  font-family: 'Vollkorn SC', serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.pll-card p {
  font-family: 'Lusitana', serif;
  font-size: 1.6rem;
}

.pll-featured-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Vollkorn SC', serif;
  font-size: 1.8rem;
  padding: 1.5rem 3rem;
  background: linear-gradient(90deg, #000594, #0a00cc);
  color: #ffffff;
  text-decoration: none;
  border-radius: 0.8rem;
  transition: background 0.3s ease;
  gap: 1rem;
  animation: pulseButton 2s ease-in-out infinite;
}

.pll-featured-button:hover {
  background: linear-gradient(90deg, #0a00cc, #000594);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-0.5rem); }
}

@keyframes pulseButton {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@media (max-width: 1280px) {
  .pll-featured-platforms-content h2 {
    font-size: 3.6rem;
  }

  .pll-featured-platforms-content p {
    font-size: 1.7rem;
  }

  .pll-card {
    width: calc(33% - 2rem);
  }
}

@media (max-width: 1024px) {
  .pll-featured-platforms-content h2 {
    font-size: 3.2rem;
  }

  .pll-featured-platforms-content p {
    font-size: 1.6rem;
  }

  .pll-card {
    width: calc(50% - 2rem);
  }
}

@media (max-width: 768px) {
  .pll-featured-platforms-content h2 {
    font-size: 2.8rem;
  }

  .pll-featured-platforms-content p {
    font-size: 1.5rem;
  }

  .pll-card {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .pll-featured-platforms-content h2 {
    font-size: 2.4rem;
  }

  .pll-featured-platforms-content p {
    font-size: 1.4rem;
  }

  .pll-card {
    padding: 2rem;
  }

  .pll-featured-button {
    font-size: 1.6rem;
    padding: 1.3rem 2.5rem;
  }
}

.pll-platforms-section {
  width: 100%;
  padding: 6rem 2rem;
  background: #ffffff;
  color: #000000;
  max-width: 1820px;
  margin: 0 auto;
}

.pll-platforms-intro {
  text-align: center;
  margin-bottom: 5rem;
}

.pll-platforms-intro h2 {
  font-family: 'Vollkorn SC', serif;
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out forwards;
}

.pll-platforms-intro p {
  font-family: 'Lusitana', serif;
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  animation: fadeInUp 1.3s ease-out forwards;
}

.pll-comparison-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Vollkorn SC', serif;
  font-size: 1.8rem;
  padding: 1.5rem 3rem;
  background: linear-gradient(90deg, #000594, #0a00cc);
  color: #ffffff;
  text-decoration: none;
  border-radius: 0.8rem;
  transition: background 0.3s ease;
  gap: 1rem;
  animation: pulseButton 2s ease-in-out infinite;
}

.pll-comparison-button:hover {
  background: linear-gradient(90deg, #0a00cc, #000594);
}

.pll-platform-cards {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.pll-platform-card {
  flex: 1 1 calc(33% - 2rem);
  min-height: 40rem;
  background-color: #f8f8f8;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  animation: floatCard 3s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pll-platform-card:hover {
  transform: translateY(-1rem);
}

.pll-platform-card h3 {
  font-family: 'Vollkorn SC', serif;
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}

.pll-platform-card img {
  width: 12rem;
  height: auto;
  margin-bottom: 2rem;
}

.pll-platform-card p {
  font-family: 'Lusitana', serif;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.pll-platform-card p i {
  color: #000594;
}

.pll-visit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Vollkorn SC', serif;
  font-size: 1.6rem;
  padding: 1.2rem 2.5rem;
  background: #e0e0e0;
  color: #000000;
  text-decoration: none;
  border-radius: 0.6rem;
  transition: background 0.3s ease, color 0.3s ease;
  gap: 0.8rem;
  margin-top: auto;
}

.pll-visit-button:hover {
  background: #000594;
  color: #ffffff;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-0.5rem); }
}

@keyframes pulseButton {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@media (max-width: 1280px) {
  .pll-platforms-intro h2 {
    font-size: 3.6rem;
  }

  .pll-platforms-intro p {
    font-size: 1.7rem;
  }

  .pll-comparison-button {
    font-size: 1.7rem;
    padding: 1.4rem 2.8rem;
  }

  .pll-platform-card {
    flex: 1 1 calc(50% - 2rem);
  }
}

@media (max-width: 1024px) {
  .pll-platforms-intro h2 {
    font-size: 3.2rem;
  }

  .pll-platforms-intro p {
    font-size: 1.6rem;
  }

  .pll-comparison-button {
    font-size: 1.6rem;
    padding: 1.3rem 2.6rem;
  }

  .pll-platform-card {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .pll-platforms-intro h2 {
    font-size: 2.8rem;
  }

  .pll-platforms-intro p {
    font-size: 1.5rem;
  }

  .pll-comparison-button {
    font-size: 1.5rem;
    padding: 1.2rem 2.4rem;
  }

  .pll-platform-card {
    padding: 2rem;
  }

  .pll-platform-card img {
    width: 10rem;
  }
}

@media (max-width: 480px) {
  .pll-platforms-intro h2 {
    font-size: 2.4rem;
  }

  .pll-platforms-intro p {
    font-size: 1.4rem;
  }

  .pll-comparison-button {
    font-size: 1.4rem;
    padding: 1.1rem 2.2rem;
  }

  .pll-platform-card img {
    width: 8rem;
  }

  .pll-platform-card p {
    font-size: 1.4rem;
  }

  .pll-visit-button {
    font-size: 1.4rem;
    padding: 1rem 2rem;
  }
}

.pll-responsible-gambling-section {
  width: 100%;
  min-height: 60rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  animation: backgroundShift 10s ease infinite;
}

@keyframes backgroundShift {
  0%, 100% { opacity: 0.95; }
  50% { opacity: 0.85; }
}

.pll-responsible-gambling-content {
  max-width: 1820px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
  z-index: 2;
  position: relative;
  opacity: 1;
}

.pll-responsible-gambling-content h2 {
  font-family: 'Vollkorn SC', serif;
  font-size: 4rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out forwards;
}

.pll-responsible-gambling-content p {
  font-family: 'Lusitana', serif;
  font-size: 1.8rem;
  line-height: 1.7;
  margin-bottom: 4rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1.5s ease-out forwards;
}

.pll-responsible-gambling-content a {
  color: #ffd700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.pll-responsible-gambling-content a:hover {
  color: #ffffff;
}

.pll-partner-logos {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  animation: floatLogos 3s ease-in-out infinite;
}

.pll-partner-logos img {
  width: 10rem;
  height: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.pll-partner-logos a:hover img {
  filter: brightness(0.8) invert(1);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatLogos {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-0.5rem); }
}

@media (max-width: 1280px) {
  .pll-responsible-gambling-content h2 {
    font-size: 3.6rem;
  }

  .pll-responsible-gambling-content p {
    font-size: 1.7rem;
  }

  .pll-partner-logos img {
    width: 10rem;
  }
}

@media (max-width: 1024px) {
  .pll-responsible-gambling-content h2 {
    font-size: 3.2rem;
  }

  .pll-responsible-gambling-content p {
    font-size: 1.6rem;
  }

  .pll-partner-logos img {
    width: 9rem;
  }
}

@media (max-width: 768px) {
  .pll-responsible-gambling-content h2 {
    font-size: 2.8rem;
  }

  .pll-responsible-gambling-content p {
    font-size: 1.5rem;
  }

  .pll-partner-logos img {
    width: 8rem;
  }
}

@media (max-width: 480px) {
  .pll-responsible-gambling-content h2 {
    font-size: 2.4rem;
  }

  .pll-responsible-gambling-content p {
    font-size: 1.4rem;
  }

  .pll-partner-logos img {
    width: 7rem;
  }
}

.pll-footer-section {
  width: 100%;
  background: linear-gradient(90deg, #000594, #0a00cc);
  color: #ffffff;
  padding: 4rem 2rem;
  font-family: 'Lusitana', serif;
}

.pll-footer-container {
  max-width: 1820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.pll-footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 1.5rem;
  text-align: center;
  animation: fadeInUp 1s ease-out forwards;
}

.pll-footer-links a {
  display: block;
  font-size: 1.6rem;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.pll-footer-links a:hover {
  color: #ffd700;
}

.pll-footer-copyright {
  text-align: center;
  font-size: 1.5rem;
  animation: fadeInUp 1.2s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .pll-footer-links {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
  }
}

.pll-age-confirmation-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.99);
}

.pll-age-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.99);
  z-index: -1;
}

.pll-age-content {
  background-color: #ffffff;
  padding: 4rem 3rem;
  border-radius: 1rem;
  max-width: 50rem;
  width: 90%;
  text-align: center;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.6s ease-out forwards;
}

.pll-age-content h2 {
  font-family: 'Vollkorn SC', serif;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #000000;
}

.pll-age-content p {
  font-family: 'Lusitana', serif;
  font-size: 1.6rem;
  margin-bottom: 2.5rem;
  color: #000000;
}

.pll-age-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.pll-age-yes,
.pll-age-no {
  font-family: 'Vollkorn SC', serif;
  font-size: 1.6rem;
  padding: 1.2rem 2.5rem;
  border-radius: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pll-age-yes {
  background: linear-gradient(90deg, #000594, #0a00cc);
  color: #ffffff;
  border: none;
}

.pll-age-yes:hover {
  background: linear-gradient(90deg, #0a00cc, #000594);
}

.pll-age-no {
  background: transparent;
  color: #000000;
  border: 2px solid #000000;
}

.pll-age-no:hover {
  background: #000000;
  color: #ffffff;
}

.pll-cookie-consent-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f8f8f8;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  box-shadow: 0 -0.3rem 1rem rgba(0, 0, 0, 0.1);
  animation: slideUp 0.6s ease-out forwards;
}

.pll-cookie-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
}

.pll-cookie-consent-modal p {
  font-family: 'Lusitana', serif;
  font-size: 1.5rem;
  color: #000000;
  margin-right: 2rem;
}

.pll-cookie-consent-modal a {
  color: #000594;
  text-decoration: underline;
}

.pll-cookie-accept {
  font-family: 'Vollkorn SC', serif;
  font-size: 1.5rem;
  padding: 0.8rem 1.8rem;
  background: linear-gradient(90deg, #000594, #0a00cc);
  color: #ffffff;
  border: none;
  border-radius: 0.6rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.pll-cookie-accept:hover {
  background: linear-gradient(90deg, #0a00cc, #000594);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(5rem);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.pllpage-cookie-main-header {
  width: 100%;
  background: linear-gradient(90deg, #0a00cc, #000594);
  color: #ffffff;
  padding: 6rem 2rem;
  font-family: 'Lusitana', serif;
}

.pllpage-cookie-header-content {
  max-width: 1820px;
  margin: 0 auto;
  text-align: center;
}

.pllpage-cookie-header-content h1 {
  font-family: 'Vollkorn SC', serif;
  font-size: 4.5rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out forwards;
}

.pllpage-cookie-header-content p {
  font-family: 'Lusitana', serif;
  font-size: 1.8rem;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1.3s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pllpage-cookie-policy-section {
  width: 100%;
  background-color: #ffffff;
  color: #000000;
  padding: 6rem 2rem;
  font-family: 'Lusitana', serif;
}

.pllpage-cookie-policy-container {
  max-width: 1820px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
}

.pllpage-cookie-policy-block {
  flex: 1 1 calc(33% - 2rem);
  min-height: 22rem;
  background-color: #f8f8f8;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  animation: floatCard 3s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pllpage-cookie-policy-block:hover {
  transform: translateY(-1rem);
}

.pllpage-cookie-policy-block i {
  font-size: 3.5rem;
  color: #000594;
  margin-bottom: 1.5rem;
}

.pllpage-cookie-policy-block h3 {
  font-family: 'Vollkorn SC', serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.pllpage-cookie-policy-block p {
  font-family: 'Lusitana', serif;
  font-size: 1.6rem;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-0.5rem); }
}

@media (max-width: 1280px) {
  .pllpage-cookie-header-content h1 {
    font-size: 4rem;
  }

  .pllpage-cookie-header-content p {
    font-size: 1.7rem;
  }

  .pllpage-cookie-policy-block {
    flex: 1 1 calc(50% - 2rem);
  }
}

@media (max-width: 1024px) {
  .pllpage-cookie-header-content h1 {
    font-size: 3.6rem;
  }

  .pllpage-cookie-header-content p {
    font-size: 1.6rem;
  }

  .pllpage-cookie-policy-block {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .pllpage-cookie-header-content h1 {
    font-size: 3.2rem;
  }

  .pllpage-cookie-header-content p {
    font-size: 1.5rem;
  }

  .pllpage-cookie-policy-block p {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .pllpage-cookie-header-content h1 {
    font-size: 2.8rem;
  }

  .pllpage-cookie-header-content p {
    font-size: 1.4rem;
  }

  .pllpage-cookie-policy-block p {
    font-size: 1.4rem;
  }

  .pllpage-cookie-policy-block h3 {
    font-size: 2rem;
  }
}

.pllpage-privacy-main-header {
  width: 100%;
  background: linear-gradient(90deg, #0a00cc, #000594);
  color: #ffffff;
  padding: 6rem 2rem;
  font-family: 'Lusitana', serif;
}

.pllpage-privacy-header-content {
  max-width: 1820px;
  margin: 0 auto;
  text-align: center;
}

.pllpage-privacy-header-content h1 {
  font-family: 'Vollkorn SC', serif;
  font-size: 4.5rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out forwards;
}

.pllpage-privacy-header-content p {
  font-family: 'Lusitana', serif;
  font-size: 1.8rem;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1.3s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pllpage-privacy-policy-section {
  width: 100%;
  background-color: #ffffff;
  color: #000000;
  padding: 6rem 2rem;
  font-family: 'Lusitana', serif;
}

.pllpage-privacy-policy-container {
  max-width: 1820px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
}

.pllpage-privacy-policy-block {
  flex: 1 1 calc(33% - 2rem);
  min-height: 22rem;
  background-color: #f8f8f8;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  animation: floatCard 3s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pllpage-privacy-policy-block:hover {
  transform: translateY(-1rem);
}

.pllpage-privacy-policy-block i {
  font-size: 3.5rem;
  color: #000594;
  margin-bottom: 1.5rem;
}

.pllpage-privacy-policy-block h3 {
  font-family: 'Vollkorn SC', serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.pllpage-privacy-policy-block p {
  font-family: 'Lusitana', serif;
  font-size: 1.6rem;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-0.5rem); }
}

@media (max-width: 1280px) {
  .pllpage-privacy-header-content h1 {
    font-size: 4rem;
  }

  .pllpage-privacy-header-content p {
    font-size: 1.7rem;
  }

  .pllpage-privacy-policy-block {
    flex: 1 1 calc(50% - 2rem);
  }
}

@media (max-width: 1024px) {
  .pllpage-privacy-header-content h1 {
    font-size: 3.6rem;
  }

  .pllpage-privacy-header-content p {
    font-size: 1.6rem;
  }

  .pllpage-privacy-policy-block {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .pllpage-privacy-header-content h1 {
    font-size: 3.2rem;
  }

  .pllpage-privacy-header-content p {
    font-size: 1.5rem;
  }

  .pllpage-privacy-policy-block p {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .pllpage-privacy-header-content h1 {
    font-size: 2.8rem;
  }

  .pllpage-privacy-header-content p {
    font-size: 1.4rem;
  }

  .pllpage-privacy-policy-block p {
    font-size: 1.4rem;
  }

  .pllpage-privacy-policy-block h3 {
    font-size: 2rem;
  }
}

.pllpage-platform-main-header {
  width: 100%;
  background: linear-gradient(90deg, #0a00cc, #000594);
  color: #ffffff;
  padding: 6rem 2rem;
  font-family: 'Lusitana', serif;
}

.pllpage-platform-header-content {
  max-width: 1820px;
  margin: 0 auto;
  text-align: center;
}

.pllpage-platform-header-content h1 {
  font-family: 'Vollkorn SC', serif;
  font-size: 4.5rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out forwards;
}

.pllpage-platform-header-content p {
  font-family: 'Lusitana', serif;
  font-size: 1.8rem;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1.3s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pllpage-platform-selection-section {
  width: 100%;
  background-color: #ffffff;
  color: #000000;
  padding: 6rem 2rem;
  font-family: 'Lusitana', serif;
}

.pllpage-platform-cards {
  max-width: 1820px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
}

.pllpage-platform-card {
  flex: 1 1 calc(33% - 2rem);
  min-height: 45rem;
  background-color: #f8f8f8;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  animation: floatCard 3s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pllpage-platform-card:hover {
  transform: translateY(-1rem);
}

.pllpage-platform-card h3 {
  font-family: 'Vollkorn SC', serif;
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}

.pllpage-platform-card img {
  width: 12rem;
  height: auto;
  margin-bottom: 2rem;
}

.pllpage-platform-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  font-family: 'Lusitana', serif;
  font-size: 1.6rem;
}

.pllpage-platform-card ul li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.pllpage-platform-card ul li i {
  color: #000594;
}

.pllpage-platform-card p {
  font-family: 'Lusitana', serif;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.pllpage-visit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Vollkorn SC', serif;
  font-size: 1.6rem;
  padding: 1.2rem 2.5rem;
  background: linear-gradient(90deg, #000594, #0a00cc);
  color: #ffffff;
  text-decoration: none;
  border-radius: 0.8rem;
  transition: background 0.3s ease;
  gap: 1rem;
}

.pllpage-visit-button:hover {
  background: linear-gradient(90deg, #0a00cc, #000594);
}

.pllpage-responsible-note {
  max-width: 1820px;
  margin: 4rem auto 0;
  text-align: center;
  animation: fadeInUp 1.5s ease-out forwards;
}

.pllpage-responsible-note p {
  font-family: 'Lusitana', serif;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #000000;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-0.5rem); }
}

@media (max-width: 1280px) {
  .pllpage-platform-header-content h1 {
    font-size: 4rem;
  }

  .pllpage-platform-header-content p {
    font-size: 1.7rem;
  }

  .pllpage-platform-card {
    flex: 1 1 calc(50% - 2rem);
  }
}

@media (max-width: 1024px) {
  .pllpage-platform-header-content h1 {
    font-size: 3.6rem;
  }

  .pllpage-platform-header-content p {
    font-size: 1.6rem;
  }

  .pllpage-platform-card {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .pllpage-platform-header-content h1 {
    font-size: 3.2rem;
  }

  .pllpage-platform-header-content p {
    font-size: 1.5rem;
  }

  .pllpage-platform-card {
    padding: 2rem;
  }

  .pllpage-platform-card h3 {
    font-size: 2.2rem;
  }

  .pllpage-platform-card img {
    width: 10rem;
  }

  .pllpage-platform-card ul li {
    font-size: 1.5rem;
  }

  .pllpage-responsible-note p {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .pllpage-platform-header-content h1 {
    font-size: 2.8rem;
  }

  .pllpage-platform-header-content p {
    font-size: 1.4rem;
  }

  .pllpage-platform-card {
    padding: 1.8rem;
  }

  .pllpage-platform-card h3 {
    font-size: 2rem;
  }

  .pllpage-platform-card img {
    width: 8rem;
  }

  .pllpage-platform-card ul li {
    font-size: 1.4rem;
  }

  .pllpage-responsible-note p {
    font-size: 1.4rem;
  }

  .pllpage-visit-button {
    font-size: 1.5rem;
    padding: 1rem 2.2rem;
  }
}

.pllpage-platform-criteria-section {
  width: 100%;
  background-color: #f0f0ff;
  color: #000000;
  padding: 6rem 2rem;
  font-family: 'Lusitana', serif;
}

.pllpage-platform-criteria-container {
  max-width: 1820px;
  margin: 0 auto;
  text-align: center;
}

.pllpage-platform-criteria-container h2 {
  font-family: 'Vollkorn SC', serif;
  font-size: 4rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out forwards;
}

.pllpage-platform-criteria-container p {
  font-family: 'Lusitana', serif;
  font-size: 1.8rem;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 3rem;
  animation: fadeInUp 1.2s ease-out forwards;
}

.pllpage-criteria-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
}

.pllpage-criteria-card {
  flex: 1 1 calc(33% - 2rem);
  min-height: 35rem;
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  animation: floatCard 3s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.pllpage-criteria-card:hover {
  transform: translateY(-1rem);
}

.pllpage-criteria-card h3 {
  font-family: 'Vollkorn SC', serif;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.pllpage-criteria-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'Lusitana', serif;
  font-size: 1.6rem;
}

.pllpage-criteria-card ul li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.pllpage-criteria-card ul li i {
  color: #000594;
  font-size: 1.8rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-0.5rem); }
}

@media (max-width: 1280px) {
  .pllpage-platform-criteria-container h2 {
    font-size: 3.6rem;
  }

  .pllpage-platform-criteria-container p {
    font-size: 1.7rem;
  }

  .pllpage-criteria-card {
    flex: 1 1 calc(50% - 2rem);
  }
}

@media (max-width: 1024px) {
  .pllpage-platform-criteria-container h2 {
    font-size: 3.2rem;
  }

  .pllpage-platform-criteria-container p {
    font-size: 1.6rem;
  }

  .pllpage-criteria-card {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .pllpage-platform-criteria-container h2 {
    font-size: 2.8rem;
  }

  .pllpage-platform-criteria-container p {
    font-size: 1.5rem;
  }

  .pllpage-criteria-card ul li {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .pllpage-platform-criteria-container h2 {
    font-size: 2.4rem;
  }

  .pllpage-platform-criteria-container p {
    font-size: 1.4rem;
  }

  .pllpage-criteria-card {
    padding: 2rem;
  }

  .pllpage-criteria-card h3 {
    font-size: 2rem;
  }

  .pllpage-criteria-card ul li {
    font-size: 1.4rem;
  }
}