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

:root {
  --primary-color: #6a4c93;
  --secondary-color: #1a1a2e;
  --accent-color: #00d4aa;
  --text-color: #ffffff;
  --text-secondary: #b0b0b0;
  --background-color: #0f0f0f;
  --surface-color: #1e1e1e;
  --border-color: #333333;
  --gradient-primary: linear-gradient(135deg, #6a4c93 0%, #00d4aa 100%);
  --gradient-secondary: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  --shadow-color: rgba(106, 76, 147, 0.3);
  --glow-color: rgba(0, 212, 170, 0.4);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Exo 2", sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.section-padding {
  padding: 80px 0;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

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

.nav-logo a {
  font-family: "Orbitron", monospace;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-color);
  text-decoration: none;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-color);
}

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 3px 0;
  transition: 0.3s;
}

.hero {
  min-height: 100vh;
  background: linear-gradient(
      135deg,
      rgba(26, 26, 46, 0.8) 0%,
      rgba(15, 15, 15, 0.9) 100%
    ),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%236a4c93" fill-opacity="0.1" points="0,0 500,300 1000,0 1000,1000 500,700 0,1000"/></svg>');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 40%,
      rgba(106, 76, 147, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 60%,
      rgba(0, 212, 170, 0.2) 0%,
      transparent 50%
    );
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }
  100% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-family: "Orbitron", monospace;
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px var(--glow-color);
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 15px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-color);
  box-shadow: 0 5px 15px var(--shadow-color);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--shadow-color);
}

.btn-secondary {
  background: transparent;
  color: var(--text-color);
  border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
  background: var(--accent-color);
  color: var(--background-color);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.btn-outline:hover {
  background: var(--accent-color);
  color: var(--background-color);
  transform: translateY(-2px);
}

.section-title {
  font-family: "Orbitron", monospace;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

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

.news-card,
.review-card,
.guide-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out;
}

.news-card::before,
.review-card::before,
.guide-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.news-card:hover::before,
.review-card:hover::before,
.guide-card:hover::before {
  transform: scaleX(1);
}

.news-card:hover,
.review-card:hover,
.guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border-color: var(--accent-color);
}

.news-category,
.guide-type {
  display: inline-block;
  padding: 5px 12px;
  background: var(--gradient-primary);
  color: var(--text-color);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.news-category.urgent {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.news-card h3,
.review-card h3,
.guide-card h3 {
  font-family: "Orbitron", monospace;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.news-card p,
.review-card p,
.guide-card p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.news-meta,
.guide-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.news-date,
.news-author,
.guide-time,
.guide-views,
.read-time {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.read-more {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: var(--text-color);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.review-score {
  background: var(--gradient-primary);
  color: var(--text-color);
  padding: 10px 15px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.2rem;
  min-width: 60px;
  text-align: center;
}

.review-score.excellent {
  background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
}

.review-score.good {
  background: linear-gradient(135deg, #fdcb6e 0%, #e17055 100%);
}

.review-tags,
.guide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.tag {
  background: rgba(106, 76, 147, 0.2);
  color: var(--accent-color);
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  border: 1px solid rgba(106, 76, 147, 0.3);
}

.guide-difficulty {
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.guide-difficulty.beginner {
  background: rgba(0, 212, 170, 0.2);
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
}

.guide-difficulty.intermediate {
  background: rgba(253, 203, 110, 0.2);
  color: #fdcb6e;
  border: 1px solid #fdcb6e;
}

.guide-difficulty.expert {
  background: rgba(255, 107, 107, 0.2);
  color: #ff6b6b;
  border: 1px solid #ff6b6b;
}

.page-header {
  background: var(--gradient-secondary);
  padding: 120px 0 80px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.page-title {
  font-family: "Orbitron", monospace;
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-color);
  margin-bottom: 20px;
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.policy-date {
  font-size: 0.9rem;
  color: var(--accent-color);
  margin-top: 15px;
}

.footer {
  background: var(--surface-color);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 20px;
}

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

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

.footer-section h3 {
  font-family: "Orbitron", monospace;
  font-size: 1.3rem;
  color: var(--text-color);
  margin-bottom: 20px;
}

.footer-section h4 {
  color: var(--accent-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-section p {
  color: var(--text-secondary);
  line-height: 1.6;
}

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

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface-color);
  border-top: 1px solid var(--border-color);
  padding: 20px;
  z-index: 1000;
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

.cookie-content p {
  color: var(--text-secondary);
  margin: 0;
  flex: 1;
  min-width: 300px;
}

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

.cookie-link {
  color: var(--accent-color);
  text-decoration: none;
  margin-left: 15px;
}

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

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

.animate-fade-in {
  animation: fadeInUp 0.6s ease-out;
}

.contact-form-section .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-family: "Orbitron", monospace;
  font-size: 2rem;
  color: var(--text-color);
  margin-bottom: 20px;
}

.contact-methods {
  margin-top: 40px;
}

.contact-method {
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(106, 76, 147, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(106, 76, 147, 0.2);
}

.contact-method h3 {
  color: var(--accent-color);
  margin-bottom: 10px;
}

.contact-form {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

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

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

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

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

.error-message {
  background: rgba(255, 107, 107, 0.2);
  color: #ff6b6b;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #ff6b6b;
  margin-bottom: 20px;
}

.success-message {
  text-align: center;
  padding: 60px 40px;
  background: var(--surface-color);
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.success-message h2 {
  color: var(--accent-color);
  margin-bottom: 20px;
  font-family: "Orbitron", monospace;
}

.policy-grid {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 60px;
  align-items: start;
}

.policy-sidebar {
  position: sticky;
  top: 100px;
}

.policy-nav {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.policy-nav h3 {
  color: var(--text-color);
  margin-bottom: 20px;
  font-family: "Orbitron", monospace;
}

.policy-nav ul {
  list-style: none;
}

.policy-nav ul li {
  margin-bottom: 10px;
}

.policy-nav ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.policy-nav ul li a:hover {
  color: var(--accent-color);
}

.policy-section {
  margin-bottom: 50px;
}

.policy-section h2 {
  font-family: "Orbitron", monospace;
  color: var(--text-color);
  margin-bottom: 25px;
  font-size: 1.8rem;
}

.policy-section h3 {
  color: var(--accent-color);
  margin: 25px 0 15px 0;
  font-size: 1.2rem;
}

.policy-section h4 {
  color: var(--text-color);
  margin: 20px 0 10px 0;
}

.policy-section p {
  color: var(--text-secondary);
  margin-bottom: 15px;
  line-height: 1.6;
}

.policy-section ul,
.policy-section ol {
  color: var(--text-secondary);
  margin-bottom: 15px;
  padding-left: 25px;
}

.policy-section ul li,
.policy-section ol li {
  margin-bottom: 8px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--surface-color);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

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

  .hero-subtitle {
    font-size: 1.1rem;
  }

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

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

  .news-grid,
  .reviews-grid,
  .guides-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .policy-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .policy-sidebar {
    position: static;
  }

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

  .cookie-content p {
    min-width: auto;
  }

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

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

  .section-padding {
    padding: 60px 0;
  }

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

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

  .news-card,
  .review-card,
  .guide-card {
    padding: 20px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

.featured-article .news-featured {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 40px;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.featured-article .news-featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.news-excerpt {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 25px;
}

.news-details {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid var(--border-color);
}

.review-featured {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 40px;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.review-header-large {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 30px;
}

.review-title-section h3 {
  font-family: "Orbitron", monospace;
  font-size: 2.2rem;
  color: var(--text-color);
  margin-bottom: 10px;
}

.review-subtitle {
  font-size: 1.2rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.review-platforms {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.platform {
  background: rgba(106, 76, 147, 0.2);
  color: var(--accent-color);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  border: 1px solid rgba(106, 76, 147, 0.3);
}

.review-score-large {
  text-align: center;
  background: var(--gradient-primary);
  border-radius: 12px;
  padding: 20px;
  min-width: 120px;
}

.score-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-color);
  display: block;
}

.score-label {
  font-size: 0.9rem;
  color: var(--text-color);
  opacity: 0.9;
}

.review-breakdown {
  margin-top: 30px;
}

.breakdown-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.breakdown-label {
  min-width: 80px;
  color: var(--text-color);
  font-weight: 600;
}

.breakdown-bar {
  flex: 1;
  height: 8px;
  background: rgba(106, 76, 147, 0.2);
  border-radius: 4px;
  overflow: hidden;
}

.breakdown-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 4px;
  transition: width 0.8s ease;
}

.breakdown-score {
  min-width: 40px;
  color: var(--accent-color);
  font-weight: 600;
  text-align: right;
}

.review-highlights {
  margin: 20px 0;
}

.highlight {
  display: block;
  padding: 8px 12px;
  margin-bottom: 8px;
  border-radius: 6px;
  font-size: 0.9rem;
}

.highlight.positive {
  background: rgba(0, 212, 170, 0.2);
  color: var(--accent-color);
  border-left: 3px solid var(--accent-color);
}

.highlight.negative {
  background: rgba(255, 107, 107, 0.2);
  color: #ff6b6b;
  border-left: 3px solid #ff6b6b;
}

.highlight.neutral {
  background: rgba(253, 203, 110, 0.2);
  color: #fdcb6e;
  border-left: 3px solid #fdcb6e;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.category-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.category-card h3 {
  font-family: "Orbitron", monospace;
  color: var(--text-color);
  margin-bottom: 15px;
}

.category-stats {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  padding: 15px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.stat {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.category-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.highlight-game {
  background: rgba(106, 76, 147, 0.2);
  color: var(--accent-color);
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  border: 1px solid rgba(106, 76, 147, 0.3);
}

.guide-featured {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 40px;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.guide-header-large {
  margin-bottom: 30px;
}

.guide-type.featured {
  background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
  font-size: 0.9rem;
  padding: 6px 15px;
}

.guide-title-section h3 {
  font-family: "Orbitron", monospace;
  font-size: 2rem;
  color: var(--text-color);
  margin: 15px 0;
}

.guide-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 25px;
}

.guide-meta-large {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.meta-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.meta-value {
  color: var(--accent-color);
  font-weight: 600;
}

.guide-content-preview h4 {
  color: var(--text-color);
  margin-bottom: 15px;
  font-family: "Orbitron", monospace;
}

.guide-highlights {
  list-style: none;
  padding: 0;
}

.guide-highlights li {
  color: var(--text-secondary);
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.guide-highlights li::before {
  content: "▶";
  color: var(--accent-color);
  position: absolute;
  left: 0;
}

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

.tool-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.tool-card h3 {
  font-family: "Orbitron", monospace;
  color: var(--text-color);
  margin-bottom: 15px;
}

.tool-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.feature {
  background: rgba(0, 212, 170, 0.2);
  color: var(--accent-color);
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  border: 1px solid var(--accent-color);
}

.tool-games {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.game-tag {
  background: rgba(106, 76, 147, 0.2);
  color: var(--accent-color);
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  border: 1px solid rgba(106, 76, 147, 0.3);
}

.universe-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.universe-text h3 {
  font-family: "Orbitron", monospace;
  color: var(--text-color);
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.universe-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-color);
  font-family: "Orbitron", monospace;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.universe-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature {
  background: var(--surface-color);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.feature h4 {
  color: var(--accent-color);
  margin-bottom: 10px;
  font-family: "Orbitron", monospace;
}

.analysis-content {
  max-width: 900px;
  margin: 0 auto;
}

.analysis-article {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 40px;
  border: 1px solid var(--border-color);
}

.analysis-article h3 {
  font-family: "Orbitron", monospace;
  color: var(--text-color);
  margin-bottom: 25px;
  font-size: 1.8rem;
}

.analysis-stats {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
  padding: 30px;
  background: rgba(106, 76, 147, 0.1);
  border-radius: 8px;
}

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

.roundup-section {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid var(--border-color);
}

.roundup-section h3 {
  font-family: "Orbitron", monospace;
  color: var(--text-color);
  margin-bottom: 20px;
}

.roundup-list {
  list-style: none;
  padding: 0;
}

.roundup-list li {
  color: var(--text-secondary);
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.roundup-list li::before {
  content: "•";
  color: var(--accent-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.upcoming-games {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.game-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.game-item:last-child {
  border-bottom: none;
}

.game-item strong {
  color: var(--text-color);
}

.release-date {
  color: var(--accent-color);
  font-size: 0.9rem;
}

.industry-news p {
  margin-bottom: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

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

.community-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.community-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.community-card h3 {
  font-family: "Orbitron", monospace;
  color: var(--text-color);
  margin-bottom: 15px;
}

.community-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.benefit {
  background: rgba(0, 212, 170, 0.2);
  color: var(--accent-color);
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  border: 1px solid var(--accent-color);
}

.response-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.response-item {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
}

.response-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
}

.response-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.response-item h3 {
  font-family: "Orbitron", monospace;
  color: var(--text-color);
  margin-bottom: 15px;
}

.response-time {
  color: var(--accent-color);
  font-weight: 600;
  margin-top: 15px;
  display: block;
}

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

.faq-item {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid var(--border-color);
}

.faq-item h3 {
  color: var(--accent-color);
  margin-bottom: 15px;
  font-family: "Orbitron", monospace;
  font-size: 1.2rem;
}

.cookie-type,
.cookie-category {
  background: var(--surface-color);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 25px;
  border: 1px solid var(--border-color);
}

.cookie-type h4,
.cookie-category h3 {
  color: var(--accent-color);
  margin-bottom: 15px;
}

.cookie-details {
  background: rgba(106, 76, 147, 0.1);
  padding: 20px;
  border-radius: 8px;
  margin-top: 15px;
}

.browser-instructions {
  background: var(--surface-color);
  padding: 25px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  margin: 20px 0;
}

.browser-instructions h4 {
  color: var(--accent-color);
  margin-bottom: 8px;
}

.browser-instructions p {
  font-family: monospace;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.contact-info {
  background: var(--surface-color);
  padding: 25px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  margin: 20px 0;
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-info strong {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .universe-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .universe-stats {
    justify-content: space-around;
    gap: 20px;
  }

  .review-header-large {
    flex-direction: column;
    gap: 20px;
  }

  .guide-meta-large {
    gap: 20px;
  }

  .roundup-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .analysis-stats {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border-color: var(--accent-color);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 15, 15, 0.7);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: "Orbitron", monospace;
  text-align: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.logo-img {
  height: 60px; /* подгони размер под свой логотип */
  margin-right: 10px;
  vertical-align: middle;
}

.nav-logo a {
  display: flex;
  align-items: center;
  font-family: "Orbitron", monospace;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-color);
  text-decoration: none;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-text {
  max-width: 600px;
  animation: fadeInUp 1s ease-out;
  margin-top: 90px;
}

.hero-text .hero-title {
  font-size: 3.2rem;
  margin-bottom: 20px;
}

.hero-text .hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.hero-visual img {
  width: 100%;
  border-radius: 12px;
}

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-visual {
    margin-top: 40px;
  }
}
