@charset "UTF-8";
/*
Theme Name: Pixelads theme review V1
Theme URI: 
Author: Otavio Augusto B. Santana
Version: 1.0.0
Author URI: 
*/

/* Reset CSS */
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
img,
ul,
ol,
li,
form,
label,
input,
textarea,
button,
select,
option,
table,
thead,
tbody,
tr,
th,
td,
blockquote {

  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;

}



ol,
ul {

  list-style: none;

}



table {

  border-collapse: collapse;
  border-spacing: 0;

}



img {

  max-width: 100%;
  height: auto;
  display: block;

}



/* End of Reset CSS */



* {

  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}



@font-face {

  font-family: 'Open Sans';
  src: url('./fonts/opensans-variablefont_wdthwght-webfont.woff') format('woff'),
    url('./fonts/opensans-variablefont_wdthwght-webfont.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;

}



/* Fontes */

body {

  
  /* Exemplo de fonte sem serifa */

  font-size: 16px;
  line-height: 1.5;
  color: #333;

}

a {

  color: #333;

}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Open Sans', sans;
  font-weight: bold;
  margin-top: 1em;
  margin-bottom: 0.5em;
}

.header-nav
 {
  display: flex;
  gap: 40px;
  width: 100%;
  align-items: center;
  justify-content:center;
}
.header-nav ul{
	 display: flex;
  	gap: 40px;
	list-style-type: none;
	width:90%;
	justify-content:center;
}
.legal-notice {
  background-color: rgba(0, 0, 0, .05);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  display: flex;
  justify-content: center
}
.legal-notice-wrapper {
  background-color: #fff;
  padding: 8px;
  box-shadow: rgba(0, 0, 0, .15) 1.95px 1.95px 2px;
  border-radius: 4px;
  max-width: 768px
}
.legal-notice h2 {
  font-size: 20px;
  margin-bottom: 15px
}
.legal-notice p {
  font-size: 14px;
  line-height: 1.5
}
.footer-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px
}
.footer-menu-items {
  display: flex;
  gap: 20px;
  list-style: none
}
.social-icons {
  display: flex;
  gap: 10px
}
.footer-section-all-rights p {
  text-align: center;
  margin-bottom: 0
}

@media screen and (max-width:768px) {
  .footer-container {
    flex-direction: column;
    gap: 20px
  }
}
.custom-logo {

  max-width: 120px;

}

.popular-now-section {
    margin: 40px 0;

    & h3 {
      font-size: 1.5rem;
      margin: 40px auto;
      max-width: 900px;
    }
}
.popular-now-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(21.875rem, 1fr));
    gap: 10px;
    max-width: 900px;
    margin: 40px auto;
    line-height: 1.7;
}

.game-box {
    display: flex;
    align-items: center;
    background: #fff;
    gap: 0.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    padding: 10px;
    text-decoration: none;
    color: #000;
}

.game-box:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.game-thumb img {
    border-radius: 5px;
    max-width: 40px;
    height: 40px;
    object-fit: cover;
}

.game-title {
    font-weight: 500;
}

.appreview-category-header {
  text-align: center;
  margin-top: 40px;
}

.appreview-category-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.appreview-category-description {
  font-size: 16px;
  color: #666;
  max-width: 800px;
  margin: 0 auto 30px;
}

.appreview-archive {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.appreview-item {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.appreview-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.appreview-thumbnail {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 15px;
}

.appreview-excerpt {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}

.appreview-rating {
  margin-bottom: 10px;
  font-size: 16px;
  color: #ff9900;
}

.read-more-link {
  color: #308e5e;
  font-weight: 600;
  text-decoration: none;
}

.read-more-link:hover {
  text-decoration: underline;
}

.appreview-single-box {
  display: flex;
  gap: 30px;
  background: #fff;
  padding-block: 20px;
  border-radius: 16px;
  max-width: 900px;
  margin: 40px auto;
  flex-wrap: wrap;
  align-items: flex-start;
}

.appreview-left img {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  object-fit: cover;
}

.appreview-right {
  flex: 1;
}

.appreview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.appreview-info {
  flex: 1;
}

.appreview-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: #111;
}

.appreview-rating span {
  color: #ffc107;
  font-size: 20px;
  margin-right: 2px;
}

.appreview-desc {
  color: #6c757d;
  margin-top: 8px;
}

.get-game-btn {
  background-color: #308e5e;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
  white-space: nowrap;
  animation: pulse 1.5s infinite;
  transition: background 0.3s ease;

}

.get-game-btn:hover {
  background-color: #1f6d45;
  color: white;
}

.appreview-content {
  max-width: 900px;
  margin: 40px auto;
  line-height: 1.7;
}

.latest-reviews-wrapper {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.latest-reviews-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

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

.appreview-tabs {
  max-width: 56.25rem;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  margin-top: 20px;
	
}

.tab-buttons {
  display: flex;
  border-bottom: 2px solid #eee;
  margin-bottom: 20px;
}

.tab-button {
  background: transparent;
  border: none;
  font-weight: 600;
  padding: 10px 20px;
  cursor: pointer;
  color: #555;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.tab-button.active {
  color: #308e5e;
  border-color: #308e5e;
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-content.active {
  display: block;
}

.read-more-btn {
  display: inline-block;
  background: #308e5e;
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  margin-top: 20px;
  font-weight: 600;
  transition: .3s ease-in;
}

.read-more-btn:hover {
  color: #FFFFFF;
  background-color: #1f6d45;
} 

.screenshot-img {
  max-width: 100%;
  border-radius: 10px;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

.appreview-details-box {
    margin-top: 30px;
    font-family: 'Inter', sans-serif;
}

.rating-section {
    margin-bottom: 30px;
}

.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
}

.rating-label {
    width: 180px;
    font-weight: 600;
}

.bar-container {
    flex: 1;
    background-color: #e0e0e0;
    border-radius: 10px;
    height: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background-color: #308e5e;
    border-radius: 10px;
}

.rating-score {
    width: 30px;
    text-align: right;
    font-weight: 500;
}

.pros-cons-box {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.pros-column, .cons-column {
    flex: 1;
    min-width: 250px;
}

.pros-list {
    padding-left: 0;
	list-style: disc inside;
}

.cons-list {
    list-style: disc inside;
    padding-left: 0;
}

.pros-list li::marker,
.cons-list li::marker {
    color: #308e5e;
    font-size: 1.2em;
}


.latest-reviews-wrapper {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.latest-reviews-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

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

.latest-review-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.latest-review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.latest-review-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.latest-review-title {
    font-size: 18px;
    font-weight: 600;
    padding: 15px;
    line-height: 1.4;
}

.latest-posts-wrapper {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.latest-posts-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

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

.latest-post-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.latest-post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.latest-post-item a {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.post-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.post-title {
    font-size: 18px;
    font-weight: 600;
    padding: 15px;
    line-height: 1.4;
    color: #111;
}

.post-excerpt {
    padding: 0 15px 15px;
    font-size: 15px;
    color: #555;
    flex-grow: 1;
}

.appreview-pagination {
  text-align: center;
  margin-block: 15px 40px;
  font-size: 16px;
}

.appreview-pagination .page-numbers {
  display: inline-block;
  margin: 0 5px;
  padding: 8px 12px;
  background-color: #f1f1f1;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.appreview-pagination .page-numbers:hover {
  background-color: #ddd;
}

@media (max-width: 768px) {
	
  .appreview-header {
    flex-direction: column;
    align-items: start;
  }

  .appreview-tabs {
      margin-inline: 1rem;
  }

  .appreview-single-box {
    margin-inline: 1rem;
  }

  .popular-now-section {
	  
    & h3 {
      margin-inline: 1rem;
    }
  }

  .popular-now-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(7.5rem, 1.5fr));
    margin-inline: 1rem;

    & .game-title {
      font-size: 0.65rem;
    }
  }
} 

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(48, 142, 94, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(48, 142, 94, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(48, 142, 94, 0);
  }
}
