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

:root {
  --hog-white: #ffffff;
  --hog-light-gray: #f2f2f2;
  --hog-red: #ff4d4d;
  --hog-dark-red: #b22222;
  --hog-pink: #ff6b81;
  --hog-gold: #f9a825;
  --hog-gradient: linear-gradient(135deg, #ff4d4d, #ff6b81, #f9a825);
  --hog-shadow: 0 4px 20px rgba(255, 77, 77, 0.1);
  --hog-transition: all 0.3s ease;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: var(--hog-white);
}

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

.hog-header {
  background: var(--hog-white);
  box-shadow: var(--hog-shadow);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.hog-nav {
  padding: 1rem 0;
}

.hog-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hog-logo-link {
  font-size: 1.8rem;
  font-weight: bold;
  background: var(--hog-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: var(--hog-transition);
}

.hog-nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.hog-nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: var(--hog-transition);
  position: relative;
}

.hog-nav-link:hover {
  color: var(--hog-red);
}

.hog-nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--hog-gradient);
  transition: var(--hog-transition);
}

.hog-nav-link:hover::after {
  width: 100%;
}

.hog-burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hog-burger span {
  width: 25px;
  height: 3px;
  background: var(--hog-red);
  transition: var(--hog-transition);
}

.hog-main {
  margin-top: 80px;
}

.hog-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hog-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hog-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hog-hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(5, 0, 0, 0.4),
    rgba(255, 107, 129, 0.2)
  );
}

.hog-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--hog-white);
}

.hog-hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hog-hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hog-hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hog-btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--hog-transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.hog-btn-primary {
  background: var(--hog-gradient);
  color: var(--hog-white);
  box-shadow: 0 4px 15px rgba(255, 77, 77, 0.3);
}

.hog-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 77, 77, 0.4);
}

.hog-btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: var(--hog-white);
  border: 2px solid var(--hog-white);
}

.hog-btn-secondary:hover {
  background: var(--hog-white);
  color: var(--hog-red);
}

.hog-section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  background: var(--hog-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hog-trends {
  padding: 80px 0;
  background: var(--hog-light-gray);
}

.hog-trends-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.hog-trend-card {
  background: var(--hog-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--hog-shadow);
  transition: var(--hog-transition);
}

.hog-trend-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 77, 77, 0.15);
}

.hog-trend-image {
  width: 100%;

  object-fit: cover;
}

.hog-trend-content {
  padding: 2rem;
}

.hog-trend-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--hog-dark-red);
}

.hog-trend-text {
  color: #666;
  line-height: 1.7;
}

.hog-gallery {
  padding: 80px 0;
}

.hog-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.hog-gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 300px;
}

.hog-gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--hog-transition);
}

.hog-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--hog-white);
  padding: 2rem;
  transform: translateY(100%);
  transition: var(--hog-transition);
}

.hog-gallery-item:hover .hog-gallery-overlay {
  transform: translateY(0);
}

.hog-gallery-item:hover .hog-gallery-image {
  transform: scale(1.1);
}

.hog-gallery-title {
  font-size: 1.3rem;
}

.hog-newsletter {
  padding: 80px 0;
  background: var(--hog-gradient);
  color: var(--hog-white);
}

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

.hog-newsletter-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hog-newsletter-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hog-newsletter-form {
  margin-top: 2rem;
}

.hog-form-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hog-form-input {
  padding: 12px 20px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  min-width: 300px;
  outline: none;
}

.hog-page-hero {
  padding: 100px 0 60px;
  background: var(--hog-light-gray);
  text-align: center;
}

.hog-page-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: var(--hog-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hog-page-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.hog-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.hog-news-card {
  background: var(--hog-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--hog-shadow);
  transition: var(--hog-transition);
}

.hog-news-card:hover {
  transform: translateY(-5px);
}

.hog-news-image {
  width: 100%;

  object-fit: cover;
}

.hog-news-content {
  padding: 2rem;
}

.hog-news-date {
  color: var(--hog-red);
  font-size: 0.9rem;
  font-weight: 600;
}

.hog-news-title {
  margin: 1rem 0;
  color: var(--hog-dark-red);
  font-size: 1.3rem;
}

.hog-news-excerpt {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.hog-read-more {
  color: var(--hog-red);
  text-decoration: none;
  font-weight: 600;
  transition: var(--hog-transition);
}

.hog-read-more:hover {
  color: var(--hog-dark-red);
}

.hog-latest-news,
.hog-industry-updates,
.hog-esports-news,
.hog-news-archive {
  padding: 60px 0;
}

.hog-updates-list {
  max-width: 800px;
  margin: 0 auto;
}

.hog-update-item {
  background: var(--hog-white);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: var(--hog-shadow);
  border-left: 5px solid var(--hog-red);
}

.hog-update-title {
  color: var(--hog-dark-red);
  margin-bottom: 1rem;
}

.hog-update-text {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.hog-update-date {
  color: var(--hog-red);
  font-size: 0.9rem;
  font-weight: 600;
}

.hog-esports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.hog-esports-card {
  background: var(--hog-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--hog-shadow);
}

.hog-esports-image {
  width: 100%;

  object-fit: cover;
}

.hog-esports-content {
  padding: 2rem;
}

.hog-esports-title {
  color: var(--hog-dark-red);
  margin-bottom: 1rem;
}

.hog-esports-text {
  color: #666;
  line-height: 1.6;
}

.hog-headlines-list {
  max-width: 800px;
  margin: 0 auto;
}

.hog-headline-item {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--hog-light-gray);
}

.hog-headline-date {
  color: var(--hog-red);
  font-weight: 600;
  white-space: nowrap;
  min-width: 120px;
}

.hog-headline-title {
  color: var(--hog-dark-red);
  font-size: 1.1rem;
}

.hog-review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.hog-review-card {
  background: var(--hog-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--hog-shadow);
  transition: var(--hog-transition);
}

.hog-review-card:hover {
  transform: translateY(-5px);
}

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

.hog-review-image {
  width: 100%;

  object-fit: cover;
}

.hog-review-score {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--hog-gradient);
  color: var(--hog-white);
  padding: 10px 15px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.2rem;
}

.hog-review-content {
  padding: 2rem;
}

.hog-review-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--hog-dark-red);
}

.hog-review-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hog-review-genre {
  background: var(--hog-red);
  color: var(--hog-white);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
}

.hog-review-date {
  color: #666;
  font-size: 0.9rem;
}

.hog-review-excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hog-review-highlights {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.hog-highlight-item {
  display: flex;
  gap: 0.5rem;
}

.hog-highlight-label {
  font-weight: 600;
  color: var(--hog-dark-red);
}

.hog-highlight-value {
  color: var(--hog-red);
}

.hog-read-review {
  color: var(--hog-red);
  text-decoration: none;
  font-weight: 600;
  transition: var(--hog-transition);
}

.hog-read-review:hover {
  color: var(--hog-dark-red);
}

.hog-featured-reviews,
.hog-recent-reviews,
.hog-review-categories,
.hog-scoring-system {
  padding: 60px 0;
}

.hog-reviews-list {
  max-width: 1000px;
  margin: 0 auto;
}

.hog-review-item {
  display: flex;
  gap: 2rem;
  background: var(--hog-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--hog-shadow);
  margin-bottom: 2rem;
  transition: var(--hog-transition);
}

.hog-review-item:hover {
  transform: translateY(-3px);
}

.hog-review-item-image {
  width: 200px;
  height: 200px;
  object-fit: cover;
  flex-shrink: 0;
}

.hog-review-item-content {
  padding: 2rem;
  flex: 1;
}

.hog-review-item-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--hog-dark-red);
}

.hog-review-item-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: center;
}

.hog-review-score-small {
  background: var(--hog-gradient);
  color: var(--hog-white);
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: bold;
}

.hog-review-genre-small {
  background: var(--hog-light-gray);
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
}

.hog-review-date-small {
  color: #666;
  font-size: 0.9rem;
}

.hog-review-item-text {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.hog-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  font-size: 0.9rem;
}

.hog-pros {
  color: #28a745;
}

.hog-cons {
  color: #dc3545;
}

.hog-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.hog-category-card {
  background: var(--hog-white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--hog-shadow);
  transition: var(--hog-transition);
  border-top: 5px solid var(--hog-red);
}

.hog-category-card:hover {
  transform: translateY(-5px);
}

.hog-category-title {
  color: var(--hog-dark-red);
  margin-bottom: 1rem;
}

.hog-category-count {
  color: var(--hog-red);
  font-weight: 600;
}

.hog-scoring-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hog-scoring-text {
  color: #666;
  line-height: 1.7;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.hog-scoring-criteria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  text-align: left;
}

.hog-criteria-item {
  background: var(--hog-white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--hog-shadow);
}

.hog-criteria-title {
  color: var(--hog-dark-red);
  margin-bottom: 1rem;
}

.hog-criteria-text {
  color: #666;
  line-height: 1.6;
}

.hog-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.hog-guide-card {
  background: var(--hog-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--hog-shadow);
  transition: var(--hog-transition);
}

.hog-guide-card:hover {
  transform: translateY(-5px);
}

.hog-guide-image {
  width: 100%;

  object-fit: cover;
}

.hog-guide-content {
  padding: 2rem;
}

.hog-guide-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.hog-guide-type {
  background: var(--hog-red);
  color: var(--hog-white);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
}

.hog-guide-difficulty {
  background: var(--hog-gold);
  color: var(--hog-white);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
}

.hog-guide-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--hog-dark-red);
}

.hog-guide-excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hog-guide-stats {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.hog-guide-stat {
  background: var(--hog-light-gray);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  color: #666;
}

.hog-guide-link {
  color: var(--hog-red);
  text-decoration: none;
  font-weight: 600;
  transition: var(--hog-transition);
}

.hog-guide-link:hover {
  color: var(--hog-dark-red);
}

.hog-featured-guides,
.hog-quick-tips,
.hog-walkthrough-series,
.hog-community-guides {
  padding: 60px 0;
}

.hog-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.hog-tip-card {
  background: var(--hog-white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--hog-shadow);
  transition: var(--hog-transition);
}

.hog-tip-card:hover {
  transform: translateY(-5px);
}

.hog-tip-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hog-tip-title {
  color: var(--hog-dark-red);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.hog-tip-text {
  color: #666;
  line-height: 1.6;
}

.hog-walkthrough-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hog-walkthrough-item {
  display: flex;
  gap: 2rem;
  background: var(--hog-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--hog-shadow);
  transition: var(--hog-transition);
}

.hog-walkthrough-item:hover {
  transform: translateY(-3px);
}

.hog-walkthrough-image {
  width: 250px;
  height: 200px;
  object-fit: cover;
  flex-shrink: 0;
}

.hog-walkthrough-content {
  padding: 2rem;
  flex: 1;
}

.hog-walkthrough-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--hog-dark-red);
}

.hog-walkthrough-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #666;
  font-size: 0.9rem;
}

.hog-walkthrough-progress {
  font-weight: 600;
  color: var(--hog-red);
}

.hog-walkthrough-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hog-walkthrough-features {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hog-feature-tag {
  background: var(--hog-light-gray);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  color: #666;
}

.hog-community-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hog-community-text {
  color: #666;
  line-height: 1.7;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.hog-community-guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  text-align: left;
}

.hog-community-guide {
  background: var(--hog-white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--hog-shadow);
}

.hog-community-guide-title {
  color: var(--hog-dark-red);
  margin-bottom: 1rem;
}

.hog-community-guide-text {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.hog-community-author {
  color: var(--hog-red);
  font-size: 0.9rem;
  font-style: italic;
}

.hog-contact-form-section,
.hog-collaboration-section,
.hog-community-section,
.hog-faq-section {
  padding: 60px 0;
}

.hog-contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.hog-contact-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--hog-dark-red);
}

.hog-contact-text {
  color: #666;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hog-contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hog-contact-item-title {
  color: var(--hog-dark-red);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.hog-contact-item-text {
  color: #666;
}

.hog-contact-form {
  background: var(--hog-white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--hog-shadow);
}

.hog-form-group {
  margin-bottom: 1.5rem;
}

.hog-form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--hog-dark-red);
  font-weight: 600;
}

.hog-form-input,
.hog-form-select,
.hog-form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--hog-light-gray);
  border-radius: 10px;
  font-size: 1rem;
  transition: var(--hog-transition);
  outline: none;
}

.hog-form-input:focus,
.hog-form-select:focus,
.hog-form-textarea:focus {
  border-color: var(--hog-red);
}

.hog-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.hog-form-submit {
  width: 100%;
  margin-top: 1rem;
}

.hog-collaboration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.hog-collaboration-card {
  background: var(--hog-white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--hog-shadow);
  transition: var(--hog-transition);
}

.hog-collaboration-card:hover {
  transform: translateY(-5px);
}

.hog-collaboration-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hog-collaboration-title {
  color: var(--hog-dark-red);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.hog-collaboration-text {
  color: #666;
  line-height: 1.6;
}

.hog-community-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  text-align: left;
}

.hog-value-item {
  background: var(--hog-white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--hog-shadow);
}

.hog-value-title {
  color: var(--hog-dark-red);
  margin-bottom: 1rem;
}

.hog-value-text {
  color: #666;
  line-height: 1.6;
}

.hog-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.hog-faq-item {
  background: var(--hog-white);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: var(--hog-shadow);
}

.hog-faq-question {
  color: var(--hog-dark-red);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.hog-faq-answer {
  color: #666;
  line-height: 1.6;
}

.hog-legal-content {
  padding: 60px 0;
}

.hog-legal-document {
  max-width: 800px;
  margin: 0 auto;
  background: var(--hog-white);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: var(--hog-shadow);
}

.hog-legal-updated {
  text-align: center;
  margin-bottom: 3rem;
  padding: 1rem;
  background: var(--hog-light-gray);
  border-radius: 10px;
  color: #666;
}

.hog-legal-section {
  margin-bottom: 3rem;
}

.hog-legal-title {
  color: var(--hog-dark-red);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  border-bottom: 2px solid var(--hog-red);
  padding-bottom: 0.5rem;
}

.hog-legal-text {
  color: #666;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.hog-legal-list {
  margin: 1rem 0 1rem 2rem;
  color: #666;
  line-height: 1.7;
}

.hog-legal-list li {
  margin-bottom: 0.5rem;
}

.hog-legal-link {
  color: var(--hog-red);
  text-decoration: none;
  transition: var(--hog-transition);
}

.hog-legal-link:hover {
  color: var(--hog-dark-red);
  text-decoration: underline;
}

.hog-contact-info {
  background: var(--hog-light-gray);
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 1rem;
}

.hog-cookie-type {
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--hog-light-gray);
  border-radius: 10px;
}

.hog-cookie-type-title {
  color: var(--hog-dark-red);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.hog-cookie-management {
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--hog-light-gray);
  border-radius: 10px;
}

.hog-cookie-management-title {
  color: var(--hog-dark-red);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.hog-footer {
  background: #333;
  color: var(--hog-white);
  padding: 3rem 0 1rem;
}

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

.hog-footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.hog-footer-title {
  background: var(--hog-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.hog-footer-subtitle {
  color: var(--hog-red);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.hog-footer-text {
  color: #ccc;
  line-height: 1.6;
}

.hog-footer-links {
  list-style: none;
}

.hog-footer-links li {
  margin-bottom: 0.5rem;
}

.hog-footer-link {
  color: #ccc;
  text-decoration: none;
  transition: var(--hog-transition);
}

.hog-footer-link:hover {
  color: var(--hog-red);
}

.hog-footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #555;
}

.hog-footer-copyright {
  color: #999;
}

.hog-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  color: var(--hog-white);
  padding: 1.5rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: var(--hog-transition);
}

.hog-cookie-banner.hog-show {
  transform: translateY(0);
}

.hog-cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hog-cookie-text {
  flex: 1;
  min-width: 300px;
  line-height: 1.5;
}

.hog-cookie-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.hog-cookie-learn-more {
  color: var(--hog-red);
  text-decoration: none;
  font-size: 0.9rem;
}

.hog-cookie-learn-more:hover {
  text-decoration: underline;
}

.hog-fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: hogFadeIn 0.8s ease forwards;
}

.hog-fade-in-delay {
  opacity: 0;
  transform: translateY(30px);
  animation: hogFadeIn 0.8s ease 0.2s forwards;
}

.hog-fade-in-delay-2 {
  opacity: 0;
  transform: translateY(30px);
  animation: hogFadeIn 0.8s ease 0.4s forwards;
}

.hog-fade-in-delay-3 {
  opacity: 0;
  transform: translateY(30px);
  animation: hogFadeIn 0.8s ease 0.6s forwards;
}

@keyframes hogFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hog-burger {
    display: flex;
  }

  .hog-nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--hog-white);
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: var(--hog-shadow);
  }

  .hog-nav-menu.hog-active {
    display: flex;
  }

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

  .hog-hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hog-trends-grid,
  .hog-gallery-grid,
  .hog-news-grid,
  .hog-esports-grid,
  .hog-review-grid,
  .hog-guide-grid {
    grid-template-columns: 1fr;
  }

  .hog-contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hog-review-item,
  .hog-walkthrough-item {
    flex-direction: column;
  }

  .hog-review-item-image,
  .hog-walkthrough-image {
    width: 100%;
    height: 200px;
  }

  .hog-headline-item {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hog-pros-cons {
    grid-template-columns: 1fr;
  }

  .hog-form-group {
    flex-direction: column;
  }

  .hog-form-input {
    min-width: auto;
  }

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

  .hog-page-title {
    font-size: 2.5rem;
  }

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

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

  .hog-hero-title {
    font-size: 2rem;
  }

  .hog-page-title {
    font-size: 2rem;
  }

  .hog-section-title {
    font-size: 1.8rem;
  }

  .hog-legal-document {
    padding: 2rem 1.5rem;
  }

  .hog-trends-grid,
  .hog-news-grid,
  .hog-review-grid,
  .hog-guide-grid {
    grid-template-columns: 1fr;
  }
} /* Лого */
.hog-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.hog-logo-img {
  height: 45px;
  width: auto;
  transition: transform 0.3s ease;
}

.hog-logo-text {
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--hog-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hog-logo-link:hover .hog-logo-img {
  transform: scale(1.1) rotate(-3deg);
}

/* Навигация */
.hog-nav-menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.hog-nav-link {
  position: relative;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 5px 0;
  transition: var(--hog-transition);
}

.hog-nav-link:hover {
  color: var(--hog-red);
}

.hog-nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--hog-gradient);
  transition: width 0.3s ease;
}

.hog-nav-link:hover::after,
.hog-nav-link.active::after {
  width: 100%;
}

/* Бургер */
.hog-burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hog-burger span {
  width: 28px;
  height: 3px;
  background: var(--hog-red);
  transition: 0.3s;
}

@media (max-width: 768px) {
  .hog-nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--hog-white);
    padding: 1rem;
    box-shadow: var(--hog-shadow);
  }

  .hog-nav-menu.hog-active {
    display: flex;
  }

  .hog-logo-text {
    font-size: 1.3rem;
  }
}

/* Footer */
.hog-footer {
  background: linear-gradient(135deg, #1b1b1f, #111);
  color: #ddd;
  padding: 3rem 1rem 1rem;
  font-size: 0.95rem;
}

.hog-footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.hog-footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.hog-footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--hog-red);
  margin-bottom: 0.5rem;
}

.hog-footer-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
}

.hog-footer-text {
  color: #bbb;
  line-height: 1.6;
}

.hog-footer-mail {
  color: var(--hog-red);
  font-weight: 600;
  text-decoration: none;
}

.hog-footer-mail:hover {
  text-decoration: underline;
}

/* Links */
.hog-footer-links {
  list-style: none;
  padding: 0;
}

.hog-footer-link {
  display: inline-block;
  margin-bottom: 0.4rem;
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hog-footer-link:hover {
  color: var(--hog-red);
}

/* Bottom */
.hog-footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #888;
}

/* Cookie Banner */
.hog-cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #222;
  color: #eee;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.hog-cookie-content {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hog-cookie-text {
  flex: 1 1 auto;
}

.hog-cookie-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.hog-cookie-learn-more {
  color: var(--hog-red);
  font-weight: 500;
  text-decoration: none;
}

.hog-cookie-learn-more:hover {
  text-decoration: underline;
}
/* Hero */
.hog-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

.hog-hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hog-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) contrast(1.1);
}

.hog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

/* Content */
.hog-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 1.5rem;
}

.hog-hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hog-hero-title span {
  color: var(--hog-red);
  text-shadow: 0 0 8px rgba(255, 0, 0, 0.6);
}

.hog-hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #ddd;
}

/* Buttons */
.hog-hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hog-btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hog-btn-primary {
  background: var(--hog-red);
  color: #fff;
}

.hog-btn-primary:hover {
  background: #ff3030;
  transform: translateY(-2px);
}

.hog-btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.hog-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
}

.hog-btn-tertiary {
  background: transparent;
  border: 1px solid var(--hog-red);
  color: var(--hog-red);
}

.hog-btn-tertiary:hover {
  background: var(--hog-red);
  color: #fff;
}

/* Animations */
.hog-fade-in {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.hog-fade-in-delay {
  opacity: 0;
  animation: fadeInUp 1s ease 0.4s forwards;
}

.hog-fade-in-delay-2 {
  opacity: 0;
  animation: fadeInUp 1s ease 0.8s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hog-hero-title {
    font-size: 2rem;
  }
  .hog-hero-subtitle {
    font-size: 1rem;
  }
}

/* About Section */
.hog-about {
  padding: 80px 20px;
  background: #111;
  color: #eee;
  position: relative;
}

.hog-about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.hog-about-content {
  flex: 1 1 55%;
}

.hog-about-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ff4e50;
  font-weight: 700;
  text-transform: uppercase;
}

.hog-about-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #ccc;
}

.hog-about-buttons {
  margin-top: 25px;
}

.hog-about-image {
  flex: 1 1 40%;
  text-align: center;
}

.hog-about-img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(255, 78, 80, 0.3);
}

/* Newsletter Section */
.hog-newsletter {
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #222 50%, #1a1a1a 100%);
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
  border-top: 2px solid #ff4b2b;
  border-bottom: 2px solid #ff4b2b;
}

.hog-newsletter::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(255, 75, 43, 0.15),
    transparent 70%
  );
  animation: pulse-glow 6s infinite;
  z-index: 0;
}

@keyframes pulse-glow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.3;
  }
}

.hog-newsletter-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.hog-newsletter-title {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(255, 75, 43, 0.7);
}

.hog-newsletter-text {
  color: #bbb;
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hog-newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hog-form-group {
  display: flex;
  width: 100%;
  max-width: 500px;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(255, 75, 43, 0.4);
}

.hog-form-input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  outline: none;
  font-size: 1rem;
  color: #fff;
  background: #2b2b2b;
}

.hog-form-input::placeholder {
  color: #aaa;
}

.hog-btn-primary {
  background: linear-gradient(45deg, #ff4b2b, #ff416c);
  color: #fff;
  padding: 0 25px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.hog-btn-primary:hover {
  background: linear-gradient(45deg, #ff6347, #ff416c);
  transform: scale(1.05);
}
