.gamegully-global-padding {
  width: 100%;
  overflow: hidden;
}

.gamegully-section-large {
  padding: 80px 32px;
}

.gamegully-section-medium {
  padding: 60px 32px;
}

.gamegully-large-container,
.gamegully-medium-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.gamegully-heading-large {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  color: var(--text-color);
  font-weight: 700;
  font-size: 2.5rem;
}

.gamegully-heading-large::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background-color: var(--primary-accent);
  transition: width 0.3s ease;
}

.gamegully-heading-large:hover::after {
  width: 100%;
}

.gamegully-medium-container p {
  max-width: 900px;
  margin-bottom: 20px;
  color: var(--secondary-text-color);
  font-size: 1.1rem;
  line-height: 1.6;
}

.gamegully-button,
.gamegully-shop-button {
  display: inline-block;
  margin-top: 20px;
  border: 2px solid var(--primary-accent);
  border-radius: 30px;
  padding: 12px 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  background-color: var(--primary-accent);
  transition: all 0.3s ease;
}

.gamegully-button:hover,
.gamegully-shop-button:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  color: var(--primary-accent);
  background-color: #fff;
  transform: translateY(-3px);
}

.gamegully-button i,
.gamegully-shop-button i {
  margin-right: 8px;
}


.gamegully-welcome-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.gamegully-welcome-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  opacity: 0.1;
  background-color: var(--primary-accent);
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.gamegully-welcome-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  gap: 50px;
}

.gamegully-welcome-text h1 {
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
  color: var(--text-color);
  font-weight: 800;
  font-size: 3rem;
}

.gamegully-welcome-text h1::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 120px;
  height: 5px;
  border-radius: 2px;
  background-color: var(--primary-accent);
}

.gamegully-welcome-text p {
  margin-bottom: 20px;
  color: var(--secondary-text-color);
  font-size: 1.1rem;
  line-height: 1.6;
}

.gamegully-welcome-text p:first-of-type {
  margin-bottom: 25px;
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.4rem;
}

.gamegully-welcome-image {
  position: relative;
  text-align: center;
  animation: float 6s ease-in-out infinite;
}

.gamegully-welcome-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.gamegully-welcome-image:hover img {
  transform: scale(1.05);
}

.gamegully-shop-button {
  padding: 14px 28px;
  font-size: 1.1rem;
  background-color: var(--primary-accent);
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}


.gamegully-featured-section {
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

.gamegully-featured-section::after {
  content: '';
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  opacity: 0.1;
  background-color: var(--primary-accent);
}

.gamegully-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.gamegully-featured-item {
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  opacity: 0;
  overflow: hidden;
  background-color: #fff;
  transition: all 0.3s ease;
  transform: translateY(30px);
  animation: fadeUp 0.6s ease forwards;
}

.gamegully-featured-item:nth-child(2) {
  animation-delay: 0.2s;
}

.gamegully-featured-item:nth-child(3) {
  animation-delay: 0.4s;
}

.gamegully-featured-item:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-10px);
}

.gamegully-featured-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gamegully-featured-item:hover img {
  transform: scale(1.1);
}

.gamegully-featured-item h3 {
  margin: 20px 20px 10px;
  color: var(--text-color);
  font-weight: 700;
  font-size: 1.5rem;
}

.gamegully-featured-item p {
  flex-grow: 1;
  padding: 0 20px 20px;
  color: var(--secondary-text-color);
}

.gamegully-featured-item .gamegully-button {
  align-self: flex-start;
  margin: 0 20px 20px;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.gamegully-catalog-section {
  position: relative;
  background-color: #f8f9fa;
}

.gamegully-catalog-limiter {
  max-width: 1200px;
  margin: 0 auto;
}

.gamegully-catalog-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.gamegully-catalog-item {
  transition: transform 0.3s ease;
}

.gamegully-catalog-item:hover {
  transform: translateY(-10px);
}

.gamegully-game-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  background-color: #fff;
}

.gamegully-game-image {
  position: relative;
  display: block;
  height: 200px;
  overflow: hidden;
}

.gamegully-game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gamegully-game-card:hover .gamegully-game-image img {
  transform: scale(1.1);
}

.gamegully-game-text {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 20px;
}

.gamegully-game-title {
  margin-bottom: 15px;
  color: var(--text-color);
  font-weight: 700;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.gamegully-game-link:hover .gamegully-game-title {
  color: var(--primary-accent);
}

.gamegully-game-tags {
  margin-top: auto;
}

.gamegully-tag-order {
  display: inline-block;
  border: 2px solid var(--primary-accent);
  border-radius: 20px;
  padding: 8px 16px;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  background-color: var(--primary-accent);
  transition: all 0.3s ease;
}

.gamegully-tag-order:hover {
  color: var(--primary-accent);
  background-color: #fff;
}

.gamegully-tag-order i {
  margin-right: 5px;
}

.gamegully-divider {
  margin: 60px 0 30px;
}

.gamegully-padding-bottom {
  padding-bottom: 30px;
}

.gamegully-divider-content {
  height: 2px;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.1);
}


.gamegully-categories-section {
  position: relative;
  background-color: #fff;
}

.gamegully-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.gamegully-category-item {
  position: relative;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  background-color: #fff;
  transition: all 0.3s ease;
}

.gamegully-category-item:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-10px);
}

.gamegully-category-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gamegully-category-item:hover img {
  transform: scale(1.1);
}

.gamegully-category-link {
  display: block;
  padding: 15px;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  background-color: var(--primary-accent);
  transition: background-color 0.3s ease;
}

.gamegully-category-link:hover {
  background-color: var(--text-color);
}

.gamegully-category-link i {
  margin-right: 8px;
}

.gamegully-category-item p {
  padding: 15px;
  color: var(--secondary-text-color);
  font-size: 1rem;
  line-height: 1.5;
}


.gamegully-community-section {
  margin: 0 32px;
  border-radius: 15px;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-accent) 0%, #ffd770 100%);
}

.gamegully-community-section .gamegully-heading-large {
  margin-right: auto;
  margin-left: auto;
  color: #fff;
  text-align: center;
}

.gamegully-community-section .gamegully-heading-large::after {
  left: 50%;
  background-color: #fff;
  transform: translateX(-50%);
}

.gamegully-community-section p {
  margin-right: auto;
  margin-left: auto;
  color: #fff;
  text-align: center;
}

.gamegully-community-section .gamegully-button {
  border-color: #fff;
  color: var(--primary-accent);
  background-color: #fff;
}

.gamegully-community-section .gamegully-button:hover {
  color: #fff;
  background-color: transparent;
}


.gamegully-festive-section {
  position: relative;
  overflow: hidden;
  background-color: #f8f9fa;
}

.gamegully-festive-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0.1;
  background-color: var(--primary-accent);
}

.gamegully-festive-section::after {
  content: '';
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0.1;
  background-color: var(--primary-accent);
}

.gamegully-festive-section .gamegully-heading-large {
  color: var(--text-color);
}

.gamegully-festive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.gamegully-festive-content {
  position: relative;
}

.festive-badge {
  display: inline-block;
  margin-bottom: 15px;
  border-radius: 20px;
  padding: 5px 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  color: #000;
  font-weight: 700;
  font-size: 0.9rem;
  background-color: var(--primary-accent);
}

.festive-lead {
  margin-bottom: 20px;
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.3rem;
}

.festive-features {
  margin-bottom: 25px;
  list-style: none;
}

.festive-features li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 30px;
  color: var(--secondary-text-color);
}

.festive-features li i {
  position: absolute;
  top: 2px;
  left: 0;
  color: var(--primary-accent);
}

.festive-description {
  margin-bottom: 25px;
  line-height: 1.6;
}

.festive-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.gamegully-festive-button {
  display: inline-block;
  border: none;
  border-radius: 30px;
  padding: 12px 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: #000;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(45deg, var(--primary-accent), #ffd86b);
  transition: all 0.3s ease;
}

.gamegully-festive-button:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

.festive-timer {
  display: inline-block;
  color: #ff5252;
  font-weight: 600;
  font-size: 0.9rem;
}

.gamegully-festive-showcase {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.festive-card {
  position: relative;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  background-color: #fff;
  transition: all 0.3s ease;
}

.festive-card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-10px);
}

.festive-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.festive-card span {
  display: block;
  padding: 10px;
  color: var(--text-color);
  font-weight: 600;
  text-align: center;
}

.festive-card-1 {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}

.festive-card-2 {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.festive-card-3 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}


.gamegully-tutorials-section {
  position: relative;
  text-align: center;
  background: linear-gradient(135deg, #f0f0f0 0%, #f9f9f9 100%);
}

.gamegully-tutorials-section .gamegully-heading-large {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.gamegully-tutorials-section .gamegully-heading-large::after {
  left: 50%;
  transform: translateX(-50%);
}

.gamegully-tutorials-section p {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}


.gamegully-events-section {
  position: relative;
  background-color: #fff;
}

.events-header {
  margin-bottom: 40px;
  text-align: center;
}

.events-subtitle {
  margin-top: 10px;
  color: var(--secondary-text-color);
  font-weight: 500;
  font-size: 1.2rem;
}

.events-map-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: start;
  gap: 40px;
  margin-bottom: 50px;
}

.india-map {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.india-map img {
  display: block;
  width: 100%;
  height: auto;
}

.map-marker {
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(248, 199, 73, 0.3);
  background-color: var(--primary-accent);
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.map-marker:hover {
  box-shadow: 0 0 0 8px rgba(248, 199, 73, 0.4);
  transform: translate(-50%, -50%) scale(1.2);
}

.map-marker span {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  visibility: hidden;
  border-radius: 5px;
  padding: 5px 10px;
  opacity: 0;
  color: #fff;
  font-size: 0.8rem;
  background-color: #333;
  transition: all 0.3s ease;
  transform: translateX(-50%);
  white-space: nowrap;
}

.map-marker:hover span {
  visibility: visible;
  opacity: 1;
}

.map-marker.north {
  top: 25%;
  left: 40%;
}

.map-marker.west {
  top: 40%;
  left: 20%;
}

.map-marker.south {
  top: 80%;
  left: 50%;
}

.map-marker.east {
  top: 45%;
  left: 70%;
}

.map-marker.central {
  top: 60%;
  left: 50%;
}

.events-upcoming {
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background-color: #f8f9fa;
}

.events-list-title {
  margin-bottom: 20px;
  border-bottom: 2px solid var(--primary-accent);
  padding-bottom: 10px;
  color: var(--text-color);
  font-weight: 700;
  font-size: 1.3rem;
}

.event-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 20px;
}

.event-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.event-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 60px;
  height: 60px;
  border-radius: 10px;
  padding: 5px;
  color: #000;
  text-align: center;
  background-color: var(--primary-accent);
}

.event-month {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.event-day {
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1;
}

.event-details {
  flex: 1;
}

.event-details h4 {
  margin-bottom: 5px;
  color: var(--text-color);
  font-weight: 700;
  font-size: 1.1rem;
}

.event-details p {
  margin-bottom: 10px;
  color: var(--secondary-text-color);
  font-size: 0.9rem;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.event-tags span {
  display: inline-block;
  border-radius: 20px;
  padding: 3px 10px;
  color: var(--secondary-text-color);
  font-size: 0.8rem;
  background-color: #f0f0f0;
}

.events-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.event-feature {
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  background-color: #f8f9fa;
  transition: all 0.3s ease;
}

.event-feature:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.event-feature i {
  display: block;
  margin-bottom: 15px;
  color: var(--primary-accent);
  font-size: 2.5rem;
}

.event-feature h4 {
  margin-bottom: 10px;
  color: var(--text-color);
  font-weight: 700;
  font-size: 1.2rem;
}

.event-feature p {
  color: var(--secondary-text-color);
  font-size: 0.95rem;
  line-height: 1.5;
}

.gamegully-events-button {
  display: block;
  width: max-content;
  margin: 0 auto;
  border-radius: 30px;
  padding: 14px 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  background-color: var(--text-color);
  transition: all 0.3s ease;
}

.gamegully-events-button:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  color: #000;
  background-color: var(--primary-accent);
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .events-map-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .events-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .events-features {
    grid-template-columns: 1fr;
  }

  .gamegully-events-button {
    width: 100%;
    text-align: center;
  }
}


.gamegully-support-section {
  position: relative;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #eaeaea 100%);
}

.gamegully-support-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  opacity: 0.1;
  background-color: var(--primary-accent);
}

.support-container {
  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: start;
  gap: 40px;
}

.support-info {
  padding-right: 20px;
}

.gamegully-heading-support {
  position: relative;
  margin-bottom: 30px;
  color: var(--text-color);
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.2;
}

.support-accent {
  color: var(--primary-accent);
  font-weight: 900;
}

.support-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  margin-bottom: 5px;
  color: var(--text-color);
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
}

.stat-label {
  color: var(--secondary-text-color);
  font-size: 0.9rem;
}

.support-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.channel-item {
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  transition: all 0.3s ease;
}

.channel-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.channel-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  border-radius: 50%;
  background-color: var(--primary-accent);
}

.channel-icon i {
  color: #000;
  font-size: 1.5rem;
}

.channel-details h4 {
  margin-bottom: 8px;
  color: var(--text-color);
  font-weight: 700;
  font-size: 1.1rem;
}

.channel-details p {
  margin-bottom: 5px;
  color: var(--secondary-text-color);
  font-size: 0.9rem;
  line-height: 1.4;
}

.regional-support {
  margin-bottom: 30px;
  border-radius: 15px;
  padding: 20px;
  background-color: rgba(248, 199, 73, 0.15);
}

.regional-support h4 {
  margin-bottom: 10px;
  color: var(--text-color);
  font-weight: 700;
  font-size: 1.1rem;
}

.regional-support p {
  color: var(--secondary-text-color);
  font-size: 0.95rem;
  line-height: 1.5;
}

.regional-support i {
  margin-right: 5px;
  color: var(--primary-accent);
}

.gamegully-support-button {
  display: inline-block;
  border: 2px solid var(--primary-accent);
  border-radius: 30px;
  padding: 14px 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: #000;
  font-weight: 700;
  text-decoration: none;
  background-color: var(--primary-accent);
  transition: all 0.3s ease;
}

.gamegully-support-button:hover {
  color: var(--text-color);
  background-color: transparent;
}

.support-resources {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.support-card {
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background-color: #fff;
}

.support-card h3 {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: var(--text-color);
  font-weight: 700;
  font-size: 1.3rem;
}

.support-card h3 i {
  margin-right: 10px;
  color: var(--primary-accent);
}

.faq-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-question {
  display: block;
  padding: 12px 0;
  color: var(--primary-accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}

.faq-question:hover {
  color: var(--text-color);
}

.faq-answer {
  display: none;
  max-height: 0;
  margin: 0 0 15px 0;
  border-radius: 0 0 8px 8px;
  border-left: 3px solid var(--primary-accent);
  padding: 0 15px 12px 15px;
  opacity: 0;
  color: var(--secondary-text-color);
  font-size: 0.98rem;
  background: #fffbe7;
  transition: opacity 0.3s, max-height 0.3s;
}

.faq-item-open .faq-answer {
  display: block;
  max-height: 200px;
  opacity: 1;
}

.faq-item-open .faq-question {
  color: var(--text-color);
}

.faq-card a {
  position: relative;
  display: block;
  padding-right: 20px;
  color: var(--secondary-text-color);
  transition: color 0.3s ease;
}

.faq-card a:hover {
  color: var(--primary-accent);
}

.faq-card a::after {
  content: '→';
  position: absolute;
  top: 50%;
  right: 0;
  transition: transform 0.3s ease;
  transform: translateY(-50%);
}

.faq-card a:hover::after {
  transform: translateY(-50%) translateX(5px);
}

.video-card {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.video-thumbnail {
  position: relative;
  flex: 1;
  margin-top: 10px;
  border-radius: 10px;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.play-button:hover {
  background-color: var(--primary-accent);
  transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
  color: #fff;
  font-size: 1.5rem;
}

@media (max-width: 992px) {
  .support-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .support-info {
    padding-right: 0;
  }

  .support-channels {
    grid-template-columns: repeat(2, 1fr);
  }

  .support-resources {
    flex-direction: row;
  }

  .support-card {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .support-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-item {
    flex: 1;
    min-width: calc(50% - 20px);
  }

  .support-resources {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .support-channels {
    grid-template-columns: 1fr;
  }

  .gamegully-support-button {
    width: 100%;
    text-align: center;
  }
}


.gamegully-reviews-section {
  position: relative;
  padding-bottom: 100px;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, .7) 100%), url('../images/board-games/reviews-bg.jpg');
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: 100% auto;
}

.gamegully-reviews-section .gamegully-heading-large {
  color: #ddd;
}

.reviews-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 50px;
}

.reviews-title-container {
  flex: 2;
  min-width: 300px;
}

.reviews-subtitle {
  margin-top: 10px;
  color: #f0f0f0;
  font-size: 1.2rem;
}

.reviews-overall {
  flex: 1;
  min-width: 200px;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background-color: #f8f9fa;
}

.reviews-rating {
  text-align: center;
}

.rating-number {
  display: block;
  margin-bottom: 10px;
  color: var(--text-color);
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1;
}

.rating-stars {
  margin-bottom: 10px;
  color: var(--primary-accent);
  font-size: 1.5rem;
}

.rating-count {
  color: var(--secondary-text-color);
  font-size: 0.9rem;
}

.reviews-carousel {
  position: relative;
  margin-bottom: 50px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

@media (max-width: 425px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  position: relative;
  border: 1px solid #f0f0f0;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  background-color: #fff;
  transition: all 0.3s ease;
}

.review-card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-10px);
}

.featured-review {
  border: 2px solid var(--primary-accent);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  border-radius: 20px;
  padding: 5px 10px;
  color: #000;
  font-weight: 700;
  font-size: 0.8rem;
  background-color: var(--primary-accent);
}

.featured-badge i {
  margin-right: 5px;
}

.review-header {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  padding: 20px 20px 15px;
}

.reviewer-image {
  width: 60px;
  height: 60px;
  margin-right: 15px;
  border: 3px solid var(--primary-accent);
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-info {
  flex: 1;
}

.reviewer-info h4 {
  margin-bottom: 5px;
  color: var(--text-color);
  font-weight: 700;
  font-size: 1.1rem;
}

.reviewer-location {
  margin-bottom: 8px;
  color: var(--secondary-text-color);
  font-size: 0.9rem;
}

.reviewer-location i {
  margin-right: 5px;
  color: var(--primary-accent);
}

.reviewer-games {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.reviewer-games span {
  display: inline-block;
  border-radius: 10px;
  padding: 2px 8px;
  color: var(--secondary-text-color);
  font-size: 0.7rem;
  background-color: #f0f0f0;
}

.review-content {
  padding: 20px;
}

.review-rating {
  margin-bottom: 15px;
  color: var(--primary-accent);
  font-size: 1.1rem;
}

.review-content p {
  margin-bottom: 15px;
  color: var(--secondary-text-color);
  font-size: 0.95rem;
  line-height: 1.5;
}

.review-date {
  color: var(--secondary-text-color);
  font-size: 0.8rem;
  text-align: right;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.carousel-prev,
.carousel-next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.carousel-prev:hover,
.carousel-next:hover {
  background-color: var(--primary-accent);
}

.carousel-prev i,
.carousel-next i {
  color: var(--text-color);
}

.carousel-prev:hover i,
.carousel-next:hover i {
  color: #000;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ddd;
  transition: all 0.3s ease;
  cursor: pointer;
}

.dot.active {
  background-color: var(--primary-accent);
  transform: scale(1.2);
}

.reviews-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.gamegully-reviews-button,
.gamegully-review-write-button {
  border-radius: 30px;
  padding: 14px 28px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.gamegully-reviews-button {
  color: #fff;
  background-color: var(--text-color);
}

.gamegully-reviews-button:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background-color: #333;
  transform: translateY(-3px);
}

.gamegully-review-write-button {
  border: 2px solid var(--text-color);
  color: var(--text-color);
  background-color: #fff;
}

.gamegully-review-write-button:hover {
  border-color: var(--primary-accent);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  color: #000;
  background-color: var(--primary-accent);
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .reviews-header {
    flex-direction: column;
    gap: 20px;
  }

  .reviews-overall {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .reviews-cta {
    flex-direction: column;
  }

  .gamegully-reviews-button,
  .gamegully-review-write-button {
    width: 100%;
    text-align: center;
  }
}


.gamegully-about-section {
  position: relative;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
}

.gamegully-about-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0.1;
  background-color: var(--primary-accent);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 60px;
}

.about-story {
  position: relative;
}

.about-badge {
  display: inline-block;
  margin-bottom: 15px;
  border-radius: 20px;
  padding: 5px 15px;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  background-color: var(--text-color);
}

.gamegully-heading-about {
  position: relative;
  margin-bottom: 30px;
  color: var(--text-color);
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 1.2;
}

.gamegully-heading-about::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background-color: var(--primary-accent);
}

.about-quote {
  position: relative;
  margin-bottom: 30px;
  border-left: 4px solid var(--primary-accent);
  padding: 20px;
  background-color: rgba(248, 199, 73, 0.15);
}

.about-quote::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 15px;
  color: rgba(248, 199, 73, 0.3);
  font-size: 3rem;
  line-height: 0.5;
}

.about-quote p {
  margin-bottom: 10px !important;
  padding-left: 20px;
  color: var(--text-color) !important;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.5;
}

.about-quote cite {
  display: block;
  color: var(--secondary-text-color);
  font-weight: 700;
  text-align: right;
}

.about-milestones {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.about-milestones::before {
  content: '';
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 18px;
  z-index: 0;
  width: 2px;
  background-color: #ddd;
}

.milestone {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.milestone-year {
  position: relative;
  display: inline-block;
  min-width: 40px;
  border-radius: 20px;
  padding: 5px 10px;
  color: #000;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  background-color: var(--primary-accent);
}

.milestone p {
  flex: 1;
  margin: 5px 0 0;
  color: var(--secondary-text-color);
  font-size: 0.95rem;
  line-height: 1.5;
}

.about-impact,
.about-team {
  margin-bottom: 30px;
}

.about-impact h3,
.about-team h3 {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: var(--text-color);
  font-weight: 700;
  font-size: 1.3rem;
}

.about-impact h3 i,
.about-team h3 i {
  margin-right: 10px;
  color: var(--primary-accent);
}

.about-impact ul {
  margin-bottom: 15px;
  list-style: none;
}

.about-impact li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
  color: var(--secondary-text-color);
  font-size: 0.95rem;
  line-height: 1.5;
}

.about-impact li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-accent);
  font-size: 1.2rem;
}

.about-team p {
  color: var(--secondary-text-color);
  font-size: 0.95rem;
  line-height: 1.5;
}

.gamegully-about-button {
  display: inline-block;
  margin-top: 10px;
  border: none;
  border-radius: 30px;
  padding: 14px 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(45deg, var(--text-color), #333);
  transition: all 0.3s ease;
}

.gamegully-about-button:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background: linear-gradient(45deg, #333, var(--text-color));
  transform: translateY(-3px);
}

.about-visuals {
  position: relative;
}

.about-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.about-image {
  position: relative;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.about-image:hover {
  z-index: 2;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}

.about-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 8px 10px;
  color: #fff;
  font-size: 0.8rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
}

.about-image-1 {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.about-image-2 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.about-image-3 {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.about-image-4 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.about-stats-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.about-stat {
  flex: 1;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  background-color: #fff;
  transition: all 0.3s ease;
}

.about-stat:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.about-stat .stat-number {
  display: block;
  margin-bottom: 5px;
  color: var(--primary-accent);
  font-weight: 800;
  font-size: 2rem;
}

.about-stat .stat-label {
  color: var(--text-color);
  font-weight: 600;
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visuals {
    order: -1;
  }
}

@media (max-width: 768px) {
  .gamegully-heading-about {
    font-size: 2.2rem;
  }

  .about-image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .about-image-1,
  .about-image-2,
  .about-image-3,
  .about-image-4 {
    grid-column: 1 / 2;
  }

  .about-image-1 {
    grid-row: 1 / 2;
  }

  .about-image-2 {
    grid-row: 2 / 3;
  }

  .about-image-3 {
    grid-row: 3 / 4;
  }

  .about-image-4 {
    grid-row: 4 / 5;
  }
}

@media (max-width: 576px) {
  .about-stats-container {
    flex-direction: column;
    gap: 15px;
  }

  .gamegully-about-button {
    width: 100%;
    text-align: center;
  }
}


@media (max-width: 1200px) {
  .gamegully-section-large {
    padding: 70px 24px;
  }

  .gamegully-section-medium {
    padding: 50px 24px;
  }

  .gamegully-community-section,
  .gamegully-about-section {
    margin: 0 24px;
  }

  .gamegully-featured-grid,
  .gamegully-categories-grid {
    gap: 20px;
  }

  .gamegully-catalog-items {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}

@media (max-width: 992px) {
  .gamegully-welcome-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gamegully-featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gamegully-heading-large {
    font-size: 2.2rem;
  }

  .gamegully-welcome-text h1 {
    font-size: 2.5rem;
  }

  .gamegully-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gamegully-festive-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gamegully-festive-showcase {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .festive-card-1 {
    grid-column: 1 / 3;
  }
}

@media (max-width: 768px) {
  .gamegully-section-large {
    padding: 60px 16px;
  }

  .gamegully-section-medium {
    padding: 40px 16px;
  }

  .gamegully-community-section,
  .gamegully-about-section {
    margin: 0 16px;
  }

  .gamegully-featured-grid {
    grid-template-columns: 1fr;
  }

  .gamegully-heading-large {
    font-size: 2rem;
  }

  .gamegully-welcome-text h1 {
    font-size: 2.2rem;
  }

  .gamegully-welcome-text p:first-of-type {
    font-size: 1.2rem;
  }

  .gamegully-reviews-grid {
    grid-template-columns: 1fr;
  }

  .gamegully-mobile-hide {
    display: none;
  }
}

@media (max-width: 576px) {
  .gamegully-heading-large {
    font-size: 1.8rem;
  }

  .gamegully-welcome-text h1 {
    font-size: 2rem;
  }

  .gamegully-categories-grid {
    grid-template-columns: 1fr;
  }

  .gamegully-medium-container p,
  .gamegully-welcome-text p {
    font-size: 1rem;
  }

  .gamegully-shop-button,
  .gamegully-button {
    width: 100%;
    text-align: center;
  }

  .festive-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .gamegully-festive-button {
    width: 100%;
    text-align: center;
  }
}

.gamegully-game-price {
  display: block;
  margin-top: 2px;
  margin-bottom: 12px;
  color: var(--primary-accent);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
}

@media (max-width: 576px) {
  .gamegully-game-price {
    margin-bottom: 8px;
    font-size: 1rem;
  }
}