:root {
  --rare-accent: #FFD700;
  --rare-secondary: #B8860B;
  --rare-light-bg: #FFF8E1;
  --rare-dark-bg: #F5EED5;
  --rare-gradient: linear-gradient(135deg, var(--rare-accent) 0%, var(--rare-secondary) 100%);
}


.gamegully-global-padding {
  width: 100%;
  overflow: hidden;
}

.gamegully-section-large {
  padding: 80px 32px;
}

.gamegully-section-medium {
  padding: 60px 32px;
}

.gamegully-large-container,
.gamegully-medium-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.gamegully-heading-large {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  color: var(--text-color);
  font-weight: 700;
  font-size: 2.5rem;
}

.gamegully-heading-large::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background-color: var(--rare-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(--rare-accent);
  border-radius: 30px;
  padding: 12px 24px;
  box-shadow: 0 4px 10px rgba(184, 134, 11, 0.2);
  color: #4A4A4A;
  font-weight: 600;
  text-decoration: none;
  background-color: var(--rare-accent);
  transition: all 0.3s ease;
}

.gamegully-button:hover {
  box-shadow: 0 6px 15px rgba(184, 134, 11, 0.3);
  color: var(--rare-accent);
  background-color: #fff;
  transform: translateY(-3px);
}

.gamegully-button i {
  margin-right: 8px;
}


@keyframes shine {
  0% {
    background-position: -100% 0;
  }

  100% {
    background-position: 200% 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-rare-welcome-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--rare-light-bg) 0%, var(--rare-dark-bg) 100%);
}

.gamegully-rare-welcome-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  opacity: 0.1;
  background-color: var(--rare-accent);
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.gamegully-rare-welcome-section::after {
  content: '✦ ✧ ✦';
  position: absolute;
  right: 30px;
  bottom: 20px;
  opacity: 0.2;
  color: var(--rare-secondary);
  font-size: 2rem;
}

.gamegully-rare-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  gap: 50px;
}

@media (max-width: 768px) {
  .gamegully-rare-grid {
    grid-template-columns: 1fr;
  }
}

.gamegully-rare-text h1 {
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
  color: var(--text-color);
  font-weight: 800;
  font-size: 3rem;
}

.gamegully-rare-text h1::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 120px;
  height: 5px;
  border-radius: 2px;
  background-color: var(--rare-accent);
}

.gamegully-rare-text p {
  margin-bottom: 20px;
  color: var(--secondary-text-color);
  font-size: 1.1rem;
  line-height: 1.6;
}

.gamegully-rare-text p:first-of-type {
  margin-bottom: 25px;
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.4rem;
}

.gamegully-rare-image {
  position: relative;
  text-align: center;
  animation: float 6s ease-in-out infinite;
}

.gamegully-rare-image::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: -1;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 2px dashed var(--rare-accent);
  border-radius: 25px;
  opacity: 0.3;
  animation: rotate 20s linear infinite;
}

.gamegully-rare-image img {
  max-width: 100%;
  height: auto;
  border: 4px solid #fff;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  outline: 1px solid var(--rare-accent);
  outline-offset: -2px;
  transition: transform 0.3s ease;
}

.gamegully-rare-image:hover img {
  transform: scale(1.05);
}

.gamegully-rare-button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 30px;
  border: 2px solid var(--rare-accent);
  border-radius: 30px;
  padding: 14px 28px;
  box-shadow: 0 4px 10px rgba(184, 134, 11, 0.2);
  overflow: hidden;
  color: #4A4A4A;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  text-decoration: none;
  background-color: var(--rare-accent);
  transition: all 0.3s ease;
}

.gamegully-rare-button:hover {
  box-shadow: 0 6px 15px rgba(184, 134, 11, 0.3);
  color: var(--rare-accent);
  background-color: #fff;
  transform: translateY(-3px);
}

.gamegully-rare-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);
  transition: 0.5s;
}

.gamegully-rare-button:hover::before {
  left: 100%;
  animation: shine 1.5s ease-in-out;
}

.gamegully-rare-button i {
  margin-right: 8px;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


.gamegully-featured-rare-section {
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

.gamegully-featured-rare-section::after {
  content: '';
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  opacity: 0.1;
  background-color: var(--rare-accent);
}

.gamegully-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 425px) {
  .gamegully-featured-grid {
    grid-template-columns: 1fr;
  }
}

.gamegully-featured-item {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(184, 134, 11, 0.1);
  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::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  opacity: 0.8;
  background: var(--rare-gradient);
}

.gamegully-featured-item:nth-child(2) {
  animation-delay: 0.2s;
}

.gamegully-featured-item:nth-child(3) {
  animation-delay: 0.4s;
}

.gamegully-featured-item:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-10px);
}

.gamegully-featured-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gamegully-featured-item:hover img {
  transform: scale(1.1);
}

.gamegully-featured-item h3 {
  margin: 20px 20px 10px;
  color: var(--text-color);
  font-weight: 700;
  font-size: 1.5rem;
}

.gamegully-featured-item p {
  flex-grow: 1;
  padding: 0 20px 20px;
  color: var(--secondary-text-color);
}

.gamegully-featured-item .gamegully-button {
  justify-content: center;
  align-self: center;
  margin: 0 20px 20px;
  text-align: center;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.gamegully-rare-catalog-section {
  position: relative;
  background-color: var(--rare-light-bg);
}

.gamegully-rare-catalog-section::before {
  content: '✦';
  position: absolute;
  top: 30px;
  left: 5%;
  opacity: 0.1;
  color: var(--rare-accent);
  font-size: 3rem;
}

.gamegully-rare-catalog-section::after {
  content: '✧';
  position: absolute;
  right: 5%;
  bottom: 30px;
  opacity: 0.1;
  color: var(--rare-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 {
  position: relative;
  transition: transform 0.3s ease;
}

.gamegully-catalog-item:hover {
  transform: translateY(-10px);
}

.gamegully-game-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(184, 134, 11, 0.1);
  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(255, 215, 0, 0.05) 0%, rgba(255, 255, 255, 0) 50%);
  pointer-events: none;
}

.gamegully-game-card::after {
  content: 'rare';
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  border-radius: 10px;
  padding: 5px 10px;
  opacity: 0;
  color: #4A4A4A;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  background-color: var(--rare-accent);
  transition: all 0.3s ease;
  transform: translateY(-10px);
}

.gamegully-game-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.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(--rare-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(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}

.gamegully-tag-category:hover {
  background-color: rgba(255, 215, 0, 0.2);
}

.gamegully-tag-order {
  display: inline-block;
  border: 2px solid var(--rare-accent);
  border-radius: 20px;
  padding: 8px 16px;
  color: #4A4A4A;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  background-color: var(--rare-accent);
  transition: all 0.3s ease;
}

.gamegully-tag-order:hover {
  color: var(--rare-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(255, 215, 0, 0.3), rgba(0, 0, 0, 0.05));
}


.gamegully-rare-categories-section {
  position: relative;
  background-color: #fff;
}

.gamegully-rare-categories-section::before {
  content: '✦';
  position: absolute;
  top: 40px;
  right: 5%;
  opacity: 0.1;
  color: var(--rare-accent);
  font-size: 3rem;
}

.gamegully-rare-categories-section::after {
  content: '✧';
  position: absolute;
  bottom: 40px;
  left: 5%;
  opacity: 0.1;
  color: var(--rare-accent);
  font-size: 3rem;
}

.gamegully-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 425px) {
  .gamegully-categories-grid {
    grid-template-columns: 1fr;
  }
}

.gamegully-category-item {
  position: relative;
  border: 1px solid rgba(184, 134, 11, 0.1);
  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(255, 215, 0, 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);
}

.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;
  border-bottom: 2px solid var(--rare-secondary);
  padding: 15px;
  color: #4A4A4A;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  background-color: var(--rare-accent);
  transition: background-color 0.3s ease;
}

.gamegully-category-link:hover {
  color: #fff;
  background-color: var(--rare-secondary);
}

.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;
  border-radius: 0;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
}

.gamegully-hub-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.gamegully-community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.gamegully-community-content {
  padding-right: 30px;
}

.gamegully-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.gamegully-badge {
  display: inline-block;
  border-radius: 20px;
  padding: 6px 12px;
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.85rem;
  background-color: #F8F8F8;
}

.gamegully-lead-text {
  margin-bottom: 20px;
  color: var(--text-color) !important;
  font-weight: 500;
  font-size: 1.4rem !important;
  line-height: 1.4;
}

.gamegully-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.gamegully-primary-button {
  display: inline-block;
  border-radius: 4px;
  padding: 12px 30px;
  color: var(--text-color);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  background-color: var(--primary-accent);
  transition: all 0.3s ease;
}

.gamegully-primary-button:hover {
  background-color: #ffd86b;
  transform: translateY(-3px);
}

.gamegully-outline-button {
  display: inline-block;
  border: 1px solid var(--text-color);
  border-radius: 4px;
  padding: 12px 30px;
  color: var(--text-color);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  background-color: transparent;
  transition: all 0.3s ease;
}

.gamegully-outline-button:hover {
  color: #fff;
  background-color: var(--text-color);
  transform: translateY(-3px);
}

.gamegully-text-button {
  display: inline-flex;
  align-items: center;
  color: var(--text-color);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.gamegully-text-button i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.gamegully-text-button:hover {
  color: var(--primary-accent);
}

.gamegully-text-button:hover i {
  transform: translateX(5px);
}

.gamegully-community-image {
  position: relative;
}

.gamegully-image-stack {
  position: relative;
  width: 100%;
  height: 350px;
}

.gamegully-image-card {
  position: absolute;
  width: 85%;
  height: 280px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.5s ease;
}

.gamegully-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gamegully-image-card-front {
  top: 0;
  left: 0;
  z-index: 2;
  background-color: #fff;
  transform: rotate(-5deg);
}

.gamegully-image-card-back {
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: #fff;
  transform: rotate(5deg);
}

.gamegully-image-stack:hover .gamegully-image-card-front {
  transform: rotate(-8deg) translateY(-10px);
}

.gamegully-image-stack:hover .gamegully-image-card-back {
  transform: rotate(8deg) translateY(10px);
}

.gamegully-partner-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  border-top: 1px solid #eee;
  padding: 30px 0;
}

.gamegully-partner-strip img {
  height: 150px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.gamegully-partner-strip img:hover {
  opacity: 1;
}


.gamegully-festive-section {
  position: relative;
  overflow: hidden;
  background-color: #FFF8E1;
}

.gamegully-festive-split {
  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: center;
  gap: 50px;
}

.gamegully-section-label {
  display: inline-block;
  margin-bottom: 15px;
  border-radius: 4px;
  padding: 5px 12px;
  color: var(--text-color);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: var(--primary-accent);
}

.gamegully-festive-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.gamegully-festive-feature {
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background-color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.gamegully-festive-feature:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.gamegully-festive-feature i {
  margin-bottom: 15px;
  color: var(--primary-accent);
  font-size: 2rem;
}

.gamegully-festive-feature h3 {
  margin-bottom: 10px;
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.1rem;
}

.gamegully-festive-feature p {
  color: var(--secondary-text-color) !important;
  font-size: 0.95rem !important;
  line-height: 1.4 !important;
}

.gamegully-cta-container {
  margin-top: 40px;
}

.gamegully-cta-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 300px;
  border-radius: 8px;
  padding: 15px 25px;
  color: var(--text-color);
  font-weight: 600;
  text-decoration: none;
  background-color: var(--primary-accent);
  transition: all 0.3s ease;
}

.gamegully-cta-button:hover {
  background-color: #ffd86b;
  transform: translateY(-3px);
}

.gamegully-cta-note {
  margin-top: 10px !important;
  color: var(--secondary-text-color) !important;
  font-size: 0.85rem !important;
}

.gamegully-festive-image {
  position: relative;
}

.gamegully-festive-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gamegully-festive-badge {
  position: absolute;
  top: 20px;
  right: -10px;
  border-radius: 0 4px 4px 0;
  padding: 8px 15px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: var(--text-color);
  font-weight: 600;
  font-size: 0.9rem;
  background-color: var(--primary-accent);
}

.gamegully-festive-badge::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: -10px;
  width: 10px;
  height: 10px;
  background-color: #d4a934;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}


.gamegully-preservation-section {
  position: relative;
  background: #fff;
}

.gamegully-preservation-header {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.gamegully-preservation-icon {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-right: 20px;
  border-radius: 50%;
  background-color: var(--primary-accent);
}

.gamegully-preservation-icon i {
  color: var(--text-color);
  font-size: 2.5rem;
}

.gamegully-preservation-title .gamegully-heading-large {
  margin-bottom: 10px;
  text-align: left;
}

.gamegully-preservation-title .gamegully-heading-large::after {
  left: 0;
  transform: none;
}

.gamegully-preservation-subtitle {
  color: var(--secondary-text-color) !important;
  font-size: 1.2rem !important;
}

.gamegully-preservation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.gamegully-preservation-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background-color: #f8f8f8;
  transition: all 0.3s ease;
}

.gamegully-preservation-card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.gamegully-preservation-card-image {
  padding: 20px;
  text-align: center;
  background-color: #fff;
}

.gamegully-preservation-card-image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.gamegully-preservation-card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 20px;
}

.gamegully-preservation-card-content h3 {
  margin-bottom: 10px;
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.2rem;
}

.gamegully-preservation-card-content p {
  flex-grow: 1;
  margin-bottom: 20px !important;
  color: var(--secondary-text-color) !important;
  font-size: 1rem !important;
}

.gamegully-preservation-link {
  display: flex;
  align-items: center;
  align-self: flex-start;
  color: var(--primary-accent);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.gamegully-preservation-link i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.gamegully-preservation-link:hover {
  color: #ffd86b;
}

.gamegully-preservation-link:hover i {
  transform: translateX(5px);
}

.gamegully-preservation-workshop {
  position: relative;
  margin-top: 40px;
  border-radius: 8px;
  padding: 25px;
  overflow: hidden;
  background-color: var(--primary-accent);
}

.gamegully-preservation-workshop::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translate(50%, -50%);
}

.gamegully-workshop-date {
  display: inline-block;
  margin-bottom: 15px;
  border-radius: 20px;
  padding: 5px 12px;
  color: var(--text-color);
  font-weight: 600;
  font-size: 0.9rem;
  background-color: #fff;
}

.gamegully-preservation-workshop h3 {
  margin-bottom: 10px;
  color: var(--text-color);
  font-weight: 700;
  font-size: 1.5rem;
}

.gamegully-preservation-workshop p {
  max-width: 70%;
  margin-bottom: 20px !important;
  color: var(--text-color) !important;
  font-size: 1.1rem !important;
}

.gamegully-workshop-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 4px;
  padding: 12px 25px;
  color: var(--text-color);
  font-weight: 600;
  text-decoration: none;
  background-color: #fff;
  transition: all 0.3s ease;
}

.gamegully-workshop-button:hover {
  color: #fff;
  background-color: var(--text-color);
  transform: translateY(-3px);
}

.gamegully-workshop-button i {
  margin-right: 8px;
}


.gamegully-events-section {
  position: relative;
  background-color: #f8f8f8;
}

.gamegully-events-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.gamegully-events-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.gamegully-events-header .gamegully-heading-large {
  margin-bottom: 0;
}

.gamegully-events-tabs {
  display: flex;
  gap: 10px;
}

.gamegully-events-tab {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 8px 16px;
  color: var(--secondary-text-color);
  font-weight: 500;
  font-size: 0.95rem;
  background-color: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.gamegully-events-tab.active,
.gamegully-events-tab:hover {
  border-color: var(--primary-accent);
  color: var(--text-color);
  background-color: var(--primary-accent);
}

.gamegully-events-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.gamegully-event-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 8px;
  border-top: 4px solid var(--primary-accent);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background-color: #fff;
  transition: all 0.3s ease;
}

.gamegully-event-card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.gamegully-event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding: 15px;
  background-color: #f8f8f8;
}

.gamegully-event-month {
  color: var(--secondary-text-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.gamegully-event-day {
  color: var(--text-color);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
}

.gamegully-event-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 20px;
}

.gamegully-event-location {
  margin-bottom: 10px;
  color: var(--secondary-text-color);
  font-size: 0.9rem;
}

.gamegully-event-location i {
  margin-right: 5px;
  color: var(--primary-accent);
}

.gamegully-event-title {
  margin-bottom: 10px;
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.2rem;
}

.gamegully-event-description {
  flex-grow: 1;
  margin-bottom: 20px;
  color: var(--secondary-text-color);
  font-size: 0.95rem;
}

.gamegully-event-meta {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #eee;
  padding-top: 15px;
  color: var(--secondary-text-color);
  font-size: 0.85rem;
}

.gamegully-event-meta i {
  margin-right: 5px;
  color: var(--primary-accent);
}

.gamegully-event-action {
  padding: 0 20px 20px;
}

.gamegully-event-button {
  display: block;
  width: 100%;
  border-radius: 4px;
  padding: 10px;
  color: var(--text-color);
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  background-color: var(--primary-accent);
  transition: all 0.3s ease;
}

.gamegully-event-button:hover {
  background-color: #ffd86b;
}

.gamegully-events-map {
  position: relative;
  margin-top: 50px;
  border-radius: 8px;
  overflow: hidden;
}

.gamegully-map-placeholder {
  width: 100%;
  height: 400px;
}

.gamegully-map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gamegully-map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.gamegully-map-overlay p {
  margin: 0 !important;
  color: #fff !important;
  font-weight: 500;
  font-size: 1.1rem !important;
}

.gamegully-map-button {
  display: inline-block;
  border-radius: 4px;
  padding: 8px 16px;
  color: var(--text-color);
  font-weight: 600;
  text-decoration: none;
  background-color: var(--primary-accent);
  transition: all 0.3s ease;
}

.gamegully-map-button:hover {
  background-color: #ffd86b;
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .gamegully-community-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gamegully-community-content {
    padding-right: 0;
  }

  .gamegully-image-stack {
    max-width: 500px;
    height: 300px;
    margin: 0 auto;
  }

  .gamegully-partner-strip {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .gamegully-festive-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gamegully-festive-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .gamegully-preservation-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gamegully-preservation-workshop p {
    max-width: 100%;
  }

  .gamegully-events-cards {
    grid-template-columns: 1fr;
  }

  .gamegully-events-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .gamegully-events-tabs {
    width: 100%;
    padding-bottom: 5px;
    overflow-x: auto;
  }

  .gamegully-map-overlay {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 768px) and (min-width: 577px) {
  .gamegully-preservation-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gamegully-events-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .gamegully-badge-row {
    justify-content: center;
  }

  .gamegully-community-content,
  .gamegully-festive-content,
  .gamegully-preservation-header {
    text-align: center;
  }

  .gamegully-action-row {
    justify-content: center;
  }

  .gamegully-preservation-icon {
    margin: 0 auto 20px;
  }

  .gamegully-preservation-header {
    flex-direction: column;
  }

  .gamegully-preservation-title .gamegully-heading-large::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .gamegully-cta-button {
    flex-direction: column;
    gap: 10px;
    margin: 0 auto;
  }

  .gamegully-cta-note {
    text-align: center;
  }

  .gamegully-workshop-button {
    justify-content: center;
    width: 100%;
  }
}

.gamegully-game-price {
  display: block;
  margin: 10px 0 5px 0;
  color: var(--rare-accent);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  text-align: left;
}