:root {
  --gamechant-white: #ffffff;
  --gamechant-light-grey: #f8f9fa;
  --gamechant-pastel-beige: #faf7f3;
  --gamechant-sky-blue: #4a90e2;
  --gamechant-gold: #d4af37;
  --gamechant-dark-text: #2c3e50;
  --gamechant-medium-text: #5a6c7d;
  --gamechant-light-text: #7f8c8d;
  --gamechant-border: #e9ecef;
  --gamechant-hover: rgba(74, 144, 226, 0.1);
  --gamechant-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --gamechant-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
}
body,
html {
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--gamechant-dark-text);
  background-color: var(--gamechant-white);
}

.gamechant-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gamechant-responsive-img {
  width: 100%;
  height: auto;
  display: block;
}

.gamechant-hero-section {
  background: linear-gradient(
    135deg,
    var(--gamechant-pastel-beige) 0%,
    var(--gamechant-light-grey) 100%
  );
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

.gamechant-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/images/bg.png");
  background-attachment: fixed;
  background-size: cover;
}

.gamechant-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  padding: 20px;
  margin: 0 auto;
}

.gamechant-hero-title {
  font-family: "Crimson Text", serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--gamechant-dark-text);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.gamechant-hero-subtitle {
  font-size: 1.4rem;
  color: var(--gamechant-sky-blue);
  margin-bottom: 30px;
  font-weight: 500;
}

.gamechant-hero-description {
  font-size: 1.1rem;
  color: var(--gamechant-medium-text);
  margin-bottom: 40px;
  line-height: 1.7;
}

.gamechant-hero-btn {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--gamechant-sky-blue),
    var(--gamechant-gold)
  );
  color: var(--gamechant-white);
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--gamechant-shadow);
}

.gamechant-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--gamechant-shadow-hover);
}

.gamechant-hero-image {
  position: relative;
}

.gamechant-features-section {
  padding: 100px 0;
  background: var(--gamechant-white);
}

.gamechant-section-title {
  font-family: "Crimson Text", serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
  color: var(--gamechant-dark-text);
}

.gamechant-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.gamechant-feature-card {
  background: var(--gamechant-light-grey);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.gamechant-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--gamechant-shadow-hover);
  border-color: var(--gamechant-sky-blue);
}

.gamechant-feature-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto 20px;
  object-fit: cover;
}

.gamechant-feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--gamechant-dark-text);
}

.gamechant-feature-card p {
  color: var(--gamechant-medium-text);
  line-height: 1.6;
}

.gamechant-stories-section {
  padding: 100px 0;
  background: var(--gamechant-pastel-beige);
}

.gamechant-stories-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.gamechant-stories-text h2 {
  font-family: "Crimson Text", serif;
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: var(--gamechant-dark-text);
}

.gamechant-stories-text p {
  font-size: 1.1rem;
  color: var(--gamechant-medium-text);
  margin-bottom: 30px;
  line-height: 1.7;
}

.gamechant-quote {
  font-family: "Crimson Text", serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--gamechant-sky-blue);
  margin: 40px 0;
  padding: 20px 0;
  border-left: 4px solid var(--gamechant-gold);
  padding-left: 30px;
}

.gamechant-text-link {
  color: var(--gamechant-sky-blue);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.gamechant-text-link:hover {
  border-bottom-color: var(--gamechant-sky-blue);
}

.gamechant-stories-visual {
  position: relative;
}

.gamechant-stories-visual::after {
  content: "";
  position: absolute;
  top: 20px;
  right: -20px;
  bottom: -20px;
  left: 20px;
  background: linear-gradient(
    135deg,
    var(--gamechant-gold),
    var(--gamechant-sky-blue)
  );
  border-radius: 20px;
  z-index: -1;
  opacity: 0.1;
}

.gamechant-latest-section {
  padding: 100px 0;
  background: var(--gamechant-white);
}

.gamechant-latest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.gamechant-latest-card {
  background: var(--gamechant-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--gamechant-shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--gamechant-border);
}

.gamechant-latest-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--gamechant-shadow-hover);
}

.gamechant-card-img {
  width: 100%;

  object-fit: cover;
}

.gamechant-card-content {
  padding: 30px;
}

.gamechant-card-date {
  color: var(--gamechant-light-text);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gamechant-latest-card h3 {
  font-size: 1.3rem;
  margin: 15px 0;
  color: var(--gamechant-dark-text);
}

.gamechant-latest-card p {
  color: var(--gamechant-medium-text);
  line-height: 1.6;
  margin-bottom: 20px;
}

.gamechant-card-link {
  color: var(--gamechant-sky-blue);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.gamechant-card-link:hover {
  color: var(--gamechant-gold);
}

.gamechant-newsletter-section {
  background: linear-gradient(
    135deg,
    var(--gamechant-sky-blue),
    var(--gamechant-gold)
  );
  padding: 80px 0;
  color: var(--gamechant-white);
}

.gamechant-newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.gamechant-newsletter-content h2 {
  font-family: "Crimson Text", serif;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.gamechant-newsletter-content p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.gamechant-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gamechant-form-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.gamechant-newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  min-width: 250px;
}

.gamechant-newsletter-btn {
  background: var(--gamechant-white);
  color: var(--gamechant-sky-blue);
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.gamechant-newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.gamechant-newsletter-note {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 10px;
}

.gamechant-footer {
  background: var(--gamechant-dark-text);
  color: var(--gamechant-white);
  padding: 60px 0 30px;
}

.gamechant-footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.gamechant-footer-title {
  font-family: "Crimson Text", serif;
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--gamechant-gold);
}

.gamechant-footer-subtitle {
  color: var(--gamechant-sky-blue);
  margin-bottom: 20px;
  font-style: italic;
}

.gamechant-footer-text {
  opacity: 0.8;
  line-height: 1.6;
}

.gamechant-footer h4 {
  margin-bottom: 20px;
  color: var(--gamechant-gold);
}

.gamechant-footer ul {
  list-style: none;
}

.gamechant-footer ul li {
  margin-bottom: 10px;
}

.gamechant-footer ul li a {
  color: var(--gamechant-white);
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.gamechant-footer ul li a:hover {
  opacity: 1;
  color: var(--gamechant-sky-blue);
}

.gamechant-footer-email {
  color: var(--gamechant-sky-blue);
  font-weight: 500;
}

.gamechant-footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
}

.gamechant-cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gamechant-dark-text);
  color: var(--gamechant-white);
  padding: 20px;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.gamechant-cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.gamechant-cookie-text {
  flex: 1;
  min-width: 300px;
}

.gamechant-cookie-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.gamechant-cookie-btn {
  padding: 10px 20px;
  border: 2px solid var(--gamechant-white);
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.gamechant-cookie-btn.gamechant-accept {
  background: var(--gamechant-sky-blue);
  color: var(--gamechant-white);
  border-color: var(--gamechant-sky-blue);
}

.gamechant-cookie-btn.gamechant-decline {
  background: transparent;
  color: var(--gamechant-white);
}

.gamechant-cookie-btn:hover {
  transform: translateY(-2px);
}

.gamechant-cookie-link {
  color: var(--gamechant-gold);
  text-decoration: none;
  font-size: 0.9rem;
}

.gamechant-cookie-link:hover {
  text-decoration: underline;
}

.gamechant-hero-about {
  background: linear-gradient(
    135deg,
    var(--gamechant-pastel-beige) 0%,
    var(--gamechant-light-grey) 100%
  );
  padding: 100px 0;
  text-align: center;
}

.gamechant-hero-about h1 {
  font-family: "Crimson Text", serif;
  font-size: 3rem;
  color: var(--gamechant-dark-text);
  margin-bottom: 20px;
}

.gamechant-mission-section {
  padding: 100px 0;
  background: var(--gamechant-white);
}

.gamechant-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.gamechant-mission-content h2 {
  font-family: "Crimson Text", serif;
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: var(--gamechant-dark-text);
}

.gamechant-mission-points {
  margin-top: 40px;
}

.gamechant-point {
  margin-bottom: 30px;
  padding: 20px;
  background: var(--gamechant-light-grey);
  border-radius: 15px;
  border-left: 4px solid var(--gamechant-sky-blue);
}

.gamechant-point h3 {
  color: var(--gamechant-dark-text);
  margin-bottom: 10px;
}

.gamechant-philosophy-section {
  padding: 100px 0;
  background: var(--gamechant-pastel-beige);
}

.gamechant-philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.gamechant-philosophy-card {
  background: var(--gamechant-white);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--gamechant-shadow);
  transition: all 0.3s ease;
}

.gamechant-philosophy-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--gamechant-shadow-hover);
}

.gamechant-card-image {
  width: 100%;

  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 20px;
}

.gamechant-journey-section {
  padding: 100px 0;
  background: var(--gamechant-white);
}

.gamechant-timeline {
  margin-top: 60px;
}

.gamechant-timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

.gamechant-timeline-item:nth-child(even) {
  direction: rtl;
}

.gamechant-timeline-item:nth-child(even) .gamechant-timeline-content {
  direction: ltr;
}

.gamechant-timeline-content {
  background: var(--gamechant-light-grey);
  padding: 30px;
  border-radius: 20px;
  position: relative;
}

.gamechant-timeline-content h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--gamechant-dark-text);
}

.gamechant-timeline-date {
  color: var(--gamechant-sky-blue);
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}

.gamechant-timeline-img {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--gamechant-gold);
}

.gamechant-contact-hero {
  background: linear-gradient(
    135deg,
    var(--gamechant-sky-blue),
    var(--gamechant-gold)
  );
  padding: 100px 0;
  color: var(--gamechant-white);
  text-align: center;
}

.gamechant-contact-intro h1 {
  font-family: "Crimson Text", serif;
  font-size: 3rem;
  margin-bottom: 20px;
}

.gamechant-contact-subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.gamechant-contact-main {
  padding: 100px 0;
  background: var(--gamechant-white);
}

.gamechant-contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.gamechant-contact-form {
  background: var(--gamechant-light-grey);
  padding: 40px;
  border-radius: 20px;
}

.gamechant-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.gamechant-form-group {
  margin-bottom: 25px;
}

.gamechant-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--gamechant-dark-text);
}

.gamechant-form-group input,
.gamechant-form-group select,
.gamechant-form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--gamechant-border);
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.gamechant-form-group input:focus,
.gamechant-form-group select:focus,
.gamechant-form-group textarea:focus {
  outline: none;
  border-color: var(--gamechant-sky-blue);
}

.gamechant-contact-btn {
  background: var(--gamechant-sky-blue);
  color: var(--gamechant-white);
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gamechant-contact-btn:hover {
  background: var(--gamechant-gold);
  transform: translateY(-2px);
}

.gamechant-contact-card {
  background: var(--gamechant-white);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: var(--gamechant-shadow);
  transition: all 0.3s ease;
}

.gamechant-contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--gamechant-shadow-hover);
}

.gamechant-contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 15px;
  object-fit: cover;
}

.gamechant-contact-link {
  color: var(--gamechant-sky-blue);
  text-decoration: none;
  font-weight: 600;
}

.gamechant-contact-note {
  color: var(--gamechant-light-text);
  font-size: 0.9rem;
}

.gamechant-collaboration-section {
  padding: 100px 0;
  background: var(--gamechant-pastel-beige);
}

.gamechant-collaboration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.gamechant-collab-item {
  background: var(--gamechant-white);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--gamechant-shadow);
  transition: all 0.3s ease;
}

.gamechant-collab-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--gamechant-shadow-hover);
}

.gamechant-collab-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  object-fit: cover;
}

.gamechant-faq-section {
  padding: 100px 0;
  background: var(--gamechant-white);
}

.gamechant-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.gamechant-faq-item {
  background: var(--gamechant-light-grey);
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid var(--gamechant-sky-blue);
}

.gamechant-faq-item h3 {
  color: var(--gamechant-dark-text);
  margin-bottom: 15px;
}

.gamechant-news-hero {
  background: linear-gradient(
    135deg,
    var(--gamechant-dark-text),
    var(--gamechant-sky-blue)
  );
  padding: 100px 0;
  color: var(--gamechant-white);
  text-align: center;
}

.gamechant-news-header h1 {
  font-family: "Crimson Text", serif;
  font-size: 3rem;
  margin-bottom: 20px;
}

.gamechant-news-subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.gamechant-featured-news {
  padding: 80px 0;
  background: var(--gamechant-light-grey);
}

.gamechant-featured-article {
  background: var(--gamechant-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--gamechant-shadow-hover);
}

.gamechant-featured-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0;
}

.gamechant-featured-text {
  padding: 50px;
}

.gamechant-featured-category {
  background: var(--gamechant-sky-blue);
  color: var(--gamechant-white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.gamechant-featured-article h2 {
  font-family: "Crimson Text", serif;
  font-size: 2.2rem;
  margin: 25px 0 20px;
  color: var(--gamechant-dark-text);
}

.gamechant-featured-excerpt {
  font-size: 1.1rem;
  color: var(--gamechant-medium-text);
  line-height: 1.6;
  margin-bottom: 30px;
}

.gamechant-featured-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  color: var(--gamechant-light-text);
  font-size: 0.9rem;
}

.gamechant-featured-link {
  color: var(--gamechant-sky-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
}

.gamechant-featured-image {
  background: var(--gamechant-light-grey);
  display: flex;
  align-items: center;
}

.gamechant-news-grid-section {
  padding: 100px 0;
  background: var(--gamechant-white);
}

.gamechant-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.gamechant-news-card {
  background: var(--gamechant-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--gamechant-shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--gamechant-border);
}

.gamechant-news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--gamechant-shadow-hover);
}

.gamechant-news-img {
  width: 100%;

  object-fit: cover;
}

.gamechant-news-content {
  padding: 25px;
}

.gamechant-news-category {
  background: var(--gamechant-gold);
  color: var(--gamechant-white);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.gamechant-news-card h3 {
  font-size: 1.2rem;
  margin: 15px 0 12px;
  color: var(--gamechant-dark-text);
}

.gamechant-news-meta {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  color: var(--gamechant-light-text);
  font-size: 0.85rem;
}

.gamechant-trending-section {
  padding: 100px 0;
  background: var(--gamechant-pastel-beige);
}

.gamechant-trending-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  margin-top: 60px;
}

.gamechant-trending-main {
  background: var(--gamechant-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--gamechant-shadow);
}

.gamechant-trending-img {
  width: 100%;

  object-fit: cover;
}

.gamechant-trending-text {
  padding: 40px;
}

.gamechant-trending-tag {
  background: var(--gamechant-sky-blue);
  color: var(--gamechant-white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.gamechant-trending-main h3 {
  font-size: 1.5rem;
  margin: 20px 0 15px;
  color: var(--gamechant-dark-text);
}

.gamechant-trending-link {
  color: var(--gamechant-sky-blue);
  text-decoration: none;
  font-weight: 600;
}

.gamechant-trending-item {
  display: flex;
  gap: 15px;
  align-items: center;
  background: var(--gamechant-white);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: var(--gamechant-shadow);
  transition: all 0.3s ease;
}

.gamechant-trending-item:hover {
  transform: translateX(5px);
  box-shadow: var(--gamechant-shadow-hover);
}

.gamechant-trending-thumb {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.gamechant-trending-info h4 {
  font-size: 0.95rem;
  margin-bottom: 5px;
  color: var(--gamechant-dark-text);
}

.gamechant-trending-date {
  color: var(--gamechant-light-text);
  font-size: 0.8rem;
}

.gamechant-updates-section {
  padding: 100px 0;
  background: var(--gamechant-white);
}

.gamechant-updates-timeline {
  margin-top: 60px;
}

.gamechant-update-item {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  padding: 30px;
  background: var(--gamechant-light-grey);
  border-radius: 15px;
  border-left: 4px solid var(--gamechant-sky-blue);
}

.gamechant-update-date {
  text-align: center;
  min-width: 80px;
}

.gamechant-update-day {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gamechant-sky-blue);
}

.gamechant-update-month {
  font-size: 0.9rem;
  color: var(--gamechant-medium-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gamechant-update-content h3 {
  color: var(--gamechant-dark-text);
  margin-bottom: 10px;
}

.gamechant-reviews-hero {
  background: linear-gradient(
    135deg,
    var(--gamechant-gold),
    var(--gamechant-sky-blue)
  );
  padding: 100px 0;
  color: var(--gamechant-white);
  text-align: center;
}

.gamechant-reviews-header h1 {
  font-family: "Crimson Text", serif;
  font-size: 3rem;
  margin-bottom: 20px;
}

.gamechant-reviews-subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.gamechant-featured-review {
  padding: 80px 0;
  background: var(--gamechant-light-grey);
}

.gamechant-featured-review-content {
  background: var(--gamechant-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--gamechant-shadow-hover);
}

.gamechant-featured-review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 40px 20px;
  background: linear-gradient(
    135deg,
    var(--gamechant-pastel-beige),
    var(--gamechant-light-grey)
  );
}

.gamechant-featured-badge {
  background: var(--gamechant-gold);
  color: var(--gamechant-white);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.gamechant-rating-section {
  text-align: right;
}

.gamechant-overall-score {
  font-size: 3rem;
  font-weight: 700;
  color: var(--gamechant-sky-blue);
  margin-bottom: 10px;
}

.gamechant-rating-breakdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gamechant-rating-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.gamechant-rating-bar {
  width: 80px;
  height: 4px;
  background: var(--gamechant-border);
  border-radius: 2px;
  overflow: hidden;
}

.gamechant-rating-fill {
  height: 100%;
  background: var(--gamechant-sky-blue);
  transition: width 0.3s ease;
}

.gamechant-featured-review-main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0;
}

.gamechant-featured-review-text {
  padding: 40px;
}

.gamechant-featured-review-text h2 {
  font-family: "Crimson Text", serif;
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--gamechant-dark-text);
}

.gamechant-review-genre {
  color: var(--gamechant-sky-blue);
  font-weight: 500;
  margin-bottom: 20px;
}

.gamechant-review-excerpt {
  font-size: 1.1rem;
  color: var(--gamechant-medium-text);
  line-height: 1.6;
  margin-bottom: 30px;
}

.gamechant-review-highlights h3 {
  color: var(--gamechant-dark-text);
  margin-bottom: 15px;
}

.gamechant-review-highlights ul {
  list-style: none;
}

.gamechant-review-highlights li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: var(--gamechant-medium-text);
}

.gamechant-review-highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gamechant-gold);
  font-weight: bold;
}

.gamechant-review-link {
  color: var(--gamechant-sky-blue);
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
  display: inline-block;
}

.gamechant-featured-review-image {
  background: var(--gamechant-pastel-beige);
  display: flex;
  align-items: center;
}

.gamechant-reviews-grid-section {
  padding: 100px 0;
  background: var(--gamechant-white);
}

.gamechant-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.gamechant-review-card {
  background: var(--gamechant-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--gamechant-shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--gamechant-border);
}

.gamechant-review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--gamechant-shadow-hover);
}

.gamechant-review-image-container {
  position: relative;
}

.gamechant-review-card-img {
  width: 100%;

  object-fit: cover;
}

.gamechant-review-score {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gamechant-sky-blue);
  color: var(--gamechant-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.gamechant-review-card-content {
  padding: 25px;
}

.gamechant-review-card h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--gamechant-dark-text);
}

.gamechant-review-card-genre {
  color: var(--gamechant-sky-blue);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.gamechant-review-pros-cons {
  margin: 20px 0;
  font-size: 0.9rem;
}

.gamechant-review-pros {
  color: var(--gamechant-medium-text);
  margin-bottom: 8px;
}

.gamechant-review-cons {
  color: var(--gamechant-medium-text);
}

.gamechant-review-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  color: var(--gamechant-light-text);
  font-size: 0.85rem;
}

.gamechant-review-methodology {
  padding: 100px 0;
  background: var(--gamechant-pastel-beige);
}

.gamechant-methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.gamechant-methodology-item {
  background: var(--gamechant-white);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--gamechant-shadow);
  transition: all 0.3s ease;
}

.gamechant-methodology-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--gamechant-shadow-hover);
}

.gamechant-methodology-img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  margin: 0 auto 20px;
  object-fit: cover;
}

.gamechant-upcoming-reviews {
  padding: 100px 0;
  background: var(--gamechant-white);
}

.gamechant-upcoming-list {
  margin-top: 40px;
}

.gamechant-upcoming-item {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--gamechant-light-grey);
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.gamechant-upcoming-item:hover {
  transform: translateX(5px);
  box-shadow: var(--gamechant-shadow);
}

.gamechant-upcoming-thumb {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
}

.gamechant-upcoming-info h3 {
  color: var(--gamechant-dark-text);
  margin-bottom: 8px;
}

.gamechant-upcoming-info p {
  color: var(--gamechant-medium-text);
  margin-bottom: 8px;
}

.gamechant-upcoming-date {
  color: var(--gamechant-sky-blue);
  font-weight: 500;
  font-size: 0.9rem;
}

.gamechant-legal-hero {
  background: linear-gradient(
    135deg,
    var(--gamechant-dark-text),
    var(--gamechant-medium-text)
  );
  padding: 80px 0;
  color: var(--gamechant-white);
  text-align: center;
}

.gamechant-legal-header h1 {
  font-family: "Crimson Text", serif;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.gamechant-legal-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

.gamechant-legal-updated {
  opacity: 0.7;
  font-size: 0.9rem;
}

.gamechant-legal-content {
  padding: 80px 0;
  background: var(--gamechant-white);
}

.gamechant-legal-text {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.gamechant-legal-text h2 {
  font-family: "Crimson Text", serif;
  font-size: 1.8rem;
  color: var(--gamechant-dark-text);
  margin: 40px 0 20px;
}

.gamechant-legal-text h3 {
  font-size: 1.3rem;
  color: var(--gamechant-dark-text);
  margin: 30px 0 15px;
}

.gamechant-legal-text p {
  margin-bottom: 20px;
  color: var(--gamechant-medium-text);
}

.gamechant-legal-text ul {
  margin: 20px 0;
  padding-left: 30px;
}

.gamechant-legal-text li {
  margin-bottom: 8px;
  color: var(--gamechant-medium-text);
}

.gamechant-legal-text a {
  color: var(--gamechant-sky-blue);
  text-decoration: none;
}

.gamechant-legal-text a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .gamechant-container {
    padding: 0 15px;
  }

  .gamechant-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .gamechant-hero-title {
    font-size: 2.5rem;
  }

  .gamechant-features-grid {
    grid-template-columns: 1fr;
  }

  .gamechant-stories-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gamechant-latest-grid {
    grid-template-columns: 1fr;
  }

  .gamechant-newsletter-form .gamechant-form-group {
    flex-direction: column;
  }

  .gamechant-newsletter-form input {
    min-width: auto;
  }

  .gamechant-footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gamechant-cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .gamechant-mission-grid {
    grid-template-columns: 1fr;
  }

  .gamechant-philosophy-grid {
    grid-template-columns: 1fr;
  }

  .gamechant-timeline-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .gamechant-timeline-item:nth-child(even) {
    direction: ltr;
  }

  .gamechant-contact-grid {
    grid-template-columns: 1fr;
  }

  .gamechant-form-row {
    grid-template-columns: 1fr;
  }

  .gamechant-collaboration-grid {
    grid-template-columns: 1fr;
  }

  .gamechant-faq-grid {
    grid-template-columns: 1fr;
  }

  .gamechant-featured-content {
    grid-template-columns: 1fr;
  }

  .gamechant-news-grid {
    grid-template-columns: 1fr;
  }

  .gamechant-trending-content {
    grid-template-columns: 1fr;
  }

  .gamechant-featured-review-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .gamechant-rating-section {
    text-align: center;
  }

  .gamechant-featured-review-main {
    grid-template-columns: 1fr;
  }

  .gamechant-reviews-grid {
    grid-template-columns: 1fr;
  }

  .gamechant-methodology-grid {
    grid-template-columns: 1fr;
  }

  .gamechant-upcoming-item {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .gamechant-hero-title {
    font-size: 2rem;
  }

  .gamechant-section-title {
    font-size: 2rem;
  }

  .gamechant-feature-card {
    padding: 30px 20px;
  }

  .gamechant-contact-hero h1 {
    font-size: 2.2rem;
  }

  .gamechant-news-header h1 {
    font-size: 2.2rem;
  }

  .gamechant-reviews-header h1 {
    font-size: 2.2rem;
  }

  .gamechant-hero-about h1 {
    font-size: 2.2rem;
  }

  .gamechant-legal-header h1 {
    font-size: 2rem;
  }
}

/* ===== Header / Nav (GameChant) ===== */
.gamechant-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--gamechant-white);
  border-bottom: 1px solid var(--gamechant-border);
  box-shadow: var(--gamechant-shadow);
  backdrop-filter: saturate(120%) blur(6px);
}

.gamechant-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.gamechant-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.gamechant-brand-img {
  height: 40px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.gamechant-brand-title {
  margin-left: 12px;
  font-family: "Crimson Text", serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--gamechant-dark-text);
  letter-spacing: 0.2px;
}

/* Desktop nav */
.gamechant-nav {
  display: none;
}
.gamechant-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}
.gamechant-nav-link {
  position: relative;
  display: inline-block;
  color: var(--gamechant-medium-text);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 6px 0;
  transition: color 0.25s ease;
}
.gamechant-nav-link:hover {
  color: var(--gamechant-sky-blue);
}
.gamechant-nav-link.is-active {
  color: var(--gamechant-dark-text);
}
.gamechant-nav-link.is-active::after,
.gamechant-nav-link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--gamechant-sky-blue),
    var(--gamechant-gold)
  );
  border-radius: 2px;
}

/* Burger button */
.gamechant-burger {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  width: 40px;
  height: 32px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.gamechant-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gamechant-dark-text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Mobile menu panel */
.gamechant-mobile-menu {
  background: var(--gamechant-white);
  border-top: 1px solid var(--gamechant-border);
  box-shadow: var(--gamechant-shadow);
}
.gamechant-mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px 20px 20px;
}
.gamechant-mobile-menu a {
  text-decoration: none;
  color: var(--gamechant-medium-text);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 10px 6px;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.gamechant-mobile-menu a:hover {
  background: var(--gamechant-hover);
  color: var(--gamechant-dark-text);
}
.gamechant-mobile-menu .is-active {
  color: var(--gamechant-dark-text);
  background: var(--gamechant-light-grey);
}

/* Responsive */
@media (min-width: 768px) {
  .gamechant-nav {
    display: block;
  }
  .gamechant-burger {
    display: none;
  }
  .gamechant-mobile-menu {
    display: none !important;
  }
}
img {
  width: 100%;
}
.gamechant-hero-text {
  background: #ffffff; /* белый фон */
  border-radius: 20px;
  padding: 3rem 2.5rem;
  max-width: 800px;
  margin: 3rem auto;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* мягкая тень */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gamechant-hero-text:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.gamechant-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.gamechant-hero-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: #4a90e2;
  margin-bottom: 1.5rem;
}

.gamechant-hero-description {
  font-size: 1.125rem;
  color: #5a6c7d;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.gamechant-hero-btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  background: linear-gradient(135deg, #4a90e2, #d4af37);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(74, 144, 226, 0.25);
  transition: all 0.3s ease;
}

.gamechant-hero-btn:hover {
  background: linear-gradient(135deg, #357abd, #b9932b);
  box-shadow: 0 8px 20px rgba(74, 144, 226, 0.35);
  transform: translateY(-3px);
}
