
:root {
  --primary-color: #007bff; 
  --primary-gradient: linear-gradient(
    135deg,
    #007bff,
    #0056b3
  ); 
  --secondary-color: #6c757d; 
  --secondary-gradient: linear-gradient(135deg, #6c757d, #5a6268);
  --accent-color: #28a745; 
  --text-color: #333;
  --light-text-color: #f8f9fa;
  --bg-light: #f8f9fa;
  --bg-dark: #343a40;
  --card-bg: #ffffff;
  --border-color: #e0e0e0;
  --shadow-light: rgba(0, 0, 0, 0.08);
  --shadow-medium: rgba(0, 0, 0, 0.15);
  --red-alert: #dc3545;
  --license-link-color: #0056b3;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--bg-light);
  overflow-x: hidden; 
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

h3 {
  font-size: 1.8rem;
  font-weight: 600;
}

h4 {
  font-size: 1.4rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-gradient);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  text-decoration: none; 
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--light-text-color);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px var(--shadow-medium);
}

.btn-secondary {
  background: var(--secondary-gradient);
  color: var(--light-text-color);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px var(--shadow-medium);
}

.btn-tertiary {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-tertiary:hover {
  background: var(--primary-color);
  color: var(--light-text-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px var(--shadow-medium);
}


.ripple {
  position: relative;
  overflow: hidden;
}

.ripple::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition: transform 0.6s, opacity 1s;
}

.ripple:active::after {
  transform: scale(0, 0);
  opacity: 0.2;
  transition: 0s;
}


.section-block {
  padding: 4rem 0;
  background-color: var(--bg-light);
}

.section-block:nth-of-type(even) {
  background-color: #f0f4f8;
}


.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  vertical-align: middle;
}


.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: var(--card-bg);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow-medium);
  max-width: 450px;
  width: 90%;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-logo {
  max-width: 150px;
  margin-bottom: 1.5rem;
}

.modal-content h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.modal-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.modal-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.modal-buttons .btn {
  flex-grow: 1;
  max-width: 180px;
}


.top-disclaimer-bar {
  background-color: var(--red-alert);
  color: var(--light-text-color);
  padding: 0.7rem 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
  z-index: 99;
}

.top-disclaimer-bar p {
  margin: 0;
}

.top-disclaimer-bar .phone-number {
  white-space: nowrap;
}

.top-disclaimer-bar .age-restriction {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-left: 0.5rem;
}


.site-header {
  position: relative;
  background-image: url("uploads/content/colombia-city-skyline.jpg");
  background-size: cover;
  background-position: center;
  color: var(--light-text-color);
  padding: 0px 0 8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 600px;
  overflow: hidden;
}

.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
  z-index: 1;
}

.site-header .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 0;
  margin-bottom: 3rem;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo {
  height: 50px;
  animation: fadeInDown 1s ease-out;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--light-text-color);
  font-weight: 600;
  position: relative;
  padding-bottom: 0.3rem;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.hero-content {
  max-width: 800px;
  margin-top: 2rem;
}

.hero-content h1 {
  color: var(--light-text-color);
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out 0.3s forwards;
  opacity: 0;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease-out 0.6s forwards;
  opacity: 0;
}

.hero-content .btn {
  animation: fadeInUp 1s ease-out 0.9s forwards;
  opacity: 0;
}


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

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


.rating-list-section {
  background-color: var(--bg-light);
}

.rating-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.rating-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--shadow-light);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.rating-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px var(--shadow-medium);
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.platform-logo {
  width: 80px;
  height: auto;
  margin-right: 1rem;
  object-fit: contain;
}

.platform-name {
  margin: 0;
  color: var(--primary-color);
}

.platform-description {
  font-size: 1rem;
  color: var(--text-color);
  flex-grow: 1;
}

.platform-license {
  font-size: 0.9rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.license-link {
  color: var(--license-link-color);
  font-weight: 600;
  text-decoration: underline;
}

.license-link:hover {
  color: var(--primary-color);
}

.rating-stars {
  display: flex;
  align-items: center;
  color: #ffc107; 
  margin-bottom: 1rem;
}

.rating-stars .material-symbols-outlined {
  font-size: 1.5rem;
}

.rating-text {
  margin-left: 0.5rem;
  font-weight: 600;
  color: var(--text-color);
}

.bonus-offer {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.rating-card .btn {
  width: 100%;
  padding: 0.9rem 1.8rem;
  font-size: 1.1rem;
}


.featured-slider-section {
  background-color: #f0f4f8;
}

.slider-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow-light);
  background-color: var(--card-bg);
  padding: 2rem 0;
}

.slider-content {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider-item {
  min-width: 100%;
  flex: 0 0 100%;
  text-align: center;
  padding: 1rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.slider-logo {
  max-width: 120px;
  height: auto;
  margin-bottom: 1rem;
}

.slider-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.slider-item .rating-stars {
  justify-content: center;
  margin-bottom: 1rem;
}

.slider-item p {
  max-width: 600px;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  color: var(--light-text-color);
  border: none;
  padding: 0.8rem 0.5rem;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  transition: background-color 0.3s ease;
}

.slider-nav:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.prev-btn {
  left: 1rem;
}

.next-btn {
  right: 1rem;
}

.slider-pagination {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 0.5rem;
}

.pagination-dot {
  width: 10px;
  height: 10px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.pagination-dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}


.editor-pick-section {
  background-color: var(--bg-light);
}

.editor-pick-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(
    135deg,
    #e0f2f7,
    #c1e4ed
  ); 
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 8px 25px var(--shadow-light);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.editor-pick-card::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: var(--primary-gradient);
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(20px);
}

.editor-pick-card::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--primary-gradient);
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(25px);
}

.pick-score {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.editor-icon {
  font-size: 3rem;
  color: #ffc107;
}

.score-value {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.score-value small {
  font-size: 1.5rem;
  vertical-align: super;
}

.pick-content h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.pick-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  color: var(--text-color);
}

.pick-logo {
  max-width: 150px;
  height: auto;
  margin-top: 1rem;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}


.methodology-section {
  background-color: #f0f4f8;
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: var(--text-color);
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.methodology-item {
  background-color: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--shadow-light);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 250px; 
}

.methodology-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px var(--shadow-medium);
}

.methodology-item .material-symbols-outlined {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #e0f7fa, #b2ebf2);
  padding: 0.8rem;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.methodology-item h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
}

.methodology-item p {
  font-size: 0.95rem;
  color: var(--text-color);
}


.about-us-section {
  background-color: var(--bg-light);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.about-text {
  flex: 1;
  max-width: 600px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-color);
}

.about-text strong {
  color: var(--primary-color);
}

.about-image {
  flex: 1;
  max-width: 500px;
  text-align: center;
}

.about-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px var(--shadow-medium);
}


.faq-section {
  background-color: #f0f4f8;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px var(--shadow-light);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.2rem 1.5rem;
  background-color: #e9f5f9;
  border: none;
  text-align: left;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: #d6ecf3;
}

.accordion-header[aria-expanded="true"] {
  background-color: var(--primary-color);
  color: var(--light-text-color);
}

.accordion-header[aria-expanded="true"] .accordion-icon {
  transform: rotate(180deg);
  color: var(--light-text-color);
}

.accordion-icon {
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}

.accordion-content {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.accordion-content p {
  padding: 1rem 0;
  margin: 0;
  color: var(--text-color);
}


.bonus-terms-section {
  background-color: var(--bg-light);
}

.terms-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  color: var(--text-color);
}

.terms-content p:first-of-type {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  text-align: center;
}

.terms-item {
  background-color: #e9f5f9;
  border-left: 5px solid var(--primary-color);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px var(--shadow-light);
}

.terms-item h3 {
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.terms-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
}


.user-reviews-section {
  background-color: #f0f4f8;
}

.review-summary-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--shadow-light);
  padding: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.overall-rating {
  margin-bottom: 2rem;
}

.rating-value {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.overall-rating .rating-stars {
  justify-content: center;
  color: #ffc107;
  margin-bottom: 0.5rem;
}

.overall-rating .rating-stars .material-symbols-outlined {
  font-size: 2rem;
}

.total-reviews {
  font-size: 1rem;
  color: var(--secondary-color);
}

.review-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.review-carousel {
  display: flex;
  transition: transform 0.8s ease-in-out;
}

.review-item {
  flex: 0 0 100%;
  padding: 1.5rem;
  background-color: #f8fcfd;
  border-radius: 10px;
  border: 1px solid #e0f2f7;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 0.8rem;
  border: 3px solid var(--primary-color);
}

.reviewer-name {
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
  font-size: 1.1rem;
}

.quote-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 10px;
}

.review-text {
  font-style: italic;
  color: var(--text-color);
  font-size: 1.05rem;
  margin-top: 0.5rem;
}


.disclaimer-block {
  background-color: #fff3cd; 
  border-top: 5px solid #ffc107; 
  border-bottom: 5px solid #ffc107;
  padding: 3rem 0;
  margin-top: 4rem;
  color: #856404; 
  text-align: center;
}

.disclaimer-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

.disclaimer-content .warning-icon {
  font-size: 3.5rem;
  color: #ffc107;
  margin-bottom: 1rem;
  display: block;
}

.disclaimer-content h2 {
  color: #856404;
  margin-bottom: 1.5rem;
}

.disclaimer-content p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.disclaimer-content a {
  color: #0056b3;
  text-decoration: underline;
}

.support-info {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(133, 100, 4, 0.3);
}

.support-info p {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}


.site-footer {
  background-color: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 1rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h3 {
  color: var(--light-text-color);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--primary-color);
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo {
  height: 45px;
}

.footer-description {
  margin-bottom: 1.5rem;
}

.responsible-gaming-text {
  font-size: 0.85rem;
  line-height: 1.5;
}

.responsible-gaming-text a {
  color: var(--primary-color);
  text-decoration: underline;
}

.footer-partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
}

.partner-logo {
  max-width: 120px;
  height: auto;
  object-fit: contain;
  transition: transform 0.2s ease;
}

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

.age-icon {
  max-width: 60px;
  filter: none; 
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}


.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background-color: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 8px 25px var(--shadow-medium);
  max-width: 400px;
  width: 90%;
  z-index: 999;
  padding: 1.5rem;
  display: none; 
  flex-direction: column;
  gap: 1rem;
  border: 1px solid var(--border-color);
  transform: translateX(120%);
  transition: transform 0.5s ease-out;
}

.cookie-banner.show {
  transform: translateX(0);
}

.cookie-banner h3 {
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  text-align: left;
}

.cookie-banner p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.cookie-policy-link {
  color: var(--primary-color);
  text-decoration: underline;
}

.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.cookie-category-item {
  display: flex;
  align-items: center;
}

.cookie-category-item input[type="checkbox"] {
  margin-right: 0.8rem;
  width: 18px;
  height: 18px;
  accent-color: var(--primary-color);
}

.cookie-category-item label {
  font-weight: 600;
  color: var(--text-color);
  font-size: 0.95rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.cookie-buttons .btn {
  flex-grow: 1;
  font-size: 0.9rem;
  padding: 0.7rem 1.2rem;
}


.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px var(--shadow-medium);
  max-width: 600px;
  transform: translateY(-50px);
  transition: transform 0.3s ease;
  text-align: left;
  width: 100%;
       max-height: 700px; 
  overflow-y: auto; 
}

.cookie-modal-overlay.active .cookie-modal-content {
  transform: translateY(-150px);
}

.cookie-modal-content h3 {
  margin-bottom: 1rem;
}

.cookie-modal-content p {
  margin-bottom: 15px;
}

.cookie-categories-modal {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 2rem;
}

.cookie-categories-modal .cookie-category-item {
  align-items: flex-start;
  flex-direction: column;
}

.cookie-categories-modal .cookie-category-item label {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.cookie-categories-modal .cookie-category-item input {
  align-self: flex-start;
  margin-top: 0.2rem;
}

.cookie-categories-modal .category-description {
  font-size: 0.85rem;
  color: var(--secondary-color);
  margin-top: 0.3rem;
  margin-left: 26px; 
}

.cookie-modal-content .btn {
  width: auto;
  margin-left: auto;
  display: block;
}


.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 992px) {
  .site-header {
    padding: 0px 0 6rem;
    min-height: 500px;
  }

  .navbar {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .editor-pick-card {
    padding: 2rem;
  }

  .pick-score {
    flex-direction: column;
  }

  .score-value {
    font-size: 3rem;
  }

  .score-value small {
    font-size: 1.2rem;
  }

  .pick-content h3 {
    font-size: 1.6rem;
  }

  .methodology-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .about-content {
    flex-direction: column;
  }

  .about-image,
  .about-text {
    max-width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col ul {
    padding-left: 0;
  }

  .footer-logo {
    margin: 0 auto 1rem;
  }

  .footer-partners {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }

  .partner-logo {
    max-width: 100px;
  }

  .cookie-banner {
    bottom: 1rem;
    right: 1rem;
    max-width: 95%;
    width: auto;
  }

}

@media (max-width: 768px) {
  .site-header {
    padding: 0px 0 5rem;
    min-height: 450px;
  }

  .logo {
    height: 40px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
  }

  .nav-links li {
    margin: 0 0.5rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .modal-content {
    padding: 1.5rem;
  }

  .modal-content h2 {
    font-size: 1.6rem;
  }

  .modal-content p {
    font-size: 1rem;
  }

  .slider-nav {
    padding: 0.6rem 0.3rem;
    font-size: 1.5rem;
  }

  .slider-item {
    padding: 1rem 1.5rem;
  }

  .editor-pick-card {
    padding: 1.5rem;
  }

  .pick-score .editor-icon {
    font-size: 2.5rem;
  }

  .score-value {
    font-size: 2.5rem;
  }

  .score-value small {
    font-size: 1rem;
  }

  .pick-content h3 {
    font-size: 1.4rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .methodology-item {
    min-height: auto; 
  }

  .accordion-header {
    font-size: 1rem;
    padding: 1rem 1.2rem;
  }

  .terms-item {
    padding: 1rem;
  }

  .terms-item h3 {
    font-size: 1.2rem;
  }

  .review-item {
    padding: 1rem;
  }

  .review-avatar {
    width: 50px;
    height: 50px;
  }

  .reviewer-name {
    font-size: 1rem;
  }

  .quote-icon {
    font-size: 2rem;
  }

  .review-text {
    font-size: 0.95rem;
  }

  .disclaimer-block {
    padding: 2rem 0;
  }

  .disclaimer-content .warning-icon {
    font-size: 3rem;
  }

  .disclaimer-content h2 {
    font-size: 1.6rem;
  }

  .disclaimer-content p {
    font-size: 0.95rem;
  }

  .footer-col h3 {
    font-size: 1.1rem;
  }

  .footer-partners {
    gap: 0.8rem;
  }

  .partner-logo {
    max-width: 80px;
  }

  .age-icon {
    max-width: 50px;
  }

  .cookie-banner {
    max-width: calc(100% - 2rem);
    left: 1rem;
    right: 1rem;
    transform: translateY(120%);
  }

  .cookie-banner.show {
    transform: translateY(0);
  }
}

.dataClauseFrame {
  
  padding: 2.5rem 1.5rem;
  
  margin-top: 2rem;
  
  background-color: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--shadow-light);
  max-width: 1200px; 
  margin-left: auto;
  margin-right: auto;
}

.dataClauseFrame h1 {
  
  font-size: 2rem; 
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary-color);
  margin-bottom: 1.5rem; 
}

.dataClauseFrame h2 {
  
  font-size: 1.75rem; 
  font-weight: 600;
  line-height: 1.4;
  color: var(--primary-color);
  margin-bottom: 1.25rem; 
}

.dataClauseFrame h3 {
  
  font-size: 1.5rem; 
  font-weight: 600;
  line-height: 1.5;
  color: var(--primary-color);
  margin-bottom: 1rem; 
}

.dataClauseFrame h4 {
  
  font-size: 1.25rem; 
  font-weight: 600;
  line-height: 1.6;
  color: var(--primary-color);
  margin-bottom: 0.8rem; 
}

.dataClauseFrame h5 {
  
  font-size: 1.1rem; 
  font-weight: 600;
  line-height: 1.7;
  color: var(--primary-color);
  margin-bottom: 0.6rem; 
}

.dataClauseFrame p {
  
  font-size: 1rem; 
  line-height: 1.7; 
  color: var(--text-color);
  margin-bottom: 1rem; 
}

.dataClauseFrame ul {
  
  list-style: disc; 
  padding-left: 1.5rem; 
  margin-bottom: 1.5rem; 
  color: var(--text-color);
}

.dataClauseFrame ul li {
  
  font-size: 1rem; 
  line-height: 1.6; 
  margin-bottom: 0.5rem; 
}


@media (max-width: 768px) {
  .dataClauseFrame {
    padding: 1.5rem 1rem; 
  }

  .dataClauseFrame h1 {
    font-size: 1.75rem;
    margin-bottom: 1.2rem;
  }

  .dataClauseFrame h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .dataClauseFrame h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }

  .dataClauseFrame h4 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }

  .dataClauseFrame h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .dataClauseFrame p,
  .dataClauseFrame ul li {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .dataClauseFrame ul {
    padding-left: 1.2rem;
    margin-bottom: 1rem;
  }
}

.footer-logo-link {
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: center;
  justify-content: start;
  font-size: clamp(18px, 4vw, 26px);
  color: #fff;
  transition: 0.4s linear;

  &:hover {
    color: #007bff;
  }
}
.logo-link {
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: center;
  justify-content: center;
  font-size: clamp(18px, 4vw, 26px);
  color: #fff;
  transition: 0.4s linear;

  &:hover {
    color: #007bff;
  }
}

.navbar {
  flex-direction: column;
  gap: 10px;
}

.slider-item a,
.card-header a {
  transition: 0.3s linear;

  &:hover {
    opacity: 0.7;
    transform: scale(0.97);
  }
}

.slider-item a,
.card-header a {
  width: 100%;
  display: inline-block;
  padding: 20px;
}

.slider-item img,
.card-header img {
  max-width: 100% !important;
  width: 100%;
  height: 110px;
  object-fit: contain;
}

.methodology-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

@media (min-width: 768px) {
  .methodology-item {
    flex: 1 1 calc(50% - 20px);
  }
}

.methodology-item:last-child {
  display: flex;
  justify-content: center;
}

@media (max-width: 767px) {
  .review-summary-card {
    padding: 18px;
  }

  .methodology-item {
    width: 100% !important;
  }

  .prev-btn,
  .next-btn {
    display: none;
  }

  .rating-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .modal-content {
    .modal-logo {
      margin: 0;
      max-width: 80px;
    }

    .modal-buttons {
      text-align: center;
      align-items: center;
      flex-direction: column;
      gap: 0.8rem;
    }

    .modal-buttons .btn {
      max-width: 100%;
      width: 100%;
    }
  }
}


@media (max-width: 767px){
    
  .cookie-buttons{
    flex-direction: column;
  }

  .modal-content{
    padding: 10px;
  }

  .cookie-categories-modal .cookie-category-item label,
  .cookie-modal-content p{
    margin-bottom: 0 !important;
  }

  .cookie-categories-modal{
    gap: 10px;
  }

  .cookie-modal-content{
           max-height: 550px; 
  }

  .cookie-modal-content h3{
    margin-bottom: 0;
    font-size: 20px;
  }

  .cookie-modal-overlay.active .cookie-modal-content{
    width: 100%;

  }

  .cookie-categories-modal{
    margin-bottom: 10px;
  }

  .modal-content p{
    font-size: 16px;
  }

  .cookie-modal-overlay.active .cookie-modal-content{
    transform: translateY(-50px);
  }

  
}