@charset "UTF-8";
/* SCSS Variables & Setup */
@import url("https://fonts.googleapis.com/css2?family=Bangers&family=Cabin:wght@400;700&display=swap");
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
body {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: currentColor;
}

button {
  font-family: inherit;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

input,
textarea {
  font-family: inherit;
}

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

svg {
  width: 24px;
  height: 24px;
  display: block;
}

address {
  font-style: normal;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

/* Żywy pomarańcz/czerwony - jak chilli */
/* Złoty/żółty - nawiązanie do lucha libre i słońca */
/* Jasna zieleń/limonka - jak gummy bears */
/* Ciemny granat/antracyt - dla kontrastu */
/* Bardzo jasny szary - tło sekcji */
/* Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: "Cabin", sans-serif;
  color: #2c3e50;
  background-color: #ecf0f1;
}

a {
  text-decoration: none;
  color: #ff5733;
  transition: color 0.3s ease;
}
a:hover {
  color: #ff2d00;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Bangers", cursive;
  color: #2c3e50;
  text-transform: uppercase;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.1;
}
@media (min-width: 768px) {
  h2 {
    font-size: 3.5rem;
  }
}

h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ff5733;
  text-align: center;
}

/* ------------------------------------- */
/* HEADER & NAVIGATION (BEM) */
/* ------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #2c3e50;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.header__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}
@media (min-width: 768px) {
  .header__container {
    padding: 0 40px;
  }
}
.header__logo {
  height: 50px;
}
.header__logo-image {
  height: 100%;
  width: auto;
  display: block;
}
.header__navigation {
  display: none;
}
@media (min-width: 1024px) {
  .header__navigation {
    display: block;
  }
}
.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1010;
}
@media (min-width: 1024px) {
  .header__burger {
    display: none;
  }
}
.header__burger-line {
  display: block;
  width: 100%;
  height: 3px;
  background: #ffc300;
  transition: all 0.3s ease-in-out;
}

.navigation__list {
  list-style: none;
  display: flex;
}
.navigation__item {
  margin-left: 30px;
}
.navigation__link {
  color: #ffffff;
  font-family: "Cabin", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 0;
  position: relative;
  overflow: hidden;
}

/* Mobile Menu Overlay */
.header--open .header__navigation {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(44, 62, 80, 0.95);
  z-index: 1005;
  align-items: center;
  justify-content: center;
}
.header--open .header__navigation .navigation__list {
  flex-direction: column;
  text-align: center;
}
.header--open .header__navigation .navigation__item {
  margin: 20px 0;
}
.header--open .header__navigation .navigation__link {
  font-size: 2rem;
  color: #ffffff;
}

.header--open .header__burger-line:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.header--open .header__burger-line:nth-child(2) {
  opacity: 0;
}

.header--open .header__burger-line:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* ------------------------------------- */
/* MAIN SECTIONS */
/* ------------------------------------- */
.main {
  padding-top: 0;
}

.section {
  padding: 60px 0;
  background-color: #ffffff;
  border-bottom: 5px solid #daf7a6;
}
@media (min-width: 1024px) {
  .section {
    padding: 100px 0;
  }
}
.section:nth-child(even) {
  background-color: #ecf0f1;
}
.section__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .section__container {
    padding: 0 40px;
  }
}
.section__description {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1rem;
  font-weight: 400;
}
.section__image-container {
  background-size: cover;
  background-position: center;
  min-height: 400px;
  background-color: #daf7a6;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(44, 62, 80, 0.1);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #ffc300 0%, #ff5733 100%);
  color: #ffffff;
  padding: 60px 0;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (min-width: 1024px) {
  .hero {
    padding: 100px 0;
  }
}
.hero h2 {
  color: #ffffff;
  text-shadow: 3px 3px 0 rgba(44, 62, 80, 0.2);
}
.hero__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.hero__image-container {
  min-height: 500px;
  background: url("/assets/img/hero-bison.webp") center center no-repeat;
  background-size: cover;
  border: 5px solid #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  margin-top: 40px;
  animation: pulse 2s infinite alternate;
}

@keyframes pulse {
  from {
    transform: scale(1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  }
  to {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
  }
}
/* Content Blocks */
.content-block__title, .content-block__text {
  margin-bottom: 20px;
}
.content-block__text {
  font-size: 1.15rem;
  line-height: 1.6;
}

/* Article & Details */
.article {
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}
.article__heading {
  font-size: 1.5rem;
  color: #ff5733;
  margin-bottom: 15px;
}
.article__paragraph {
  margin-bottom: 15px;
  line-height: 1.5;
}

.details-list {
  background-color: rgb(237.4536082474, 251.206185567, 212.793814433);
  padding: 20px;
  border-radius: 6px;
  margin: 20px 0;
}
.details-list__title {
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-family: "Bangers", cursive;
}
.details-list__items {
  list-style: none;
  padding-left: 0;
}
.details-list__item {
  padding: 5px 0;
  border-bottom: 1px dashed rgba(44, 62, 80, 0.2);
}
.details-list__item:last-child {
  border-bottom: none;
}

/* Character Gallery */
.character-gallery {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
  text-align: center;
}
@media (min-width: 768px) {
  .character-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

.character-card {
  background: #ffc300;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 8px 15px rgba(44, 62, 80, 0.2);
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
  border: 3px solid #ff5733;
  position: relative;
  overflow: hidden;
}
.character-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  transform: rotate(45deg);
  transition: transform 0.5s ease;
}
.character-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(44, 62, 80, 0.3);
}
.character-card:hover::before {
  transform: rotate(0deg);
}
.character-card__name {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 10px;
}
.character-card__ability {
  font-weight: 700;
  color: #ff5733;
  margin-bottom: 10px;
}

/* Upgrade Grid */
.upgrade-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  max-width: 1000px;
  margin: 40px auto;
}
@media (min-width: 768px) {
  .upgrade-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.upgrade-category {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  border-left: 5px solid #ff5733;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.upgrade-category__title {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 10px;
  transition: color 0.3s ease;
  cursor: default;
}
.upgrade-category__title:hover {
  color: #ff5733;
}

/* Enemies List & Strategy List */
.enemy-list,
.strategy-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto 40px;
  padding-left: 0;
}

.enemy-list__item,
.strategy-list__item {
  background: #ffffff;
  margin-bottom: 15px;
  padding: 15px 25px;
  border-radius: 6px;
  font-size: 1.1rem;
  line-height: 1.5;
  position: relative;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.enemy-list__item::before,
.strategy-list__item::before {
  content: "★";
  color: #ffc300;
  font-size: 1.2rem;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  padding-right: 15px;
}

.strategy-list__item {
  counter-increment: strategy-counter;
  padding-left: 30px;
}
.strategy-list__item::before {
  content: counter(strategy-counter);
  background: #ff5733;
  color: #ffffff;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  font-size: 0.9rem;
  font-family: "Bangers", cursive;
  left: -10px;
  transform: translateY(-50%);
}

/* Verdict Section */
.section--verdict {
  background-color: #2c3e50;
  color: #ecf0f1;
}
.section--verdict h3 {
  color: #ffc300;
}
.section--verdict p,
.section--verdict ul {
  color: #ecf0f1;
}

.score-card {
  background: #ff5733;
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  margin: 40px auto;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}
.score-card::before {
  content: "9/10";
  font-family: "Bangers", cursive;
  font-size: 5rem;
  position: absolute;
  right: -10px;
  bottom: -10px;
  color: rgba(44, 62, 80, 0.1);
  z-index: 1;
  transform: rotate(15deg);
}
.score-card__rating {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-family: "Bangers", cursive;
  text-shadow: 2px 2px 0 #2c3e50;
  position: relative;
  z-index: 2;
}
.score-card__pros-cons {
  list-style: none;
  text-align: left;
  padding-left: 0;
}
.score-card__pro, .score-card__con {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  font-family: "Cabin", sans-serif;
  font-weight: 400;
}
.score-card__pro::before, .score-card__con::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #daf7a6;
  font-weight: 700;
}
.score-card__con::before {
  content: "✖";
  color: #ffc300;
}

.section__text-final {
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  margin-top: 30px;
  color: #daf7a6;
}

/* Download Links */
.download-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 300px;
  margin: 40px auto 0;
}
@media (min-width: 768px) {
  .download-links {
    flex-direction: row;
    max-width: 500px;
    justify-content: center;
  }
}

.download-link {
  display: block;
  padding: 15px 25px;
  border-radius: 50px;
  text-align: center;
  font-size: 1.2rem;
  font-family: "Bangers", cursive;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.download-link--googleplay {
  background: #daf7a6;
  color: #2c3e50;
}
.download-link--googleplay:hover {
  background: rgb(198.5463917526, 242.793814433, 119.206185567);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
.download-link--appstore {
  background: #ffc300;
  color: #2c3e50;
}
.download-link--appstore:hover {
  background: #cc9c00;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Blockquote */
.section__quote {
  display: block;
  margin: 40px auto;
  padding: 20px;
  max-width: 800px;
  border-left: 5px solid #ffc300;
  font-style: italic;
  font-size: 1.1rem;
  background-color: rgb(241.8727272727, 244.6363636364, 245.3272727273);
  border-radius: 4px;
}

/* ------------------------------------- */
/* FOOTER */
/* ------------------------------------- */
.footer {
  background: #2c3e50;
  color: #ecf0f1;
  padding: 30px 0;
  font-size: 0.9rem;
}
.footer__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__container {
    padding: 0 40px;
  }
}
@media (min-width: 768px) {
  .footer__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.footer__copyright {
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .footer__copyright {
    margin-bottom: 0;
  }
}
.footer__links {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.footer__link {
  color: rgba(236, 240, 241, 0.7);
  transition: color 0.3s ease;
}
.footer__link:hover {
  color: #ff5733;
}

.policy-hero {
  background: #2c3e50;
  color: #ffffff;
  padding: 80px 0 50px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.policy-hero__title {
  font-family: "Bangers", cursive;
  font-size: 3rem;
  color: #ffc300;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .policy-hero__title {
    font-size: 4rem;
  }
}
.policy-hero__subtitle {
  font-family: "Cabin", sans-serif;
  font-size: 1.2rem;
  color: #daf7a6;
  margin-bottom: 15px;
}
.policy-hero__date {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.policy-content {
  padding: 60px 0;
  padding-top: 50px;
  background-color: #ecf0f1;
}
@media (min-width: 1024px) {
  .policy-content {
    padding: 100px 0;
  }
}

.policy-article {
  background-color: #ffffff;
  border: 1px solid rgba(44, 62, 80, 0.1);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.policy-article:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.policy-article .article__heading {
  font-family: "Bangers", cursive;
  font-size: 2rem;
  color: #ff5733;
  border-bottom: 2px solid #daf7a6;
  padding-bottom: 10px;
  margin-bottom: 25px;
  text-align: left;
}
.policy-article .article__paragraph {
  line-height: 1.7;
  margin-bottom: 15px;
}
.policy-article .details-list {
  border-left: 4px solid #ffc300;
  background-color: rgb(241.8727272727, 244.6363636364, 245.3272727273);
  padding: 15px 20px 10px;
  margin-top: 20px;
  border-radius: 0 8px 8px 0;
}
.policy-article .details-list__title {
  font-size: 1.1rem;
  color: #2c3e50;
  font-family: "Cabin", sans-serif;
  font-weight: 700;
}
.policy-article .details-list__item {
  list-style: disc;
  margin-left: 20px;
  padding: 3px 0;
  border-bottom: none;
}

.policy-article a {
  font-weight: 700;
  color: #ff5733;
  text-decoration: underline;
}
.policy-article a:hover {
  color: #2c3e50;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background: #2c3e50;
  color: #ecf0f1;
  padding: 15px 0;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.cookie-banner.is-visible {
  transform: translateY(0);
}
.cookie-banner__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .cookie-banner__container {
    padding: 0 40px;
  }
}
@media (min-width: 768px) {
  .cookie-banner__container {
    flex-direction: row;
    justify-content: space-between;
  }
}
.cookie-banner__content {
  flex-grow: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .cookie-banner__content {
    text-align: left;
    padding-right: 20px;
  }
}
.cookie-banner__title {
  font-family: "Bangers", cursive;
  font-size: 1.4rem;
  color: #ffc300;
  margin-bottom: 5px;
}
.cookie-banner__text {
  font-size: 0.95rem;
  line-height: 1.4;
}
.cookie-banner__link {
  color: #daf7a6;
  text-decoration: underline;
  font-weight: 700;
  transition: color 0.3s ease;
}
.cookie-banner__link:hover {
  color: #ff5733;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
@media (min-width: 375px) {
  .cookie-banner__actions {
    flex-direction: row;
    width: auto;
    min-width: 250px;
  }
}
.cookie-banner__button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Cabin", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}
.cookie-banner__button--primary {
  background-color: #ff5733;
  color: #ffffff;
}
.cookie-banner__button--primary:hover {
  background-color: #ff2d00;
  transform: scale(1.03);
}
.cookie-banner__button--secondary {
  background-color: transparent;
  color: #daf7a6;
  border: 2px solid #daf7a6;
}
.cookie-banner__button--secondary:hover {
  background-color: #daf7a6;
  color: #2c3e50;
}