.gamegully-privacy-section,
.gamegully-terms-section {
  padding: 80px 0;
  background-color: var(--bg-color);
}

.gamegully-privacy-container,
.gamegully-terms-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.gamegully-privacy-container h1,
.gamegully-terms-container h1 {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
  color: var(--text-color);
  font-weight: 700;
  font-size: 2.5rem;
}

.gamegully-privacy-container h1::after,
.gamegully-terms-container h1::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background-color: var(--primary-accent);
  transition: width 0.3s ease;
}

.gamegully-privacy-container h1:hover::after,
.gamegully-terms-container h1:hover::after {
  width: 100%;
}

.gamegully-last-updated,
.gamegully-terms-updated {
  margin-bottom: 40px;
  color: var(--secondary-text-color);
  font-size: 1rem;
  font-style: italic;
}

.gamegully-policy-block,
.gamegully-terms-block {
  margin-bottom: 48px;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  background-color: #f9f9f9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gamegully-policy-block:hover,
.gamegully-terms-block:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.gamegully-policy-block h2,
.gamegully-terms-block h2 {
  margin-bottom: 20px;
  border-bottom: 2px solid var(--primary-accent);
  padding-bottom: 12px;
  color: var(--text-color);
  font-weight: 700;
  font-size: 1.8rem;
}

.gamegully-policy-block h3,
.gamegully-terms-block h3 {
  margin: 24px 0 16px;
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.4rem;
}

.gamegully-policy-block p,
.gamegully-terms-block p {
  margin-bottom: 16px;
  color: var(--secondary-text-color);
  font-size: 1.05rem;
  line-height: 1.6;
}

.gamegully-policy-block p:last-child,
.gamegully-terms-block p:last-child {
  margin-bottom: 0;
}

.gamegully-policy-block strong,
.gamegully-terms-block strong {
  color: var(--text-color);
  font-weight: 600;
}

.gamegully-policy-block ul,
.gamegully-terms-block ul {
  margin: 16px 0;
  padding-left: 20px;
}

.gamegully-policy-block ul li,
.gamegully-terms-block ul li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 28px;
  color: var(--secondary-text-color);
  font-size: 1.05rem;
  line-height: 1.5;
}

.gamegully-policy-block ul li i,
.gamegully-terms-block ul li i {
  position: absolute;
  top: 4px;
  left: 0;
  color: var(--primary-accent);
}

.gamegully-policy-block a,
.gamegully-terms-block a {
  border-bottom: 1px dashed var(--primary-accent);
  padding-bottom: 2px;
  color: var(--primary-accent);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.gamegully-policy-block a:hover,
.gamegully-terms-block a:hover {
  color: #e6b93e;
}


.gamegully-policy-block:nth-child(odd),
.gamegully-terms-block:nth-child(odd) {
  border-left: 4px solid var(--primary-accent);
  background-color: #f7f9fd;
}

.gamegully-policy-block:nth-child(even),
.gamegully-terms-block:nth-child(even) {
  border-right: 4px solid var(--primary-accent);
  background-color: #f9f7f2;
}

.gamegully-policy-block:nth-child(3n) h2,
.gamegully-terms-block:nth-child(3n) h2 {
  border-radius: 4px;
  border-bottom: none;
  padding-top: 15px;
  padding-left: 16px;
  background: linear-gradient(90deg, var(--primary-accent) 0%, transparent 100%);
}

.gamegully-policy-block:nth-child(3n+1),
.gamegully-terms-block:nth-child(3n+1) {
  background: linear-gradient(to bottom right, #f9f9f9, #f0f0f0);
}

.gamegully-policy-block:nth-child(3n+2),
.gamegully-terms-block:nth-child(3n+2) {
  background: linear-gradient(to bottom right, #f7f9fd, #edf1f7);
}


.gamegully-policy-block i,
.gamegully-terms-block i {
  margin-right: 8px;
  color: var(--primary-accent);
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gamegully-policy-block,
.gamegully-terms-block {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.5s ease forwards;
}


.gamegully-policy-block:nth-child(2),
.gamegully-terms-block:nth-child(2) {
  animation-delay: 0.1s;
}

.gamegully-policy-block:nth-child(3),
.gamegully-terms-block:nth-child(3) {
  animation-delay: 0.2s;
}

.gamegully-policy-block:nth-child(4),
.gamegully-terms-block:nth-child(4) {
  animation-delay: 0.3s;
}

.gamegully-policy-block:nth-child(5),
.gamegully-terms-block:nth-child(5) {
  animation-delay: 0.4s;
}

.gamegully-policy-block:nth-child(6),
.gamegully-terms-block:nth-child(6) {
  animation-delay: 0.5s;
}

.gamegully-policy-block:nth-child(7),
.gamegully-terms-block:nth-child(7) {
  animation-delay: 0.6s;
}

.gamegully-policy-block:nth-child(8),
.gamegully-terms-block:nth-child(8) {
  animation-delay: 0.7s;
}

.gamegully-policy-block:nth-child(9),
.gamegully-terms-block:nth-child(9) {
  animation-delay: 0.8s;
}

.gamegully-policy-block:nth-child(10),
.gamegully-terms-block:nth-child(10) {
  animation-delay: 0.9s;
}

.gamegully-policy-block:nth-child(11),
.gamegully-terms-block:nth-child(11) {
  animation-delay: 1s;
}


.gamegully-terms-block {
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.gamegully-terms-container h1 {
  border-bottom: 2px solid var(--primary-accent);
  padding-bottom: 8px;
}

.gamegully-terms-container h1::after {
  bottom: -5px;
  height: 5px;
  background-color: var(--primary-accent);
}

.gamegully-terms-block:hover {
  transform: translateY(-7px) scale(1.01);
}


@media (max-width: 1000px) {

  .gamegully-privacy-section,
  .gamegully-terms-section {
    padding: 60px 0;
  }

  .gamegully-privacy-container,
  .gamegully-terms-container {
    padding: 0 24px;
  }

  .gamegully-privacy-container h1,
  .gamegully-terms-container h1 {
    font-size: 2.2rem;
  }

  .gamegully-policy-block,
  .gamegully-terms-block {
    padding: 24px;
  }

  .gamegully-policy-block h2,
  .gamegully-terms-block h2 {
    font-size: 1.6rem;
  }

  .gamegully-policy-block h3,
  .gamegully-terms-block h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {

  .gamegully-privacy-section,
  .gamegully-terms-section {
    padding: 40px 0;
  }

  .gamegully-privacy-container,
  .gamegully-terms-container {
    padding: 0 16px;
  }

  .gamegully-privacy-container h1,
  .gamegully-terms-container h1 {
    font-size: 1.8rem;
  }

  .gamegully-last-updated,
  .gamegully-terms-updated {
    margin-bottom: 30px;
    font-size: 0.9rem;
  }

  .gamegully-policy-block,
  .gamegully-terms-block {
    margin-bottom: 30px;
    padding: 20px;
  }

  .gamegully-policy-block h2,
  .gamegully-terms-block h2 {
    margin-bottom: 16px;
    font-size: 1.4rem;
  }

  .gamegully-policy-block h3,
  .gamegully-terms-block h3 {
    margin: 20px 0 12px;
    font-size: 1.2rem;
  }

  .gamegully-policy-block p,
  .gamegully-policy-block ul li,
  .gamegully-terms-block p,
  .gamegully-terms-block ul li {
    font-size: 1rem;
  }

  .gamegully-policy-block ul,
  .gamegully-terms-block ul {
    padding-left: 10px;
  }
}

@media (max-width: 480px) {

  .gamegully-privacy-container h1,
  .gamegully-terms-container h1 {
    font-size: 1.6rem;
  }

  .gamegully-policy-block,
  .gamegully-terms-block {
    margin-bottom: 24px;
    padding: 16px;
  }

  .gamegully-policy-block h2,
  .gamegully-terms-block h2 {
    font-size: 1.3rem;
  }

  .gamegully-policy-block h3,
  .gamegully-terms-block h3 {
    font-size: 1.1rem;
  }

  .gamegully-policy-block p,
  .gamegully-policy-block ul li,
  .gamegully-terms-block p,
  .gamegully-terms-block ul li {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .gamegully-policy-block ul li,
  .gamegully-terms-block ul li {
    margin-bottom: 10px;
    padding-left: 24px;
  }
}