@media (max-width: 767px) {
  body {
    background-color: #f5f5f5;
  }

  h1 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .site-header {
    position: relative;
    background-color: #111827;
  }

  .hero-image {
    height: 200px;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

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

  .menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
  }

  .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;
  }

  .hero-section {
    text-align: center;
    padding: 1rem 1rem;
    background: white;
    margin-bottom: 0;
  }

  .hero-section h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #111827;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    font-weight: 700;
  }

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

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

  .category-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 1rem;
    margin: 1rem 0;
  }

  .category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #6200ee; 
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
  }

  .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: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }

  .icon-section {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
  }

  .icon-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .icon-card {
    padding: 1.5rem;
  }

  .icon-wrapper {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .featured-games {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
  }

  .games-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .game-card {
    margin-bottom: 1rem;
  }

  .game-image {
    height: 180px;
  }

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

  .news-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .latest-news {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
  }

  .news-card {
    margin-bottom: 1rem;
  }

  .news-image {
    height: 180px;
  }

  .trends-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .trend-item {
    padding: 1.5rem;
  }

  .events-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .event-card {
    flex-direction: column;
  }

  .event-date {
    padding: 1rem;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    gap: 0.5rem;
  }

  .day {
    font-size: 1.5rem;
  }

  .month {
    font-size: 0.9rem;
    margin-top: 0;
  }


  .gaming-tips {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
  }

  .tips-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .tip-card {
    padding: 1.5rem;
  }


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

  .comparison-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .comparison-column {
    padding: 1.5rem;
  }

  .console-image {
    height: 150px;
  }


  .free-vs-paid {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
  }


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

  .upcoming-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .upcoming-card {
    margin-bottom: 1rem;
  }

  .upcoming-image {
    height: 180px;
  }


  .closing-text {
    padding: 1.5rem 1rem;
    background-color: white;
    margin-bottom: 0;
  }

  .closing-text p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4b5563;
  }


  .site-footer {
    background-color: #111827; 
    padding: 2rem 1rem;
    margin-top: 0;
    position: relative;
  }

  .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: 2rem;
  }

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

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

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

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

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

  .footer-nav a:hover,
  .footer-contact a:hover,
  .footer-legal a:hover {
    color: #6200ee; 
  }

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

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

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

  .disclaimer {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    margin: 0;
    text-align: center;
    width: 100%;
  }


  .contact-form-section {
    padding: 2rem 1rem;
  }

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

  .contact-info-section {
    padding: 2rem 1rem;
  }

  .contact-info-container {
    gap: 1.5rem;
  }

  .contact-info-card {
    padding: 1.5rem;
  }


  .legal-content {
    padding: 0 1rem;
  }

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

  .legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }

  .legal-section h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .legal-list {
    margin-left: 1rem;
  }

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


  .contact-details {
    padding: 1.25rem;
  }


  .cookie-banner {
    padding: 1rem;
  }

  .cookie-content {
    flex-direction: column;
    gap: 0.75rem;
  }

  #accept-cookies {
    width: 100%;
    text-align: center;
  }


  .filter-section {
    padding: 1.5rem 1rem;
  }

  .filter-container {
    flex-direction: column;
    gap: 1rem;
  }

  .featured-review-container {
    flex-direction: column;
  }

  .featured-review-image {
    height: 200px;
  }

  .review-card {
    margin-bottom: 1.5rem;
  }

  .review-card-image {
    height: 180px;
  }

  .category-tabs {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 1rem;
  }

  .category-tab {
    padding: 0.5rem 0.75rem;
  }

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

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

  .submit-review-container {
    padding: 1.5rem;
  }
}


@media (min-width: 768px) and (max-width: 1023px) {

  .site-header {
    position: relative;
  }

  .hero-image {
    height: 300px;
  }


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

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

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


  .category-links {
    padding: 0 2rem;
    margin: 2.5rem 0;
    gap: 1rem;
  }


  .site-footer {
    padding: 3rem 2rem;
  }

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

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


  .contact-form-section,
  .contact-info-section {
    padding: 2.5rem 2rem;
  }

  .contact-info-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }


  .legal-content {
    padding: 0 2rem;
  }
}


.page-header {
  padding: 2rem 1rem;
}

section {
  padding: 2rem 1rem;
}

  
@media (max-width: 767px) {
  .cookie-banner {
    padding: 1rem;
  }

  .cookie-content {
    gap: 0.75rem;
  }

  #accept-cookies {
    width: 100%;
    text-align: center;
  }
}
