:root {
  --card-accent: #F8C749;
  --card-secondary: #FF9A3C;
  --card-light-bg: #FFFAF0;
  --card-dark-bg: #F8F4E8;
}

.gamegully-global-padding {
  width: 100%;
  overflow: hidden;
}

.gamegully-section-large {
  padding: 80px 32px;
}

.gamegully-section-medium {
  padding: 60px 32px;
}

.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 {
  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 {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  color: var(--primary-accent);
  background-color: #fff;
  transform: translateY(-3px);
}

.gamegully-button i {
  margin-right: 8px;
}

@keyframes cardShuffle {
  0% {
    transform: translateX(0) rotate(0);
  }

  25% {
    transform: translateX(-5px) rotate(-2deg);
  }

  50% {
    transform: translateX(5px) rotate(2deg);
  }

  75% {
    transform: translateX(-5px) rotate(-1deg);
  }

  100% {
    transform: translateX(0) rotate(0);
  }
}

.gamegully-placeholder-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gamegully-card-welcome-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--card-light-bg) 0%, var(--card-dark-bg) 100%);
}

.gamegully-card-welcome-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  opacity: 0.1;
  background-color: var(--card-accent);
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.gamegully-card-welcome-section::after {
  content: '♠ ♥ ♦ ♣';
  position: absolute;
  right: 30px;
  bottom: 20px;
  opacity: 0.2;
  color: var(--primary-accent);
  font-size: 2rem;
}

.gamegully-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.gamegully-card-content h1 {
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
  color: var(--text-color);
  font-weight: 800;
  font-size: 3rem;
}

.gamegully-card-content h1::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 120px;
  height: 5px;
  border-radius: 2px;
  background-color: var(--primary-accent);
}

.gamegully-card-content p {
  margin-bottom: 20px;
  color: var(--secondary-text-color);
  font-size: 1.1rem;
  line-height: 1.6;
}

.gamegully-card-content p:first-of-type {
  margin-bottom: 25px;
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.4rem;
}

.gamegully-card-button {
  display: inline-block;
  margin-top: 30px;
  border: 2px solid var(--primary-accent);
  border-radius: 30px;
  padding: 14px 28px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  background-color: var(--primary-accent);
  transition: all 0.3s ease;
}

.gamegully-card-button:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  color: var(--primary-accent);
  background-color: #fff;
  transform: translateY(-3px);
  animation: cardShuffle 0.6s ease;
}

.gamegully-card-button i {
  margin-right: 8px;
}

.gamegully-featured-cards-section {
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

.gamegully-featured-cards-section::after {
  content: '';
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  opacity: 0.1;
  background-color: var(--card-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: 1px solid rgba(0, 0, 0, 0.05);
  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) rotate(1deg);
}

.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;
}

@media (max-width: 576px) {
  .gamegully-featured-item .gamegully-button {
    margin: 5px 0;
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gamegully-card-catalog-section {
  position: relative;
  background-color: var(--card-light-bg);
}

.gamegully-card-catalog-section::before {
  content: '♠';
  position: absolute;
  top: 30px;
  left: 5%;
  opacity: 0.1;
  color: var(--primary-accent);
  font-size: 3rem;
}

.gamegully-card-catalog-section::after {
  content: '♥';
  position: absolute;
  right: 5%;
  bottom: 30px;
  opacity: 0.1;
  color: var(--primary-accent);
  font-size: 3rem;
}

.gamegully-catalog-limiter {
  max-width: 1200px;
  margin: 0 auto;
}

.gamegully-catalog-list {
  position: relative;
}

.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) rotate(1deg);
}

.gamegully-game-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  background-color: #fff;
}

.gamegully-game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(248, 199, 73, 0.05) 0%, rgba(255, 255, 255, 0) 50%);
  pointer-events: none;
}

.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 {
  position: relative;
  z-index: 2;
  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 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.gamegully-tag-category {
  display: inline-block;
  border-radius: 20px;
  padding: 6px 12px;
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.85rem;
  text-decoration: none;
  background-color: rgba(248, 199, 73, 0.1);
  transition: all 0.3s ease;
}

.gamegully-tag-category:hover {
  background-color: rgba(248, 199, 73, 0.2);
}

.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-category i,
.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: linear-gradient(to right, rgba(0, 0, 0, 0.05), rgba(248, 199, 73, 0.3), rgba(0, 0, 0, 0.05));
}

.gamegully-card-categories-section {
  position: relative;
  background-color: #fff;
}

.gamegully-card-categories-section::before {
  content: '♦';
  position: absolute;
  top: 40px;
  right: 5%;
  opacity: 0.1;
  color: var(--primary-accent);
  font-size: 3rem;
}

.gamegully-card-categories-section::after {
  content: '♣';
  position: absolute;
  bottom: 40px;
  left: 5%;
  opacity: 0.1;
  color: var(--primary-accent);
  font-size: 3rem;
}

.gamegully-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.gamegully-category-item {
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
  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::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(248, 199, 73, 0.05) 0%, rgba(255, 255, 255, 0) 50%);
  pointer-events: none;
}

.gamegully-category-item:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-10px) rotate(1deg);
}

.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 {
  position: relative;
  z-index: 2;
  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 {
  position: relative;
  z-index: 2;
  padding: 15px;
  color: var(--secondary-text-color);
  font-size: 1rem;
  line-height: 1.5;
}

.gamegully-community-section {
  position: relative;
  margin: 0 32px;
  border-radius: 15px;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-accent) 0%, var(--card-secondary) 100%);
}

.gamegully-community-section::before {
  content: '♠ ♥ ♦ ♣';
  position: absolute;
  top: 20px;
  left: 20px;
  opacity: 0.1;
  color: #fff;
  font-size: 1.5rem;
}

.gamegully-community-section::after {
  content: '♠ ♥ ♦ ♣';
  position: absolute;
  right: 20px;
  bottom: 20px;
  opacity: 0.1;
  color: #fff;
  font-size: 1.5rem;
}

.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;
  text-align: center;
  background-color: var(--card-light-bg);
}

.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 {
  margin-right: auto;
  margin-left: auto;
  color: var(--text-color);
  text-align: center;
}

.gamegully-festive-section .gamegully-heading-large::after {
  left: 50%;
  transform: translateX(-50%);
}

.gamegully-festive-section p {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.gamegully-tutorials-section {
  position: relative;
  text-align: center;
  background: linear-gradient(135deg, #f0f0f0 0%, var(--card-dark-bg) 100%);
}

.gamegully-tutorials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f8c749' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 20l20-20 20 20-20 20z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.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;
  overflow: hidden;
  text-align: center;
  background-color: #fff;
}

.gamegully-events-section::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--primary-accent), transparent);
}

.gamegully-events-section .gamegully-heading-large {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.gamegully-events-section .gamegully-heading-large::after {
  left: 50%;
  transform: translateX(-50%);
}

.gamegully-events-section p {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.gamegully-reviews-section {
  position: relative;
  text-align: center;
  background-color: var(--card-light-bg);
}

.gamegully-reviews-section .gamegully-heading-large {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.gamegully-reviews-section .gamegully-heading-large::after {
  left: 50%;
  transform: translateX(-50%);
}

.gamegully-reviews-section p {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.gamegully-reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.gamegully-review-item {
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  background-color: #fff;
  transition: transform 0.3s ease;
}

.gamegully-review-item::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 15px;
  opacity: 0.1;
  color: var(--primary-accent);
  font-weight: 700;
  font-size: 4rem;
  line-height: 1;
}

.gamegully-review-item::after {
  content: '"';
  position: absolute;
  right: 15px;
  bottom: 10px;
  opacity: 0.1;
  color: var(--primary-accent);
  font-weight: 700;
  font-size: 4rem;
  line-height: 1;
}

.gamegully-review-item:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px) rotate(1deg);
}

.gamegully-review-item img {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  border: 3px solid var(--primary-accent);
  border-radius: 50%;
  object-fit: cover;
}

.gamegully-review-item p {
  margin-bottom: 15px;
  color: var(--secondary-text-color);
}

.gamegully-review-item p:first-of-type {
  color: var(--primary-accent);
  font-size: 1.2rem;
}

.gamegully-review-item strong {
  color: var(--text-color);
}

.gamegully-support-section {
  position: relative;
  text-align: center;
  background-color: #fff;
}

.gamegully-support-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f8c749' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 20a20 20 0 1 1 40 0 20 20 0 0 1-40 0z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.gamegully-support-section .gamegully-heading-large {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.gamegully-support-section .gamegully-heading-large::after {
  left: 50%;
  transform: translateX(-50%);
}

.gamegully-support-section p {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

@media (max-width: 1200px) {
  .gamegully-section-large {
    padding: 70px 24px;
  }

  .gamegully-section-medium {
    padding: 50px 24px;
  }

  .gamegully-community-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-card-content h1 {
    font-size: 2.5rem;
  }

  .gamegully-featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gamegully-heading-large {
    font-size: 2.2rem;
  }

  .gamegully-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gamegully-section-large {
    padding: 60px 16px;
  }

  .gamegully-section-medium {
    padding: 40px 16px;
  }

  .gamegully-community-section {
    margin: 0 16px;
  }

  .gamegully-featured-grid {
    grid-template-columns: 1fr;
  }

  .gamegully-heading-large {
    font-size: 2rem;
  }

  .gamegully-card-content h1 {
    font-size: 2.2rem;
  }

  .gamegully-card-content p:first-of-type {
    font-size: 1.2rem;
  }

  .gamegully-reviews-grid {
    grid-template-columns: 1fr;
  }

  .gamegully-mobile-hide {
    display: none;
  }

  .gamegully-game-tags {
    flex-direction: column;
    gap: 10px;
  }

  .gamegully-tag-category,
  .gamegully-tag-order {
    width: 100%;
    text-align: center;
  }

}

@media (max-width: 576px) {
  .gamegully-heading-large {
    font-size: 1.8rem;
  }

  .gamegully-card-content h1 {
    font-size: 2rem;
  }

  .gamegully-categories-grid {
    grid-template-columns: 1fr;
  }

  .gamegully-medium-container p,
  .gamegully-card-content p {
    font-size: 1rem;
  }

  .gamegully-card-button,
  .gamegully-button {
    width: 100%;
    text-align: center;
  }
}

.gamegully-game-price {
  margin-bottom: 12px;
  color: var(--primary-accent);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  text-align: left;
}

.gamegully-events-section {
  position: relative;
  padding: 80px 0;
  background-color: var(--card-light-bg);
}

.gamegully-events-map-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.gamegully-events-map {
  position: relative;
  flex: 1;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.gamegully-events-map img {
  display: block;
  width: 100%;
  height: auto;
}

.gamegully-map-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.gamegully-marker-dot {
  position: relative;
  z-index: 2;
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--primary-accent);
}

.gamegully-marker-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  opacity: 0.3;
  background-color: var(--primary-accent);
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0.5);
  }

  70% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
}

.gamegully-marker-label {
  position: absolute;
  top: 20px;
  left: 50%;
  border-radius: 10px;
  padding: 3px 10px;
  opacity: 0;
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  background-color: var(--text-color);
  transition: opacity 0.3s ease, top 0.3s ease;
  transform: translateX(-50%);
  white-space: nowrap;
}

.gamegully-map-marker:hover .gamegully-marker-label {
  top: 25px;
  opacity: 1;
}

.gamegully-events-calendar {
  flex: 1;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  background-color: #fff;
}

.gamegully-events-tagline {
  margin-bottom: 30px;
  color: var(--secondary-text-color);
  font-size: 1.1rem;
}

.gamegully-events-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.gamegully-event-item {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 10px;
  padding: 15px;
  background-color: #f8f8f8;
  transition: all 0.3s ease;
}

.gamegully-event-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transform: translateX(10px);
}

.gamegully-event-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-accent), var(--card-secondary));
}

.gamegully-event-month {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.gamegully-event-day {
  font-weight: 800;
  font-size: 1.3rem;
}

.gamegully-event-details {
  flex: 1;
}

.gamegully-event-details h3 {
  margin-bottom: 5px;
  color: var(--text-color);
  font-weight: 700;
  font-size: 1.2rem;
}

.gamegully-event-details p {
  color: var(--secondary-text-color);
  font-size: 0.9rem;
}

.gamegully-event-register {
  display: inline-block;
  border-radius: 20px;
  padding: 8px 20px;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  background-color: var(--text-color);
  transition: all 0.3s ease;
}

.gamegully-event-register:hover {
  background-color: var(--primary-accent);
  transform: translateY(-3px);
}

.gamegully-events-button {
  display: inline-block;
  border-radius: 30px;
  padding: 12px 25px;
  box-shadow: 0 10px 20px rgba(248, 199, 73, 0.2);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  background-color: var(--primary-accent);
  transition: all 0.3s ease;
}

.gamegully-events-button:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  background-color: var(--text-color);
  transform: translateY(-5px);
}

@media (max-width: 1200px) {
  .gamegully-events-map-container {
    flex-direction: column;
  }

  .gamegully-events-map,
  .gamegully-events-calendar {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .gamegully-events-section {
    padding: 60px 0;
  }

  .gamegully-event-item {
    flex-wrap: wrap;
  }

  .gamegully-event-register {
    width: 100%;
    margin-top: 10px;
    text-align: center;
  }

  .gamegully-events-button {
    width: 100%;
    text-align: center;
  }
}

.gamegully-festive-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--card-light-bg) 0%, #fff6e5 100%);
}

.gamegully-festive-container {
  position: relative;
  z-index: 2;
}

.gamegully-festive-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.gamegully-festive-content {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.gamegully-festive-badge {
  display: inline-block;
  margin-bottom: 15px;
  border-radius: 20px;
  padding: 5px 15px;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: var(--primary-accent);
}

.gamegully-festive-divider {
  width: 80px;
  height: 4px;
  margin: 20px 0;
  border-radius: 2px;
  background: linear-gradient(to right, var(--primary-accent), var(--card-secondary));
}

.gamegully-festive-text {
  margin-bottom: 20px;
  color: var(--secondary-text-color);
  font-size: 1.1rem;
  line-height: 1.6;
}

.gamegully-festive-actions {
  margin-top: 30px;
}

.gamegully-festive-button {
  display: inline-block;
  border: none;
  border-radius: 30px;
  padding: 15px 30px;
  box-shadow: 0 10px 20px rgba(248, 199, 73, 0.3);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  background: linear-gradient(45deg, var(--primary-accent), var(--card-secondary));
  transition: all 0.3s ease;
}

.gamegully-festive-button:hover {
  box-shadow: 0 15px 25px rgba(248, 199, 73, 0.4);
  transform: translateY(-5px);
}

.gamegully-festive-note {
  display: block;
  margin-top: 15px;
  color: var(--secondary-text-color);
  font-size: 0.9rem;
  font-style: italic;
}

.gamegully-festive-image-wrapper {
  position: relative;
  flex: 1;
}

.gamegully-festive-image {
  position: relative;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.5s ease;
  transform: rotate(3deg);
}

.gamegully-festive-image:hover {
  transform: rotate(0);
}

.gamegully-festive-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.gamegully-festive-badge-corner {
  position: absolute;
  top: 20px;
  right: -30px;
  padding: 8px 30px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  background-color: #e74c3c;
  transform: rotate(45deg);
}

.gamegully-festive-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  z-index: 1;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  opacity: 0.1;
  background-color: var(--card-accent);
}

.gamegully-festive-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  z-index: 1;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0.1;
  background-color: var(--card-secondary);
}

.fa-diwali-lamp:before {
  content: "\f6b4";
}

@media (max-width: 1200px) {
  .gamegully-festive-row {
    flex-direction: column;
  }

  .gamegully-festive-content,
  .gamegully-festive-image-wrapper {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .gamegully-festive-section {
    padding: 60px 0;
  }

  .gamegully-festive-button {
    width: 100%;
    text-align: center;
  }
}

.gamegully-reviews-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #fff 0%, var(--card-light-bg) 100%);
}

.gamegully-reviews-header {
  margin-bottom: 50px;
}

.gamegully-reviews-stats {
  display: flex;
  justify-content: space-around;
  margin-bottom: 40px;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background-color: #fff;
}

.gamegully-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.gamegully-stat-number {
  margin-bottom: 5px;
  color: var(--text-color);
  font-weight: 800;
  font-size: 2.5rem;
}

.gamegully-stat-stars {
  margin-bottom: 10px;
  color: var(--primary-accent);
  font-size: 1.2rem;
}

.gamegully-stat-label {
  color: var(--secondary-text-color);
  font-size: 1rem;
}

.gamegully-testimonials-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
  padding: 20px 0;
}

@media (max-width: 425px) {
  .gamegully-testimonials-carousel {
    grid-template-columns: 1fr;
  }
}

.gamegully-testimonials-carousel::-webkit-scrollbar {
  display: none;
}

.gamegully-testimonial-card {
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  transition: all 0.3s ease;
}

.gamegully-testimonial-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px) rotate(1deg);
}

.gamegully-testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.gamegully-testimonial-avatar {
  width: 60px;
  height: 60px;
  border: 3px solid var(--primary-accent);
  border-radius: 50%;
  object-fit: cover;
}

.gamegully-testimonial-meta h3 {
  margin-bottom: 3px;
  color: var(--text-color);
  font-weight: 700;
  font-size: 1.2rem;
}

.gamegully-testimonial-meta p {
  margin-bottom: 5px;
  color: var(--secondary-text-color);
  font-size: 0.9rem;
}

.gamegully-testimonial-rating {
  color: var(--primary-accent);
  font-size: 0.9rem;
}

.gamegully-testimonial-quote {
  position: relative;
  margin-bottom: 20px;
  color: var(--secondary-text-color);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.6;
}

.gamegully-testimonial-quote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -10px;
  opacity: 0.2;
  color: var(--primary-accent);
  font-size: 3rem;
}

.gamegully-testimonial-game {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 15px;
  color: var(--text-color);
  font-size: 0.9rem;
}

.gamegully-testimonial-game span {
  margin-right: 5px;
  color: var(--secondary-text-color);
}

.gamegully-reviews-footer {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.gamegully-reviews-button {
  display: inline-block;
  border-radius: 30px;
  padding: 12px 25px;
  box-shadow: 0 10px 20px rgba(248, 199, 73, 0.2);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  background-color: var(--primary-accent);
  transition: all 0.3s ease;
}

.gamegully-reviews-button:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  background-color: var(--text-color);
  transform: translateY(-5px);
}

.gamegully-submit-review-button {
  display: inline-block;
  border: 2px solid var(--text-color);
  border-radius: 30px;
  padding: 12px 25px;
  color: var(--text-color);
  font-weight: 700;
  text-decoration: none;
  background-color: transparent;
  transition: all 0.3s ease;
}

.gamegully-submit-review-button:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  color: #fff;
  background-color: var(--text-color);
  transform: translateY(-5px);
}

@media (max-width: 1200px) {
  .gamegully-testimonial-card {
    width: calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .gamegully-reviews-section {
    padding: 60px 0;
  }

  .gamegully-reviews-stats {
    flex-direction: column;
    gap: 20px;
  }

  .gamegully-testimonial-card {
    width: 100%;
  }

  .gamegully-reviews-footer {
    flex-direction: column;
    align-items: center;
  }

  .gamegully-reviews-button,
  .gamegully-submit-review-button {
    width: 100%;
    text-align: center;
  }
}

.gamegully-support-section {
  position: relative;
  padding: 80px 0;
  background-color: #fff;
}

.gamegully-support-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 30%;
  height: 100%;
  background-color: var(--card-light-bg);
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.gamegully-support-container {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 40px;
}

.gamegully-support-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.gamegully-support-badge {
  display: inline-block;
  margin-bottom: 15px;
  border-radius: 20px;
  padding: 5px 15px;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  background-color: var(--text-color);
}

.gamegully-support-tagline {
  margin-bottom: 30px;
  color: var(--secondary-text-color);
  font-size: 1.2rem;
}

.gamegully-support-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 30px;
}

.gamegully-support-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.gamegully-support-icon {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-accent), var(--card-secondary));
}

.gamegully-support-icon i {
  color: #fff;
  font-size: 1.5rem;
}

.gamegully-support-feature-content h3 {
  margin-bottom: 10px;
  color: var(--text-color);
  font-weight: 700;
  font-size: 1.2rem;
}

.gamegully-support-feature-content p {
  color: var(--secondary-text-color);
  font-size: 1rem;
  line-height: 1.6;
}

.gamegully-support-contact {
  margin-top: 40px;
}

.gamegully-contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.gamegully-contact-method {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  padding: 10px 20px;
  color: var(--text-color);
  font-weight: 600;
  background-color: #f8f8f8;
  transition: all 0.3s ease;
}

.gamegully-contact-method:hover {
  color: #fff;
  background-color: var(--primary-accent);
  transform: translateY(-3px);
}

.gamegully-contact-method i {
  font-size: 1.2rem;
}

.gamegully-support-form-wrapper {
  flex: 1;
}

.gamegully-support-form {
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  background-color: #f8f8f8;
}

.gamegully-support-form h3 {
  margin-bottom: 5px;
  color: var(--text-color);
  font-weight: 700;
  font-size: 1.5rem;
}

.gamegully-support-form p {
  margin-bottom: 25px;
  color: var(--secondary-text-color);
  font-size: 1rem;
}

.gamegully-contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.gamegully-form-field input,
.gamegully-form-field select,
.gamegully-form-field textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 12px 15px;
  color: var(--text-color);
  font-size: 1rem;
  background-color: #fff;
  transition: all 0.3s ease;
}

.gamegully-form-field input:focus,
.gamegully-form-field select:focus,
.gamegully-form-field textarea:focus {
  border-color: var(--primary-accent);
  box-shadow: 0 0 0 3px rgba(248, 199, 73, 0.2);
  outline: none;
}

.gamegully-form-submit {
  display: inline-block;
  margin-top: 10px;
  border: none;
  border-radius: 30px;
  padding: 12px 25px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  background-color: var(--primary-accent);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gamegully-form-submit:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background-color: var(--text-color);
  transform: translateY(-3px);
}

.gamegully-form-submit i {
  margin-right: 8px;
}

@media (max-width: 1200px) {
  .gamegully-support-container {
    flex-direction: column;
  }

  .gamegully-support-info,
  .gamegully-support-form-wrapper {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .gamegully-support-section {
    padding: 60px 0;
  }

  .gamegully-support-section::before {
    display: none;
  }

  .gamegully-contact-methods {
    flex-direction: column;
  }

  .gamegully-contact-method {
    width: 100%;
  }

  .gamegully-form-submit {
    width: 100%;
    text-align: center;
  }
}

.gamegully-tutorials-section {
  position: relative;
  padding: 80px 0;
  background-color: #fff;
}

.gamegully-tutorials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f8c749' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.gamegully-tutorials-header {
  margin-bottom: 50px;
  text-align: center;
}

.gamegully-tutorials-subtitle {
  margin-top: 10px;
  color: var(--secondary-text-color);
  font-size: 1.2rem;
}

.gamegully-tutorials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.gamegully-tutorial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  transition: all 0.3s ease;
}

.gamegully-tutorial-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-15px);
}

.gamegully-tutorial-indicator {
  position: absolute;
  top: 15px;
  right: 15px;
  border-radius: 20px;
  padding: 5px 10px;
  color: var(--text-color);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  background-color: rgba(248, 199, 73, 0.1);
}

.gamegully-tutorial-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-accent), var(--card-secondary));
}

.gamegully-tutorial-icon i {
  color: #fff;
  font-size: 1.8rem;
}

.gamegully-tutorial-card h3 {
  margin-bottom: 15px;
  color: var(--text-color);
  font-weight: 700;
  font-size: 1.4rem;
}

.gamegully-tutorial-card p {
  flex-grow: 1;
  margin-bottom: 20px;
  color: var(--secondary-text-color);
}

.gamegully-tutorial-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  color: var(--secondary-text-color);
  font-size: 0.9rem;
}

.gamegully-tutorial-stats span i {
  margin-right: 5px;
  color: var(--primary-accent);
}

.gamegully-tutorial-link {
  display: inline-block;
  color: var(--primary-accent);
  font-weight: 700;
  transition: all 0.3s ease;
}

.gamegully-tutorial-link:hover {
  color: var(--card-secondary);
}

.gamegully-tutorial-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.gamegully-tutorial-link:hover i {
  transform: translateX(5px);
}

.gamegully-tutorials-footer {
  text-align: center;
}

.gamegully-tutorials-button {
  display: inline-block;
  border-radius: 30px;
  padding: 15px 30px;
  box-shadow: 0 10px 20px 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-tutorials-button:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  background-color: var(--primary-accent);
  transform: translateY(-5px);
}

@media (max-width: 1200px) {
  .gamegully-tutorials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gamegully-tutorials-section {
    padding: 60px 0;
  }

  .gamegully-tutorials-grid {
    grid-template-columns: 1fr;
  }

  .gamegully-tutorials-button {
    width: 100%;
    text-align: center;
  }
}

.gamegully-checkbox-field {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.gamegully-checkbox-label {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: var(--text-color);
  cursor: pointer;
  user-select: none;
}

@media (max-width: 375px) {
  .gamegully-checkbox-label {
    font-size: .7rem;
  }
}

.gamegully-checkbox-label a {
  color: var(--primary-accent);
  text-decoration: underline;
  transition: color 0.2s;
  margin: 0 10px;
}

.gamegully-checkbox-label a:hover {
  color: var(--card-secondary);
}

.gamegully-checkbox-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.gamegully-checkbox-custom {
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  border: 2px solid var(--primary-accent);
  border-radius: 6px;
  background: #fff;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}

.gamegully-checkbox-label .gamegully-checkbox-input:checked+.gamegully-checkbox-custom {
  background: var(--primary-accent);
  border-color: var(--primary-accent);
}

.gamegully-checkbox-custom::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 7px;
  height: 13px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  opacity: 0;
  transform: scale(0.8) rotate(45deg);
  transition: opacity 0.2s, transform 0.2s;
}

.gamegully-checkbox-label .gamegully-checkbox-input:checked+.gamegully-checkbox-custom::after {
  opacity: 1;
  transform: scale(1) rotate(45deg);
}

.marker-mumbai {
  top: 25%;
  left: 20%;
  position: absolute;
}
.marker-delhi {
  top: 15%;
  left: 35%;
  position: absolute;
}
.marker-hyderabad {
  top: 40%;
  left: 30%;
  position: absolute;
}
.marker-bengaluru {
  top: 50%;
  left: 15%;
  position: absolute;
}
.marker-kolkata {
  top: 35%;
  left: 75%;
  position: absolute;
}