:root {
  --contact-accent: #5E8B7E;
  --contact-secondary: #2F5D62;
  --contact-light-bg: #F2F9F1;
  --contact-dark-bg: #E7F2E9;
  --contact-gradient: linear-gradient(135deg, var(--contact-accent) 0%, var(--contact-secondary) 100%);
  --contact-text: #333333;
}


.gamegully-global-padding {
  width: 100%;
  overflow: hidden;
}

.gamegully-section-medium {
  padding: 60px 32px;
}

.gamegully-small-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.gamegully-medium-container,
.gamegully-large-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(--contact-accent);
  transition: width 0.3s ease;
}

.gamegully-heading-large:hover::after {
  width: 100%;
}

.gamegully-medium-container p {
  margin-bottom: 20px;
  color: var(--secondary-text-color);
  font-size: 1.1rem;
  line-height: 1.6;
}

.text-center {
  text-align: center;
}

.gamegully-button {
  display: inline-block;

  margin-top: 20px;
  border: 2px solid var(--contact-accent);
  border-radius: 30px;
  padding: 12px 24px;
  box-shadow: 0 4px 10px rgba(94, 139, 126, 0.2);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  background-color: var(--contact-accent);
  transition: all 0.3s ease;
}

.gamegully-button:hover {
  box-shadow: 0 6px 15px rgba(94, 139, 126, 0.3);
  color: var(--contact-accent);
  background-color: #fff;
  transform: translateY(-3px);
}

.gamegully-button i {
  margin-right: 8px;
}


.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;
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}


.gamegully-contact-hero-section {
  position: relative;
  padding: 80px 32px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--contact-light-bg) 0%, var(--contact-dark-bg) 100%);
  animation: fadeIn 0.8s ease-out;
}

.gamegully-contact-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  opacity: 0.05;
  background-color: var(--contact-accent);
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.gamegully-contact-hero-section h1 {
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
  color: var(--text-color);
  font-weight: 800;
  font-size: 3rem;
}

.gamegully-contact-hero-section h1::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  width: 120px;
  height: 5px;
  border-radius: 2px;
  background-color: var(--contact-accent);
  transform: translateX(-50%);
}

@media (max-width: 425px) {
  .gamegully-contact-hero-section h1 {
    font-size: 2.5rem;
  }
}

.gamegully-contact-hero-section p {
  max-width: 800px;
  margin-right: auto;
  margin-bottom: 20px;
  margin-left: auto;
  color: var(--secondary-text-color);
  font-size: 1.1rem;
  line-height: 1.6;
}

.gamegully-hero-text {
  margin-bottom: 30px !important;
  font-weight: 500;
  font-size: 1.3rem !important;
}

.gamegully-contact-button {
  display: inline-block;
  margin-top: 30px;
  border: 2px solid var(--contact-accent);
  border-radius: 30px;
  padding: 14px 28px;
  box-shadow: 0 4px 10px rgba(94, 139, 126, 0.2);
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  background-color: var(--contact-accent);
  transition: all 0.3s ease;
}

.gamegully-contact-button:hover {
  box-shadow: 0 6px 15px rgba(94, 139, 126, 0.3);
  color: var(--contact-accent);
  background-color: #fff;
  transform: translateY(-3px);
  animation: pulse 0.6s ease;
}

.gamegully-contact-button i {
  margin-right: 8px;
}


.gamegully-contact-form-section {
  position: relative;
  background-color: #fff;
}

.gamegully-spacing-top {
  margin-top: -40px;
}

.gamegully-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: start;
  gap: 50px;
}

@media (max-width: 768px) {
  .gamegully-contact-grid {
    grid-template-columns: 1fr;
  }
}

.gamegully-contact-info {
  position: relative;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background-color: var(--contact-light-bg);
}

.gamegully-contact-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--contact-gradient);
}

.gamegully-contact-title {
  margin-bottom: 20px;
  color: var(--text-color);
  font-weight: 700;
  font-size: 1.8rem;
}

.gamegully-contact-text {
  margin-bottom: 30px;
  color: var(--secondary-text-color);
  font-size: 1.1rem;
  line-height: 1.6;
}

.gamegully-contact-details {
  margin-top: 30px;
}

.gamegully-contact-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
}

@media (max-width: 425px) {
  .gamegully-contact-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
  }
}

.gamegully-contact-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-right: 15px;
  border-radius: 50%;
  color: #fff;
  background-color: var(--contact-accent);
  transition: all 0.3s ease;
}

.gamegully-contact-icon:hover {
  background-color: var(--contact-secondary);
  transform: scale(1.1);
}

.gamegully-contact-link {
  color: var(--secondary-text-color);
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

@media (max-width: 425px) {
  .gamegully-contact-link {
    font-size: .9rem;
  }
}

.gamegully-contact-link:hover {
  color: var(--contact-accent);
}


.gamegully-contact-form {
  position: relative;
  border: 1px solid rgba(94, 139, 126, 0.1);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background-color: #fff;
}

.gamegully-form-group {
  margin-bottom: 25px;
}

.gamegully-form-label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-color);
  font-weight: 500;
  font-size: 1rem;
}

.gamegully-form-input {
  width: 100%;
  border: 1px solid rgba(94, 139, 126, 0.2);
  border-radius: 8px;
  padding: 12px 15px;
  color: var(--text-color);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.gamegully-form-input:focus {
  border-color: var(--contact-accent);
  box-shadow: 0 0 0 3px rgba(94, 139, 126, 0.1);
  outline: none;
}

.gamegully-textarea {
  min-height: 120px;
  resize: vertical;
}

.gamegully-form-checkbox {
  margin-right: 8px;
  accent-color: var(--contact-accent);
}

.gamegully-form-label a {
  color: var(--contact-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.gamegully-form-label a:hover {
  text-decoration: underline;
}

.gamegully-submit-button {
  width: 100%;
  margin-top: 10px;
  padding: 14px;
  font-size: 1.1rem;
  cursor: pointer;
}


.gamegully-community-section {
  position: relative;
  max-width: 1136px;
  margin: 40px auto;
  border-radius: 15px;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background: var(--contact-gradient);
}

.gamegully-community-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

.gamegully-community-section::after {
  content: '';
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

.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 {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  color: #fff;
  text-align: center;
}

.gamegully-community-section .gamegully-button {
  border-color: #fff;
  color: var(--contact-accent);
  background-color: #fff;
}

.gamegully-community-section .gamegully-button:hover {
  color: #fff;
  background-color: transparent;
}


.gamegully-faq-section {
  position: relative;
  max-width: 1136px;
  margin: 40px auto;
  border-radius: 15px;
  background-color: var(--contact-light-bg);
}

.gamegully-faq-section .gamegully-heading-large {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.gamegully-faq-section .gamegully-heading-large::after {
  left: 50%;
  transform: translateX(-50%);
}

.gamegully-faq-content {
  max-width: 800px;
  margin: 40px auto;
}

.gamegully-faq-item {
  margin-bottom: 20px;
  border-radius: 15px;
  border-left: 3px solid var(--contact-accent);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background-color: #fff;
  transition: all 0.3s ease;
}

.gamegully-faq-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.gamegully-faq-question {
  position: relative;
  margin: 0;
  padding: 20px;
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.gamegully-faq-question::after {
  content: '+';
  position: absolute;
  top: 50%;
  right: 20px;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  transform: translateY(-50%);
}

.gamegully-faq-item.active .gamegully-faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.gamegully-faq-question i {
  margin-right: 10px;
  color: var(--contact-accent);
}

.gamegully-faq-answer {
  display: none;
  padding: 0 20px 20px;
}

.gamegully-faq-item.active .gamegully-faq-answer {
  display: block;
}

.gamegully-faq-answer p {
  margin: 0;
  color: var(--secondary-text-color);
}

.gamegully-faq-section .gamegully-button {
  display: block;
  max-width: max-content;
  margin: 30px auto 0;

}


.gamegully-social-section {
  position: relative;
  max-width: 1136px;
  margin: 40px auto;
  border-radius: 15px;
  text-align: center;
  background-color: #fff;
}

.gamegully-social-section .gamegully-heading-large {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.gamegully-social-section .gamegully-heading-large::after {
  left: 50%;
  transform: translateX(-50%);
}

.gamegully-social-section p {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.gamegully-social-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.gamegully-social-item {
  flex: 0 0 auto;
  transition: transform 0.3s ease;
}

.gamegully-social-item:hover {
  transform: translateY(-10px);
}

.gamegully-social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 15px;
  padding: 20px 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  color: var(--contact-accent);
  font-weight: 600;
  text-decoration: none;
  background-color: var(--contact-light-bg);
  transition: all 0.3s ease;
}

.gamegully-social-link:hover {
  box-shadow: 0 10px 25px rgba(94, 139, 126, 0.2);
  color: #fff;
  background-color: var(--contact-accent);
}

.gamegully-social-link i {
  margin-bottom: 10px;
}


.gamegully-events-section {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background-color: #fff;
}

.gamegully-hexagon-design {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.gamegully-hexagon-design::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: rgba(248, 199, 73, 0.05);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.gamegully-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.gamegully-event-card {
  display: flex;
  border-radius: 16px;
  border-left: 4px solid var(--primary-accent);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  background-color: #fff;
  transition: all 0.3s ease;
}

@media (max-width: 425px) {
  .gamegully-event-card {
    flex-direction: column;
  }
}

.gamegully-event-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  transform: translateY(-10px);
}

.gamegully-event-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 70px;
  padding: 15px;
  color: #fff;
  background-color: var(--primary-accent);
}

.event-day {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
}

.event-month {
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.gamegully-event-content {
  flex: 1;
  padding: 20px;
}

.gamegully-event-content h3 {
  margin-bottom: 10px;
  color: var(--text-color);
  font-size: 1.2rem;
}

.gamegully-event-content p {
  margin-bottom: 8px;
  color: var(--secondary-text-color);
  font-size: 0.95rem;
}

.gamegully-event-button {
  display: inline-block;
  margin-top: 12px;
  border-radius: 20px;
  padding: 8px 16px;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  background-color: var(--primary-accent);
  transition: all 0.3s ease;
}

.gamegully-event-button:hover {
  background-color: #ffd86b;
  transform: scale(1.05);
}

.gamegully-calendar-button {
  display: block;
  width: max-content;
  margin: 20px auto 0;
  border: 2px solid var(--primary-accent);
  border-radius: 30px;
  padding: 12px 24px;
  color: var(--text-color);
  font-weight: 600;
  background-color: transparent;
  transition: all 0.3s ease;
}

.gamegully-calendar-button:hover {
  color: #fff;
  background-color: var(--primary-accent);
}


.gamegully-tutorials-section {
  position: relative;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, #2F5D62 0%, #5E8B7E 100%);
}

.gamegully-tutorials-container {
  position: relative;
  z-index: 1;
}

.gamegully-light-heading {
  color: #fff;
  text-align: center;
}

.gamegully-light-heading::after {
  left: 50%;
  background-color: #fff;
  transform: translateX(-50%);
}

.gamegully-tutorials-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 30px 0;
}

.tutorial-tab {
  border-radius: 20px;
  padding: 10px 20px;
  color: #fff;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.tutorial-tab.active,
.tutorial-tab:hover {
  color: var(--contact-secondary);
  background-color: #fff;
}

.gamegully-tutorials-content {
  display: none;
}

.gamegully-tutorials-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.gamegully-tutorial-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.gamegully-tutorial-item {
  position: relative;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
}

.gamegully-tutorial-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tutorial-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  transition: all 0.3s ease;
}

.gamegully-tutorial-item:hover img {
  transform: scale(1.1);
}

.gamegully-tutorial-item:hover .tutorial-overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.tutorial-overlay h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.1rem;
}

.tutorial-overlay p {
  display: none;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.tutorial-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  padding: 8px 16px;
  opacity: 0;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  background-color: var(--primary-accent);
  transition: all 0.3s ease;
  transform: translateY(20px);
}

.gamegully-tutorial-item:hover .tutorial-overlay p,
.gamegully-tutorial-item:hover .tutorial-link {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.tutorials-info {
  margin-bottom: 30px;
  font-size: 1.1rem;
  text-align: center;
}

.gamegully-strategy-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 700px;
  margin: 0 auto 30px;
}

.strategy-link {
  display: block;
  border-radius: 10px;
  padding: 15px 20px;
  color: #fff;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.strategy-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateX(10px);
}

.strategy-link i {
  margin-right: 10px;
  color: var(--primary-accent);
}

.gamegully-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 800px;
  margin: 30px auto;
}

.gamegully-video-preview {
  border-radius: 12px;
  padding-bottom: 15px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.2);
}

.video-thumbnail {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-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(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.video-play-button i {
  color: #fff;
  font-size: 1.5rem;
}

.video-thumbnail:hover .video-play-button {
  background-color: var(--primary-accent);
  transform: translate(-50%, -50%) scale(1.1);
}

.gamegully-video-preview h3 {
  padding: 15px 15px 5px;
  color: #fff;
  font-size: 1.1rem;
}

.gamegully-video-preview p {
  padding: 0 15px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.tutorials-button {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: max-content;
  margin: 20px auto 0;
  color: var(--contact-secondary);
  text-align: center;
  background-color: #fff;
}

.tutorials-button:hover {
  color: #fff;
  background-color: var(--primary-accent);
}


.gamegully-festive-section {
  border-radius: 20px;
  overflow: hidden;
  background-color: #fff;
}

.gamegully-festive-container {
  position: relative;
}

.festive-lights {
  position: absolute;
  z-index: 0;
  width: 200px;
  height: 400px;
}

.festive-lights.left {
  top: -50px;
  left: -100px;
  background: radial-gradient(circle, rgba(248, 199, 73, 0.2) 0%, rgba(248, 199, 73, 0) 70%);
}

.festive-lights.right {
  right: -100px;
  bottom: -50px;
  background: radial-gradient(circle, rgba(248, 199, 73, 0.2) 0%, rgba(248, 199, 73, 0) 70%);
}

.gamegully-festive-spotlight {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  margin: 40px 0;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background-color: #FFFAF0;
}

.festive-image {
  position: relative;
}

.festive-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.festive-badge {
  position: absolute;
  top: 20px;
  right: -10px;
  border-radius: 5px;
  padding: 5px 15px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  background-color: var(--primary-accent);
  transform: rotate(5deg);
}

.festive-title {
  margin-bottom: 15px;
  color: var(--text-color);
  font-size: 1.8rem;
}

.festive-price {
  margin-bottom: 10px;
  color: var(--text-color);
  font-weight: 700;
  font-size: 1.5rem;
}

.original-price {
  margin-left: 10px;
  color: #999;
  font-size: 1.1rem;
  text-decoration: line-through;
}

.festive-rating {
  margin-bottom: 20px;
  color: var(--primary-accent);
}

.festive-rating span {
  margin-left: 10px;
  color: var(--secondary-text-color);
  font-size: 0.9rem;
}

.festive-description {
  margin-bottom: 20px;
  color: var(--secondary-text-color);
  font-size: 1.1rem;
  line-height: 1.5;
}

.festive-includes {
  margin-bottom: 30px;
}

.festive-includes li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: var(--secondary-text-color);
}

.festive-includes li i {
  margin-right: 10px;
  color: var(--contact-accent);
}

.festive-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 30px;
  font-size: 1.1rem;
  text-align: center;
}

.festive-shipping {
  margin-top: 15px;
  color: #777;
  font-size: 0.9rem;
}

.gamegully-festive-upcoming {
  margin-top: 50px;
}

.upcoming-title {
  margin-bottom: 30px;
  color: var(--text-color);
  font-size: 1.5rem;
  text-align: center;
}

.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.upcoming-item {
  border-radius: 15px;
  border-top: 3px solid var(--primary-accent);
  padding: 20px;
  text-align: center;
  background-color: #f8f8f8;
  transition: all 0.3s ease;
}

.upcoming-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transform: translateY(-10px);
}

.upcoming-month {
  margin-bottom: 10px;
  color: var(--primary-accent);
  font-weight: 600;
  font-size: 1.1rem;
}

.upcoming-item h4 {
  margin-bottom: 10px;
  color: var(--text-color);
  font-size: 1rem;
}

.upcoming-item p {
  color: var(--secondary-text-color);
  font-size: 0.9rem;
}


.gamegully-reviews-section {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background-color: #f8f8f8;
}

.gamegully-reviews-container {
  position: relative;
  z-index: 1;
}

.reviews-stars-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 1L12.245 6.91L18.5 7.274L13.809 11.583L15.053 17.776L10 14.536L4.947 17.776L6.191 11.583L1.5 7.274L7.755 6.91L10 1Z' fill='%23F8C749'/%3E%3C/svg%3E");
}

.gamegully-testimonial-slider {
  max-width: 900px;
  margin: 40px auto;
  overflow: hidden;
}

.testimonial-slide {
  width: 100%;
}

.testimonial-card {
  display: flex;
  gap: 30px;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background-color: #fff;
}

.testimonial-profile {
  flex: 0 0 150px;
  text-align: center;
}

.testimonial-profile img {
  width: 100px;
  height: 100px;
  border: 5px solid var(--primary-accent);
  border-radius: 50%;
  object-fit: cover;
}

.profile-info h3 {
  margin: 15px 0 5px;
  color: var(--text-color);
}

.profile-location {
  margin-bottom: 8px;
  color: var(--secondary-text-color);
  font-size: 0.9rem;
}

.profile-games {
  color: #777;
  font-size: 0.8rem;
  line-height: 1.4;
}

.testimonial-content {
  flex: 1;
}

.testimonial-rating {
  margin-bottom: 15px;
  color: var(--primary-accent);
  font-size: 1.2rem;
}

.testimonial-text {
  margin-bottom: 15px;
  color: var(--secondary-text-color);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-date {
  color: #777;
  font-size: 0.9rem;
}

.testimonial-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 30px 0;
}

.nav-prev,
.nav-next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #eee;
  border-radius: 50%;
  color: var(--text-color);
  background-color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.nav-prev:hover,
.nav-next:hover {
  color: #fff;
  background-color: var(--primary-accent);
}

.nav-indicators {
  display: flex;
  gap: 8px;
}

.nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ddd;
  transition: all 0.3s ease;
  cursor: pointer;
}

.nav-dot.active,
.nav-dot:hover {
  background-color: var(--primary-accent);
}

.review-stats {
  display: flex;
  justify-content: space-around;
  max-width: 700px;
  margin: 40px auto;
  text-align: center;
}

.stat-item {
  flex: 1;
}

.stat-number {
  margin-bottom: 5px;
  color: var(--text-color);
  font-weight: 700;
  font-size: 2rem;
}

.stat-label {
  color: var(--secondary-text-color);
  font-size: 1rem;
}

.reviews-button {
  display: block;
  max-width: max-content;
  margin: 20px auto 0;
}


.gamegully-about-section {
  border-radius: 20px;
  background-color: #fff;
}

.gamegully-about-container {
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.about-heading {
  margin-bottom: 40px;
}

.about-journey {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.journey-step {
  display: flex;
  gap: 20px;
}

.journey-year {
  display: flex;
  flex: 0 0 70px;
  justify-content: center;
  align-items: center;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  background-color: var(--primary-accent);
}

.journey-info {
  flex: 1;
}

.journey-info h3 {
  margin-bottom: 8px;
  color: var(--text-color);
}

.journey-info p {
  color: var(--secondary-text-color);
  font-size: 1rem;
}

.about-mission {
  margin-bottom: 30px;
  border-radius: 15px;
  border-left: 4px solid var(--primary-accent);
  padding: 25px;
  background-color: #f8f8f8;
}

.about-mission h3 {
  margin-bottom: 15px;
  color: var(--text-color);
}

.about-mission p {
  color: var(--secondary-text-color);
  line-height: 1.6;
}

.about-button {
  margin-top: 20px;
}

.media-mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.mosaic-item {
  width: 100%;
  height: 150px;
  border-radius: 10px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.mosaic-item:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.about-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.fact-item {
  flex: 1 1 calc(33.333% - 10px);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  background-color: #f8f8f8;
  transition: all 0.3s ease;
}

.fact-item:hover {
  color: #fff;
  background-color: var(--primary-accent);
}

.fact-item i {
  margin-bottom: 10px;
  color: var(--primary-accent);
  font-size: 1.5rem;
}

.fact-item:hover i {
  color: #fff;
}

.fact-item p {
  font-size: 0.9rem;
  line-height: 1.4;
}

.team-preview {
  text-align: center;
}

.team-preview h3 {
  margin-bottom: 30px;
  color: var(--text-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}

@media (max-width: 425px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 160px;
  height: 160px;
  margin-bottom: 15px;
  border: 3px solid var(--primary-accent);
  border-radius: 50%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.team-member:hover img {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
}

.team-member h4 {
  margin-bottom: 5px;
  color: var(--text-color);
}

.team-member p {
  color: var(--secondary-text-color);
  font-size: 0.9rem;
}


@media (max-width: 1200px) {

  .gamegully-events-grid,
  .upcoming-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gamegully-festive-spotlight {
    grid-template-columns: 1fr;
  }

  .festive-image {
    max-width: 300px;
    margin: 0 auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {

  .gamegully-tutorial-list,
  .gamegully-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .team-grid {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {

  .gamegully-events-grid,
  .gamegully-tutorial-list,
  .upcoming-grid,
  .gamegully-video-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-navigation {
    flex-wrap: wrap;
  }

  .review-stats {
    flex-direction: column;
    gap: 20px;
  }
}

.gamegully-tutorials-content p {
  color: #fff;
}