:root {
  --support-accent: #6A7FDB;
  --support-secondary: #4957A6;
  --support-light-bg: #F0F4FF;
  --support-dark-bg: #E6EBFF;
  --support-gradient: linear-gradient(135deg, var(--support-accent) 0%, var(--support-secondary) 100%);
  --support-text: #333333;
}

.gamegully-global-padding {
  width: 100%;
}

.gamegully-section-medium {
  padding: 60px 32px;
}

.gamegully-small-container,
.gamegully-medium-container,
.gamegully-large-container {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.gamegully-heading-large {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--text-color);
  position: relative;
  display: inline-block;
}

.gamegully-heading-large::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--support-accent);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.gamegully-heading-large:hover::after {
  width: 100%;
}

.gamegully-medium-container p,
.gamegully-large-container p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--secondary-text-color);
}

.text-center {
  text-align: center;
}

.gamegully-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--support-accent);
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(106, 127, 219, 0.2);
  margin-top: 20px;
  border: 2px solid var(--support-accent);
}

.gamegully-button:hover {
  background-color: #fff;
  color: var(--support-accent);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(106, 127, 219, 0.3);
}

.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);
  }
}

@keyframes shimmer {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.gamegully-support-hero-section {
  background: linear-gradient(135deg, var(--support-light-bg) 0%, var(--support-dark-bg) 100%);
  padding: 80px 32px;
  position: relative;
  overflow: hidden;
  animation: fadeIn 0.8s ease-out;
}

.gamegully-support-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-color: var(--support-accent);
  opacity: 0.05;
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.gamegully-support-hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--support-gradient);
  opacity: 0.3;
}

.gamegully-support-hero-section h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: var(--text-color);
  position: relative;
  display: inline-block;
}

.gamegully-support-hero-section h1::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background-color: var(--support-accent);
  border-radius: 2px;
}

.gamegully-support-hero-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--secondary-text-color);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.gamegully-hero-text {
  font-size: 1.3rem !important;
  font-weight: 500;
  margin-bottom: 30px !important;
}

.gamegully-support-button {
  display: inline-block;
  padding: 14px 28px;
  background-color: var(--support-accent);
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(106, 127, 219, 0.2);
  margin-top: 30px;
  border: 2px solid var(--support-accent);
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
}

.gamegully-support-button:hover {
  background-color: #fff;
  color: var(--support-accent);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(106, 127, 219, 0.3);
}

.gamegully-support-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}

.gamegully-support-button:hover::before {
  animation: shimmer 1.5s ease-in-out;
}

.gamegully-support-button i {
  margin-right: 8px;
}

.gamegully-faq-section {
  background-color: #fff;
  position: relative;
  border-radius: 15px;
  margin: 40px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gamegully-faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: var(--support-gradient);
  border-radius: 5px;
}

.gamegully-faq-section .gamegully-heading-large {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.gamegully-faq-section .gamegully-heading-large::after {
  left: 50%;
  transform: translateX(-50%);
}

.gamegully-faq-content {
  max-width: 900px;
  margin: 40px auto;
}

.gamegully-faq-item {
  background-color: var(--support-light-bg);
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  transform: translateY(0);
  opacity: 1;
}

.gamegully-faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.gamegully-faq-question {
  padding: 20px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 0;
  position: relative;
  transition: all 0.3s ease;
}

.gamegully-faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.gamegully-faq-item.active .gamegully-faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.gamegully-faq-question i {
  color: var(--support-accent);
  margin-right: 10px;
}

.gamegully-faq-answer {
  padding: 0 20px 20px;
  display: none;
}

.gamegully-faq-item.active .gamegully-faq-answer {
  display: block;
}

.gamegully-faq-answer p {
  margin: 0;
  color: var(--secondary-text-color);
}

.gamegully-delivery-section {
  background-color: var(--support-light-bg);
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin: 40px auto;
}

.gamegully-delivery-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: var(--support-accent);
  opacity: 0.05;
  border-radius: 50%;
}

.gamegully-delivery-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: var(--support-accent);
  opacity: 0.05;
  border-radius: 50%;
}

.gamegully-delivery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: center;
}

.gamegully-delivery-text {
  position: relative;
  z-index: 1;
}

.gamegully-delivery-text .gamegully-heading-large {
  color: var(--text-color);
}

.gamegully-delivery-text p {
  color: var(--secondary-text-color);
  margin-bottom: 15px;
}

.gamegully-delivery-image {
  position: relative;
  z-index: 1;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gamegully-delivery-image:hover {
  transform: translateY(-10px);
}

.gamegully-delivery-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  transition: transform 0.5s ease;
}

.gamegully-delivery-image:hover img {
  transform: scale(1.05);
}

.gamegully-contact-section {
  background-color: #fff;
  position: relative;
  border-radius: 15px;
  margin: 40px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.gamegully-contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--support-gradient);
}

.gamegully-contact-section .gamegully-heading-large {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.gamegully-contact-section .gamegully-heading-large::after {
  left: 50%;
  transform: translateX(-50%);
}

.gamegully-contact-section p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}

.gamegully-contact-details {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 40px 0;
}

.gamegully-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.gamegully-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--support-accent);
  color: #fff;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.gamegully-contact-icon:hover {
  background-color: var(--support-secondary);
  transform: scale(1.1);
}

.gamegully-contact-link {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--secondary-text-color);
  transition: color 0.3s ease;
}

.gamegully-contact-link:hover {
  color: var(--support-accent);
}

.gamegully-contact-section .gamegully-button {
  display: inline-block;
  margin: 0 auto;
}

.gamegully-community-section {
  background: var(--support-gradient);
  color: #fff;
  text-align: center;
  border-radius: 15px;
  margin: 40px auto;
  position: relative;
  overflow: hidden;
}

.gamegully-community-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.gamegully-community-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.gamegully-community-section .gamegully-heading-large {
  color: #fff;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.gamegully-community-section .gamegully-heading-large::after {
  background-color: #fff;
  left: 50%;
  transform: translateX(-50%);
}

.gamegully-community-section p {
  color: #fff;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}

.gamegully-community-section .gamegully-button {
  background-color: #fff;
  color: var(--support-accent);
  border-color: #fff;
}

.gamegully-community-section .gamegully-button:hover {
  background-color: transparent;
  color: #fff;
}

.gamegully-tutorials-section {
  background-color: #fff;
  position: relative;
  border-radius: 15px;
  margin: 40px auto;
  overflow: hidden;
}

.gamegully-tutorials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(106, 127, 219, 0.05) 0%, rgba(255, 255, 255, 0) 60%);
}

.gamegully-tutorials-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background-color: var(--support-accent);
  opacity: 0.05;
  border-radius: 50%;
}

.gamegully-tutorials-section .gamegully-heading-large {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.gamegully-tutorials-section .gamegully-heading-large::after {
  left: 50%;
  transform: translateX(-50%);
}

.gamegully-tutorials-section p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}

.gamegully-tutorials-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.gamegully-tutorials-text {
  flex: 1;
  min-width: 300px;
}

.gamegully-tutorials-text .gamegully-heading-large {
  text-align: left;
  margin-bottom: 20px;
  color: var(--text-color);
}

.gamegully-tutorials-text .gamegully-heading-large::after {
  left: 0;
  transform: none;
}

.gamegully-tutorials-intro {
  font-size: 1.2rem !important;
  font-weight: 500;
  margin-bottom: 25px !important;
  text-align: left !important;
  color: var(--secondary-text-color);
  border-left: 4px solid var(--primary-accent);
  padding-left: 15px;
}

.gamegully-tutorials-list {
  margin-bottom: 25px;
  padding-left: 5px;
}

.gamegully-tutorials-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  text-align: left;
}

.gamegully-tutorials-list li i {
  color: var(--primary-accent);
  margin-right: 10px;
  margin-top: 3px;
}

.gamegully-tutorials-highlight {
  background-color: rgba(248, 199, 73, 0.1);
  border-radius: 8px;
  padding: 15px;
  margin: 20px 0;
  font-size: 1rem !important;
  text-align: left !important;
  border-left: 4px solid var(--primary-accent);
}

.gamegully-tutorials-highlight i {
  color: var(--primary-accent);
  margin-right: 8px;
}

.gamegully-tutorials-cta {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.gamegully-primary-button, 
.gamegully-secondary-button {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.gamegully-primary-button {
  background-color: var(--primary-accent);
  color: var(--text-color);
  box-shadow: 0 4px 10px rgba(248, 199, 73, 0.3);
}

.gamegully-primary-button:hover {
  background-color: #ffd86b;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(248, 199, 73, 0.4);
}

.gamegully-secondary-button {
  background-color: transparent;
  color: var(--text-color);
  border: 2px solid var(--primary-accent);
}

.gamegully-secondary-button:hover {
  background-color: rgba(248, 199, 73, 0.1);
  transform: translateY(-3px);
}

.gamegully-tutorials-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  flex: 1;
  min-width: 300px;
}

.gamegully-tutorial-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.gamegully-tutorial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-accent);
}

.gamegully-tutorial-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(248, 199, 73, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.gamegully-tutorial-icon i {
  font-size: 24px;
  color: var(--primary-accent);
}

.gamegully-tutorial-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.gamegully-tutorial-card p {
  font-size: 0.9rem !important;
  color: var(--secondary-text-color);
  text-align: center !important;
  margin-bottom: 0 !important;
}

@media (max-width: 992px) {
  .gamegully-tutorials-container {
    flex-direction: column;
  }
  
  .gamegully-tutorials-text,
  .gamegully-tutorials-cards {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .gamegully-tutorials-cta {
    flex-direction: column;
  }
  
  .gamegully-primary-button,
  .gamegully-secondary-button {
    width: 100%;
    text-align: center;
  }
  
  .gamegully-tutorials-cards {
    grid-template-columns: 1fr;
  }
}

.gamegully-events-section {
  background-color: var(--support-light-bg);
  position: relative;
  border-radius: 15px;
  margin: 40px auto;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.gamegully-events-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.gamegully-events-tagline {
  font-size: 1.2rem !important;
  color: var(--secondary-text-color);
  margin: 10px auto 30px !important;
  max-width: 700px;
  text-align: center;
}

.gamegully-events-carousel {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.gamegully-featured-event {
  display: flex;
  background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  position: relative;
  border-left: 5px solid var(--primary-accent);
}

.gamegully-event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  background-color: var(--primary-accent);
  color: var(--text-color);
  padding: 20px 15px;
  text-align: center;
}

.event-month {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.event-day {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  margin: 5px 0;
}

.event-year {
  font-size: 1rem;
  font-weight: 500;
}

.gamegully-event-content {
  flex: 1;
  padding: 25px;
  text-align: left;
  position: relative;
}

.gamegully-event-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(248, 199, 73, 0.15);
  color: var(--text-color);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

.gamegully-event-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.gamegully-event-location {
  font-size: 1rem;
  color: var(--secondary-text-color);
  margin-bottom: 15px;
}

.gamegully-event-description {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--secondary-text-color);
}

.gamegully-event-meta {
  display: flex;
  gap: 20px;
}

.gamegully-event-meta span {
  font-size: 0.9rem;
  color: var(--secondary-text-color);
}

.gamegully-event-meta i {
  color: var(--primary-accent);
  margin-right: 5px;
}

.gamegully-event-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 0 30px;
  background-color: var(--primary-accent);
  color: var(--text-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.gamegully-event-button:hover {
  background-color: #ffd86b;
}

.gamegully-events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gamegully-event-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
}

.gamegully-events-grid .gamegully-event-card {
  padding: 20px;
  border-top: 5px solid #e0e0e0;
}

.gamegully-event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.gamegully-event-type {
  display: inline-block;
  padding: 5px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 15px;
  margin-bottom: 10px;
}

.gamegully-event-type.strategic {
  background-color: rgba(106, 127, 219, 0.1);
  color: #4957A6;
}

.gamegully-event-type.family {
  background-color: rgba(248, 199, 73, 0.1);
  color: #d9a923;
}

.gamegully-event-type.workshop {
  background-color: rgba(76, 175, 80, 0.1);
  color: #388e3c;
}

.gamegully-event-type.tournament {
  background-color: rgba(244, 67, 54, 0.1);
  color: #d32f2f;
}

.gamegully-events-grid .gamegully-event-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.gamegully-events-grid .gamegully-event-card p {
  font-size: 0.9rem;
  color: var(--secondary-text-color);
  margin-bottom: 5px !important;
  text-align: left !important;
}

.gamegully-events-grid .gamegully-event-card i {
  color: var(--primary-accent);
  margin-right: 5px;
}

.gamegully-events-cities {
  margin: 30px 0;
  text-align: center;
}

.gamegully-city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 15px;
}

.gamegully-city-tags span {
  background-color: #f0f0f0;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--secondary-text-color);
  transition: all 0.3s ease;
}

.gamegully-city-tags span:hover {
  background-color: var(--primary-accent);
  color: var(--text-color);
  transform: translateY(-3px);
}

.gamegully-events-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.gamegully-link {
  color: var(--secondary-text-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.gamegully-link i {
  margin-right: 5px;
  color: var(--primary-accent);
}

.gamegully-link:hover {
  color: var(--primary-accent);
  transform: translateY(-3px);
}

@media (max-width: 1200px) {
  .gamegully-events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .gamegully-featured-event {
    flex-direction: column;
  }
  
  .gamegully-event-date {
    flex-direction: row;
    min-width: auto;
    padding: 10px;
    width: 100%;
  }
  
  .event-month, .event-day, .event-year {
    margin: 0 5px;
  }
  
  .gamegully-event-button {
    width: 100%;
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .gamegully-events-grid {
    grid-template-columns: 1fr;
  }
  
  .gamegully-event-meta {
    flex-direction: column;
    gap: 10px;
  }
  
  .gamegully-events-cta {
    flex-direction: column;
    gap: 15px;
  }
}

.gamegully-festive-section {
  background: linear-gradient(135deg, #fff 0%, var(--support-light-bg) 100%);
  position: relative;
  border-radius: 15px;
  margin: 40px auto;
  text-align: center;
  overflow: hidden;
}

.gamegully-festive-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background-color: var(--support-accent);
  opacity: 0.05;
  border-radius: 0 0 0 150px;
}

.gamegully-festive-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
  background-color: var(--support-accent);
  opacity: 0.05;
  border-radius: 0 150px 0 0;
}

.gamegully-festive-hexagon {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
  z-index: 1;
  clip-path: polygon(
    5% 0%,
    95% 0%,
    100% 5%,
    100% 95%,
    95% 100%,
    5% 100%,
    0% 95%,
    0% 5%
  );
}

.gamegully-festive-content {
  padding: 40px;
}

.gamegully-heading-accent {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-color);
  position: relative;
  display: inline-block;
}

.gamegully-heading-accent::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 80px;
  height: 4px;
  background-color: var(--primary-accent);
  border-radius: 2px;
}

.gamegully-festive-intro {
  font-size: 1.2rem;
  color: var(--secondary-text-color);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.gamegully-festive-collections {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.gamegully-festive-collection {
  flex: 1;
  background-color: #fefaf2;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(248, 199, 73, 0.15);
  transition: all 0.3s ease;
  text-align: left;
}

.gamegully-festive-collection:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(248, 199, 73, 0.2);
}

.collection-image {
  position: relative;
  overflow: hidden;
}

.collection-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.gamegully-festive-collection:hover .collection-image img {
  transform: scale(1.05);
}

.collection-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-accent);
  color: var(--text-color);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
}

.collection-details {
  padding: 25px;
}

.collection-details h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.collection-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 15px;
}

.original-price {
  text-decoration: line-through;
  font-size: 1rem;
  color: #999;
  margin-left: 10px;
}

.collection-includes {
  margin-bottom: 15px;
  padding-left: 20px;
}

.collection-includes li {
  margin-bottom: 8px;
  position: relative;
  color: var(--secondary-text-color);
}

.collection-includes li::before {
  content: '•';
  position: absolute;
  left: -15px;
  color: var(--primary-accent);
}

.collection-note {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--secondary-text-color);
  margin-top: 10px;
}

.gamegully-festive-scrolling {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-accent) #f0f0f0;
}

.gamegully-festive-scrolling::-webkit-scrollbar {
  width: 6px;
}

.gamegully-festive-scrolling::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}

.gamegully-festive-scrolling::-webkit-scrollbar-thumb {
  background-color: var(--primary-accent);
  border-radius: 10px;
}

.festive-option {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: left;
  cursor: pointer;
}

.festive-option:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.festive-option img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.festive-option h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--text-color);
}

.festive-option p {
  font-size: 0.9rem;
  color: var(--secondary-text-color);
  margin: 0;
  text-align: left;
}

.gamegully-festive-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  border-top: 1px dashed #eaeaea;
  padding-top: 30px;
}

.festive-benefits {
  display: flex;
  gap: 20px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 8px;
}

.benefit i {
  color: var(--primary-accent);
  font-size: 1.1rem;
}

.benefit span {
  font-size: 0.9rem;
  color: var(--secondary-text-color);
}

.gamegully-festive-button {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary-accent);
  color: var(--text-color);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(248, 199, 73, 0.2);
}

.gamegully-festive-button:hover {
  background-color: #ffd86b;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(248, 199, 73, 0.3);
}

@media (max-width: 992px) {
  .gamegully-festive-collections {
    flex-direction: column;
  }
  
  .gamegully-festive-scrolling {
    max-height: 300px;
  }
  
  .festive-benefits {
    flex-direction: column;
    gap: 10px;
  }
  
  .gamegully-festive-footer {
    flex-direction: column;
    gap: 20px;
  }
  
  .gamegully-festive-button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .gamegully-festive-content {
    padding: 25px;
  }
  
  .gamegully-heading-accent {
    font-size: 2rem;
  }
}

.gamegully-social-section {
  background-color: #fff;
  text-align: center;
  position: relative;
  border-radius: 15px;
  margin: 40px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.gamegully-social-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--support-gradient);
}

.gamegully-social-waves {
  position: relative;
  z-index: 1;
  padding: 20px 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f9f9f9 100%);
}

.gamegully-social-waves::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%23F8C749' fill-opacity='0.05' d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z'%3E%3C/path%3E%3C/svg%3E");
  opacity: 0.3;
  z-index: -1;
}

.gamegully-social-header {
  text-align: center;
  margin-bottom: 30px;
}

.gamegully-social-tagline {
  font-size: 1.2rem;
  color: var(--secondary-text-color);
  margin-bottom: 40px;
}

.gamegully-social-platforms {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.gamegully-platform-card {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  text-align: left;
}

.gamegully-platform-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.gamegully-platform-card.telegram {
  border-left: 5px solid #0088cc;
}

.platform-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background-color: #0088cc;
  color: #fff;
}

.platform-icon i {
  font-size: 3rem;
}

.platform-details {
  flex: 1;
  padding: 25px;
}

.platform-details h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.platform-details p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: var(--secondary-text-color);
  text-align: left;
}

.platform-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.platform-features li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  color: var(--secondary-text-color);
}

.platform-features li i {
  color: #0088cc;
}

.platform-join {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #0088cc;
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.platform-join:hover {
  background-color: #006699;
  transform: translateY(-3px);
}

.gamegully-social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gamegully-social-tile {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: left;
  border-left: 4px solid transparent;
}

.gamegully-social-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.gamegully-social-tile.whatsapp {
  border-color: #25D366;
}

.gamegully-social-tile.whatsapp i {
  color: #25D366;
}

.gamegully-social-tile.instagram {
  border-color: #E1306C;
}

.gamegully-social-tile.instagram i {
  color: #E1306C;
}

.gamegully-social-tile.youtube {
  border-color: #FF0000;
}

.gamegully-social-tile.youtube i {
  color: #FF0000;
}

.gamegully-social-tile.discord {
  border-color: #7289DA;
}

.gamegully-social-tile.discord i {
  color: #7289DA;
}

.gamegully-social-tile i {
  font-size: 2rem;
}

.gamegully-social-tile div {
  flex: 1;
}

.gamegully-social-tile h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--text-color);
}

.gamegully-social-tile p {
  font-size: 0.9rem;
  color: var(--secondary-text-color);
  margin: 0;
  text-align: left;
}

.gamegully-social-stats {
  display: flex;
  justify-content: space-around;
  margin: 40px 0;
  flex-wrap: wrap;
  gap: 20px;
}

.social-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--secondary-text-color);
}

.gamegully-hashtag-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.gamegully-hashtag {
  background-color: var(--primary-accent);
  color: var(--text-color);
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.gamegully-hashtag:hover {
  background-color: #ffd86b;
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .gamegully-platform-card {
    flex-direction: column;
  }
  
  .platform-icon {
    width: 100%;
    height: 80px;
  }
  
  .gamegully-social-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .platform-features {
    flex-direction: column;
    gap: 10px;
  }
  
  .social-stat {
    width: 45%;
  }
}

@media (max-width: 1200px) {
  .gamegully-section-medium {
    padding: 50px 24px;
  }
  
  .gamegully-faq-section,
  .gamegully-delivery-section,
  .gamegully-contact-section,
  .gamegully-community-section,
  .gamegully-tutorials-section,
  .gamegully-events-section,
  .gamegully-festive-section,
  .gamegully-social-section,
  .gamegully-reviews-section {
    margin: 40px 24px;
  }
  
  .gamegully-delivery-grid {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .gamegully-support-hero-section h1 {
    font-size: 2.5rem;
  }
  
  .gamegully-hero-text {
    font-size: 1.2rem !important;
  }
  
  .gamegully-heading-large {
    font-size: 2.2rem;
  }
  
  .gamegully-delivery-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .gamegully-delivery-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .gamegully-contact-details {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .gamegully-support-hero-section {
    padding: 60px 16px;
  }
  
  .gamegully-section-medium {
    padding: 40px 16px;
  }
  
  .gamegully-faq-section,
  .gamegully-delivery-section,
  .gamegully-contact-section,
  .gamegully-community-section,
  .gamegully-tutorials-section,
  .gamegully-events-section,
  .gamegully-festive-section,
  .gamegully-social-section,
  .gamegully-reviews-section {
    margin: 30px 16px;
  }
  
  .gamegully-support-hero-section h1 {
    font-size: 2.2rem;
  }
  
  .gamegully-hero-text {
    font-size: 1.1rem !important;
  }
  
  .gamegully-heading-large {
    font-size: 2rem;
  }
  
  .gamegully-social-grid {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .gamegully-social-link {
    padding: 15px 20px;
    flex-direction: row;
    width: 100%;
    justify-content: center;
  }
  
  .gamegully-social-link i {
    margin-bottom: 0;
    margin-right: 10px;
  }
  
  .gamegully-reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .gamegully-support-hero-section h1 {
    font-size: 2rem;
  }
  
  .gamegully-hero-text {
    font-size: 1rem !important;
  }
  
  .gamegully-heading-large {
    font-size: 1.8rem;
  }
  
  .gamegully-support-button,
  .gamegully-button {
    width: 100%;
    text-align: center;
  }
  
  .gamegully-faq-question {
    font-size: 1.1rem;
    padding: 15px 35px 15px 15px;
  }
  
  .gamegully-faq-answer {
    padding: 0 15px 15px;
  }
  
  .gamegully-contact-item {
    flex-direction: column;
    text-align: center;
  }
  
  .gamegully-contact-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.gamegully-reviews-section {
  background-color: var(--support-light-bg);
  position: relative;
  border-radius: 15px;
  margin: 40px auto;
  text-align: center;
}

.gamegully-reviews-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%3Cpath d='M30 0l30 30-30 30L0 30 30 0z' fill='%236A7FDB' fill-opacity='0.03'/%3E%3C/svg%3E");
}

.gamegully-reviews-container {
  position: relative;
  z-index: 1;
}

.gamegully-reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.gamegully-reviews-header .gamegully-heading-large {
  margin-bottom: 0;
  text-align: left;
}

.gamegully-reviews-header .gamegully-heading-large::after {
  left: 0;
  transform: none;
}

.gamegully-overall-rating {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #fff;
  padding: 15px 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.rating-stars {
  color: var(--primary-accent);
  font-size: 1.2rem;
}

.rating-text {
  display: flex;
  flex-direction: column;
}

.rating-number {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-color);
}

.rating-count {
  font-size: 0.8rem;
  color: var(--secondary-text-color);
}

.gamegully-reviews-masonry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.gamegully-review-card {
  background-color: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: left;
}

.gamegully-review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.gamegully-review-card.featured {
  grid-column: 1;
  grid-row: 1 / span 2;
  background: linear-gradient(to bottom, #fff 0%, #f9f9f9 100%);
  border-left: 5px solid var(--primary-accent);
}

.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.reviewer-profile img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-accent);
}

.reviewer-info {
  flex: 1;
}

.reviewer-info h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--text-color);
}

.reviewer-info p {
  font-size: 0.9rem;
  color: var(--secondary-text-color);
  margin-bottom: 8px;
}

.reviewer-games {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.reviewer-games span {
  background-color: rgba(248, 199, 73, 0.1);
  padding: 3px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  color: var(--secondary-text-color);
}

.review-rating {
  color: var(--primary-accent);
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.review-text {
  font-size: 1rem;
  color: var(--secondary-text-color);
  margin-bottom: 20px;
  line-height: 1.6;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--secondary-text-color);
}

.verified-purchase {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #4CAF50;
}

.verified-purchase i {
  font-size: 1rem;
}

.review-date {
  color: #999;
}

.gamegully-reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  height: 100%;
}

.reviewer-profile-small {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.reviewer-profile-small img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-accent);
}

.reviewer-profile-small h4 {
  font-size: 1rem;
  margin-bottom: 2px;
  color: var(--text-color);
}

.reviewer-profile-small p {
  font-size: 0.8rem;
  color: var(--secondary-text-color);
  margin: 0;
}

.gamegully-reviews-footer {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.gamegully-outline-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  color: var(--text-color);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-accent);
}

.gamegully-outline-button:hover {
  background-color: rgba(248, 199, 73, 0.1);
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .gamegully-reviews-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .gamegully-reviews-masonry {
    grid-template-columns: 1fr;
  }
  
  .gamegully-review-card.featured {
    grid-column: auto;
    grid-row: auto;
  }
  
  .gamegully-reviews-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

@media (max-width: 768px) {
  .gamegully-overall-rating {
    width: 100%;
    justify-content: center;
  }
  
  .reviewer-profile {
    flex-direction: column;
    text-align: center;
  }
  
  .reviewer-info {
    text-align: center;
  }
  
  .reviewer-games {
    justify-content: center;
  }
  
  .review-meta {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .gamegully-reviews-footer {
    flex-direction: column;
  }
  
  .gamegully-button,
  .gamegully-outline-button {
    width: 100%;
    justify-content: center;
  }
}

html, body {
  width: 100%;
  min-width: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}

.gamegully-global-padding,
.gamegully-section-medium,
.gamegully-small-container,
.gamegully-medium-container,
.gamegully-large-container {
  box-sizing: border-box;
  min-width: 0;
}

.gamegully-small-container,
.gamegully-medium-container,
.gamegully-large-container {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 1200px) {
  .gamegully-small-container,
  .gamegully-medium-container,
  .gamegully-large-container {
    max-width: 100vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  .gamegully-faq-section,
  .gamegully-delivery-section,
  .gamegully-contact-section,
  .gamegully-community-section,
  .gamegully-tutorials-section,
  .gamegully-events-section,
  .gamegully-festive-section,
  .gamegully-social-section,
  .gamegully-reviews-section {
    max-width: 100vw;
  }
}
@media (max-width: 992px) {
  .gamegully-section-medium {
    padding: 32px 4px;
  }
  .gamegully-faq-section,
  .gamegully-delivery-section,
  .gamegully-contact-section,
  .gamegully-community-section,
  .gamegully-tutorials-section,
  .gamegully-events-section,
  .gamegully-festive-section,
  .gamegully-social-section,
  .gamegully-reviews-section {
    margin-left: 0;
    margin-right: 0;
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
  }
}
@media (max-width: 768px) {
  .gamegully-section-medium {
    padding: 20px 2px;
  }
  .gamegully-faq-section,
  .gamegully-delivery-section,
  .gamegully-contact-section,
  .gamegully-community-section,
  .gamegully-tutorials-section,
  .gamegully-events-section,
  .gamegully-festive-section,
  .gamegully-social-section,
  .gamegully-reviews-section {
    margin-left: 0;
    margin-right: 0;
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
  }
}
@media (max-width: 576px) {
  .gamegully-section-medium {
    padding: 10px 0;
  }
}
