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

:root {
  --primary: #7e22ce; 
  --primary-dark: #581c87; 
  --primary-light: #a855f7; 

  --secondary: #06b6d4; 
  --secondary-dark: #0891b2; 
  --secondary-light: #22d3ee; 

  --accent: #fb7185; 
  --accent-dark: #e11d48; 
  --accent-light: #fda4af; 

  --dark: #0f172a; 
  --light: #f8fafc; 
  --gray: #64748b; 
  --gray-light: #cbd5e1; 
  --gray-dark: #334155; 

  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  --gradient-hero: linear-gradient(135deg, #4f46e5 0%, #7e22ce 50%, #ec4899 100%);

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-glow: 0 0 15px rgba(126, 34, 206, 0.5);

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", "Roboto", sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: #f0f2f5;
  background-image: radial-gradient(circle at 25% 25%, rgba(126, 34, 206, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(6, 182, 212, 0.03) 0%, transparent 50%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast), transform var(--transition-fast);
  position: relative;
}

a:hover {
  color: var(--primary-light);
}

ul,
ol {
  list-style-position: inside;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark);
}

h1 {
  font-size: 2.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.5rem;
  position: relative;
  margin-bottom: 2rem;
  text-align: center;
}

h2::after {
  content: "";
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

h3 {
  font-size: 1.5rem;
  color: var(--primary-dark);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  color: var(--light);
  padding: 1rem;
  z-index: 1000;
    display: block; 
  box-shadow: var(--shadow-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: opacity 0.3s ease;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-content p {
  margin-bottom: 0;
}

.cookie-content a {
  color: var(--secondary-light);
  text-decoration: underline;
}

#accept-cookies {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 600;
  align-self: flex-start;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#accept-cookies:hover {
  box-shadow: var(--shadow-lg), 0 0 10px rgba(126, 34, 206, 0.5);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .cookie-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-content p {
    margin-right: 1rem;
  }

  #accept-cookies {
    align-self: center;
  }
}

.site-header {
  position: relative;
  background-color: #111827; 
  box-shadow: var(--shadow-lg);
}

.hero-image {
  height: 250px;
  overflow: hidden;
  position: relative;
  background-color: #111827; 
}

.hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(17, 24, 39, 0.3), rgba(17, 24, 39, 0.7));
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 10s ease;
  transform-origin: center;
}

.site-header:hover .hero-image img {
  transform: scale(1.1);
}

.menu-toggle {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: transparent;
  border: none;
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  z-index: 100;
  box-shadow: none;
}

.menu-toggle:hover {
  background-color: transparent;
  box-shadow: none;
}

.menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: white;
  transition: all var(--transition-fast);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  z-index: 99;
  transition: right var(--transition-normal);
  overflow-y: auto;
  padding: 5rem 1rem 2rem;
  box-shadow: var(--shadow-xl);
}

.main-nav.active {
  right: 0;
}

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

.main-nav li {
  margin-bottom: 0.5rem;
  transform: translateX(50px);
  opacity: 0;
  transition: all var(--transition-normal);
  transition-delay: calc(var(--item-index, 0) * 0.05s);
}

.main-nav.active li {
  transform: translateX(0);
  opacity: 1;
}

.main-nav a {
  color: var(--light);
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.main-nav a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gradient-primary);
  transition: width var(--transition-fast);
  z-index: -1;
}

.main-nav a.active {
  color: white;
}

.main-nav a.active::before {
  width: 100%;
}

.main-nav a:hover {
  color: white;
  transform: translateX(5px);
}

.main-nav a:hover::before {
  width: 10px;
}

.page-header {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--gradient-primary);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.page-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 20%),
    radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 20%);
  animation: rotate 30s linear infinite;
  z-index: 1;
}

.page-header h1,
.page-header .subtitle {
  color: white;
  position: relative;
  z-index: 2;
}

.page-header h1 {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}

.page-header .subtitle {
  opacity: 0.9;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

section {
  padding: 3rem 0;
  position: relative;
}

.hero-section {
  text-align: center;
  padding: 1rem 1rem;
  background: white;
  color: var(--dark);
  margin-bottom: 0; 
  position: relative;
  overflow: hidden;
  box-shadow: none;
}

.hero-section::before {
  content: none; 
}

.hero-section h1 {
  color: #111827; 
  font-size: 1rem;
  margin-bottom: 1rem;
  justify-content: center;
  text-shadow: none;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  font-weight: 700;
}

.hero-section .subtitle {
  color: #4b5563; 
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.5;
}

.hero-section .button {
  display: none;
}


.category-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1rem;
  margin: 2rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.category-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #6200ee; 
  padding: 1.25rem;
  border-radius: 0.75rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.category-link::before {
  content: none; 
}

.category-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.category-text {
  font-weight: 600;
  color: white;
  font-size: 1.2rem;
}

.arrow-icon {
  color: white;
  font-size: 1.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.category-link:hover .arrow-icon {
  color: white;
  transform: translateX(3px);
}


.featured-games {
  padding: 3rem 1rem;
  background-color: white;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

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

.games-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.game-card {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  position: relative;
  z-index: 1;
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.game-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.game-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.game-card:hover .game-image::after {
  opacity: 1;
}

.game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.game-card:hover .game-image img {
  transform: scale(1.1);
}

.game-info {
  padding: 1.5rem;
  position: relative;
}

.game-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gray-light), transparent);
}

.game-info h3 {
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
  transition: color var(--transition-fast);
}

.game-card:hover .game-info h3 {
  color: var(--primary);
}

.game-info p {
  color: var(--gray);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.game-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.stars {
  color: #ffc107;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.rating-value {
  font-weight: 700;
  color: var(--dark);
  background-color: #ffc10720;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
}


.news-updates {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  position: relative;
}

.news-updates h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #111827;
}

.news-updates h2::after {
  content: "";
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
      background: #5b21b6; 
  border-radius: var(--radius-full);
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.news-item {
  background-color: transparent; 
  padding: 0; 
  border-radius: 0;
  box-shadow: none;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-bottom: none; 
}

.news-item::before {
  content: none; 
}

.news-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  color: #111827;
  transition: none;
}

.date {
  color: #4b5563;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: block;
}

.news-item p {
  color: #4b5563;
  margin-bottom: 1rem;
}

.read-more {
  display: inline-block;
  color: #5b21b6; 
  font-weight: 600;
  margin-top: 0.5rem;
  padding: 0;
  position: relative;
  transition: all var(--transition-fast);
}

.read-more::after {
  content: none; 
}


.closing-text {
  padding: 2rem 1rem;
  text-align: left;
  background-color: white;
  color: var(--dark);
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: none;
}

.closing-text::before {
        content: none; 
}

.closing-text p {
  max-width: 100%;
  margin: 0;
  font-style: normal;
  color: var(--gray);
  position: relative;
  z-index: 2;
  font-size: 1rem;
  line-height: 1.6;
}

.top-games {
  padding: 3rem 1rem;
  background-color: white;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.top-games::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
}

.gaming-news {
  padding: 3rem 1rem;
  margin-bottom: 3rem;
}

.gaming-tips {
  padding: 3rem 1rem;
  background-color: var(--light);
  margin-bottom: 3rem;
  position: relative;
}

.gaming-tips::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-secondary);
}

.tips-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.tip-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.tip-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-secondary);
  transition: height var(--transition-normal);
  z-index: -1;
}

.tip-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg), 0 0 15px rgba(6, 182, 212, 0.5);
}

.tip-card:hover::before {
  height: 100%;
}

.tip-card h3 {
  margin-bottom: 1rem;
  color: var(--secondary-dark);
  transition: color var(--transition-normal);
  position: relative;
  z-index: 2;
}

.tip-card:hover h3 {
  color: white;
}

.tip-card p {
  transition: color var(--transition-normal);
  position: relative;
  z-index: 2;
}

.tip-card:hover p {
  color: rgba(255, 255, 255, 0.9);
}

.tip-card .read-more {
  color: var(--secondary);
  position: relative;
  z-index: 2;
}

.tip-card:hover .read-more {
  color: white;
}

.tip-card .read-more::after {
  background: var(--secondary-light);
}

.tip-card:hover .read-more::after {
  background: white;
}

.console-comparison {
  padding: 3rem 1rem;
  margin-bottom: 3rem;
}

.comparison-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.comparison-column {
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.comparison-column::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
}

.comparison-column:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.console-image {
  height: 200px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.console-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25%;
  right: 25%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gray-light), transparent);
}

.console-image img {
  max-height: 100%;
  object-fit: contain;
  transition: transform var(--transition-normal);
}

.comparison-column:hover .console-image img {
  transform: scale(1.05);
}

.feature-list {
  list-style: none;
  text-align: left;
  margin-bottom: 1.5rem;
}

.feature-list li {
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.feature-list li::before {
  content: "✓";
  color: var(--primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.price {
  font-weight: 700;
  font-size: 1.3rem;
  color: white;
  background: var(--gradient-primary);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  display: inline-block;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-fast);
}

.comparison-column:hover .price {
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: scale(1.05);
}

.free-vs-paid {
  padding: 3rem 1rem;
  background-color: white;
  margin-bottom: 3rem;
  position: relative;
}

.free-vs-paid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-secondary);
}

.upcoming-games {
  padding: 3rem 1rem;
  margin-bottom: 3rem;
}

.upcoming-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.upcoming-card {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.upcoming-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.upcoming-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.upcoming-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7));
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.upcoming-card:hover .upcoming-image::after {
  opacity: 1;
}

.upcoming-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.upcoming-card:hover .upcoming-image img {
  transform: scale(1.1);
}

.upcoming-info {
  padding: 1.5rem;
  position: relative;
}

.upcoming-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
}

.site-footer {
  background-color: #111827; 
  color: white;
  padding: 3rem 1rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: #6200ee; 
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-nav h3,
.footer-contact h3 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.3rem;
  position: relative;
  display: inline-block;
}

.footer-nav h3::after,
.footer-contact h3::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 40px;
  height: 3px;
  background: #6200ee; 
  border-radius: var(--radius-full);
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.75rem;
}

.footer-nav a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: #6200ee; 
  transform: translateX(5px);
}

.footer-contact p {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #6200ee; 
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
  width: 100%;
  display: block;
  clear: both;
}

.disclaimer {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  text-align: center;
  width: 100%;
  display: block;
  clear: both;
}


.contact-form-section {
  padding: 3rem 1rem;
  background-color: white;
  margin-bottom: 3rem;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(126, 34, 206, 0.2);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-group input {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
}

.submit-button {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 600;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.submit-button:hover {
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: translateY(-2px);
}

.form-success,
.form-error {
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-top: 2rem;
  text-align: center;
}

.form-success {
  background-color: #f0fdf4;
  border: 1px solid #86efac;
}

.form-error {
  background-color: #fef2f2;
  border: 1px solid #fca5a5;
}


.contact-info-section {
  padding: 3rem 1rem;
  margin-bottom: 3rem;
}

.contact-info-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
  transition: height var(--transition-normal);
  z-index: 0;
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.contact-info-card:hover::before {
  height: 100%;
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.contact-info-card h3 {
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  transition: color var(--transition-normal);
}

.contact-info-card p {
  position: relative;
  z-index: 1;
  transition: color var(--transition-normal);
}

.contact-info-card:hover h3,
.contact-info-card:hover p,
.contact-info-card:hover a {
  color: white;
}

.contact-info-card .social-links {
  justify-content: center;
  position: relative;
  z-index: 1;
}

.contact-info-card .social-links a {
  margin: 0 0.5rem;
}


.legal-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

.legal-section h2 {
  text-align: left;
  margin-bottom: 1.5rem;
}

.legal-section h2::after {
  left: 0;
  transform: none;
}

.legal-section h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-list {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.legal-list ul {
  list-style-type: circle;
  margin-left: 1.5rem;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.contact-details {
  background-color: var(--light);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-top: 1rem;
}

.last-updated {
  font-style: italic;
  color: var(--gray);
  margin-top: -1rem;
  margin-bottom: 2rem;
}


.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 2rem;
}

.button {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.button:hover {
  color: white;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: translateY(-3px);
}


@media (min-width: 768px) and (max-width: 1023px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-section .button {
    display: inline-block;
  }

  .games-grid,
  .news-grid,
  .tips-container,
  .comparison-container,
  .upcoming-grid,
  .contact-info-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-legal {
    grid-column: span 2;
  }
}


@media (min-width: 1024px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }


  .featured-games .section-container,
  .gaming-tips .section-container,
  .top-games .section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .hero-section {
    padding: 6rem 2rem;
  }

  .hero-section h1 {
    font-size: 3.5rem;
  }

  .hero-section .subtitle {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 2rem;
  }

  .hero-section .button {
    display: inline-block;
    font-size: 1.1rem;
    padding: 1rem 2rem;
  }

  .category-links {
    padding: 0 2rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .games-grid,
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .tips-container,
  .contact-info-container {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin: 0 auto;
  }

  .comparison-container {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto;
  }

  .upcoming-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
  }


  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    box-shadow: none;
    overflow: visible;
  }

  .main-nav ul {
    display: flex;
    justify-content: center;
    padding: 1.5rem 0;
    gap: 1rem;
  }

  .main-nav li {
    margin: 0;
    transform: none;
    opacity: 1;
  }

  .main-nav a {
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
  }

  .main-nav a::before {
    width: 0;
    height: 3px;
    top: auto;
    bottom: 0;
  }

  .main-nav a:hover {
    transform: none;
    background: rgba(126, 34, 206, 0.1);
  }

  .main-nav a:hover::before,
  .main-nav a.active::before {
    width: 100%;
  }


  section {
    padding: 4rem 0;
  }

  .featured-games,
  .gaming-tips,
  .top-games {
    padding: 4rem 2rem;
  }

  .news-updates,
  .upcoming-games,
  .console-comparison {
    padding: 4rem 2rem;
  }


  .game-card h3 {
    font-size: 1.5rem;
  }

  .game-card p {
    font-size: 1rem;
    line-height: 1.6;
  }


  .form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
  }

  .form-success,
  .form-error {
    grid-column: span 2;
  }


  .icon-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .icon-card {
    padding: 2.5rem 2rem;
  }

  .icon-wrapper {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  .icon-card h3 {
    font-size: 1.3rem;
  }
}


@media (min-width: 1200px) {
  .hero-section {
    padding: 8rem 2rem;
  }

  .hero-section h1 {
    font-size: 4rem;
  }

  .category-links {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
  }

  .games-grid,
  .news-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }

  .expert-content-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }

  .expert-highlight {
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
  }


  .section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }


  .content-block {
    padding: 3rem;
  }

  .content-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  .content-block h3 {
    font-size: 1.5rem;
  }

  .content-block p {
    font-size: 1.1rem;
  }
}


@media (min-width: 1400px) {
  .hero-section {
    padding: 10rem 2rem;
  }

  .hero-section h1 {
    font-size: 4.5rem;
  }

  .category-links {
    grid-template-columns: repeat(5, 1fr);
  }

  .games-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .section-container {
    max-width: 1400px;
  }


  .footer-content {
    max-width: 1400px;
    gap: 6rem;
  }
}


.expert-content-section {
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.expert-content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="glow"><stop offset="0%" stop-color="%237e22ce" stop-opacity="0.05"/><stop offset="100%" stop-color="transparent"/></radialGradient></defs><circle cx="20" cy="20" r="15" fill="url(%23glow)"/><circle cx="80" cy="60" r="20" fill="url(%23glow)"/><circle cx="40" cy="80" r="10" fill="url(%23glow)"/></svg>') no-repeat;
  background-size: 100% 100%;
  opacity: 0.7;
  pointer-events: none;
}

.expert-content-section .section-title {
  color: var(--dark);
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.expert-content-section .section-subtitle {
  color: var(--gray-dark);
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.2rem;
}

.expert-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.content-block {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(126, 34, 206, 0.15);
  transition: all var(--transition-medium);
  box-shadow: var(--shadow-md);
}

.content-block:hover {
  background: white;
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), 0 10px 30px rgba(126, 34, 206, 0.15);
}

.content-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: white;
}

.content-block h3 {
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.content-block p {
  color: var(--gray-dark);
  line-height: 1.6;
}

.expert-highlight {
  background: white;
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid rgba(126, 34, 206, 0.15);
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  box-shadow: var(--shadow-lg);
}

.highlight-content h3 {
  color: var(--dark);
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.highlight-list {
  list-style: none;
  margin-bottom: 2rem;
}

.highlight-list li {
  color: var(--gray-dark);
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.highlight-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.2rem;
}

.highlight-list strong {
  color: var(--dark);
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-medium);
  text-align: center;
}

.cta-button.primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.cta-button.primary:hover {
  color: white;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: translateY(-3px);
}

.cta-button.secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.cta-button.secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.highlight-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(126, 34, 206, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(126, 34, 206, 0.15);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--gray-dark);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


@media (min-width: 768px) {
  .expert-content-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .cta-buttons {
    flex-direction: row;
  }
  
  .highlight-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .expert-highlight {
    grid-template-columns: 2fr 1fr;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .expert-content-section {
    padding: 6rem 2rem;
  }
  
  .expert-content-section .section-title {
    font-size: 3rem;
  }
}

.footer-legal {
  display: flex;
  flex-direction: column;
}

.footer-legal h3 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.3rem;
  position: relative;
  display: inline-block;
}

.footer-legal h3::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 40px;
  height: 3px;
  border-radius: var(--radius-full);
}

.footer-legal ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: auto;
}

.footer-legal li {
  margin-bottom: 0.75rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-legal a:hover {
  color: #6200ee; 
  transform: translateX(5px);
}

@media (min-width: 768px) {
  .footer-legal .copyright,
  .footer-legal .disclaimer {
    grid-column: 1 / -1;
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    clear: both;
  }

  .category-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 1rem;
  }

  .hero-section {
    padding: 4rem 1rem;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section .subtitle {
    font-size: 1.3rem;
  }
}

@media (min-width: 1024px) {
  .closing-text {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .closing-text p {
    font-size: 1.1rem;
    line-height: 1.8;
  }

  .news-updates {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .news-item {
    padding: 2rem 0;
  }

  .news-item h3 {
    font-size: 1.4rem;
    line-height: 1.4;
  }

  .industry-trends {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .trends-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .trend-item h3 {
    font-size: 1.5rem;
  }

  .trend-item p {
    font-size: 1.1rem;
    line-height: 1.6;
  }
}

@media (min-width: 1600px) {
  .hero-section h1 {
    font-size: 5rem;
  }

  .hero-section .subtitle {
    font-size: 1.6rem;
    max-width: 900px;
  }

  .category-links {
    grid-template-columns: repeat(6, 1fr);
    max-width: 1600px;
  }

  .games-grid {
    grid-template-columns: repeat(6, 1fr);
    max-width: 1600px;
    margin: 0 auto;
  }

  .news-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1600px;
    margin: 0 auto;
  }

  .expert-content-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1600px;
    margin: 0 auto;
  }

  .footer-content {
    max-width: 1600px;
    grid-template-columns: repeat(4, 1fr);
    gap: 8rem;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .game-image img,
  .hero-image img,
  .upcoming-image img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

@media (prefers-color-scheme: dark) {
  .icon-card {
    background-color: #2d3748;
    color: #e2e8f0;
  }

  .content-block {
    background-color: #2d3748;
    border-color: rgba(126, 34, 206, 0.3);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
  
@media print {
  .site-header,
  .main-nav,
  .cookie-banner,
  .site-footer,
  .cta-buttons {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
    color: black;
    background: white;
  }

  h1, h2, h3, h4, h5, h6 {
    color: black;
    page-break-after: avoid;
  }

  .game-card,
  .news-item,
  .content-block {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}
