@charset "UTF-8";
@import 'https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap';
* {
  box-sizing: border-box;
}
*::before {
  box-sizing: border-box;
}
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  padding: 16px 16px 0;
  margin: 56px 0 0 0;
  font-size: 16px;
  color: #58555e;
  background: #121212;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #232323;
  box-shadow: 0 1px 0 rgba(22, 8, 43, 0.1);
}
.header nav .navbar-brand {
  width: 200px;
  transition: transform 0.3s ease-in-out;
  padding: 0em 1em;
}
.header nav .navbar-brand:hover {
  transform: scale(1.05);
}
.header nav .navbar-toggler {
  background-color: #f7951e;
}
.header nav .nav-link--language {
  font-size: 1.5rem;
}
.header nav .nav-link--language .dropdown-menu {
  transform: translatex(-50%);
  text-align: center;
}
.header nav .nav-link--language .dropdown-menu .dropdown-item {
  padding: 0.75em 1em;
}
.header nav .nav-link:not(.nav-link--user) {
  position: relative;
  color: #fff;
  font-size: 1.3rem;
  z-index: 1;
  border-bottom: 2px solid #f7971e;
  font-weight: 500;
  padding: 1em;
}
.header nav .nav-link:not(.nav-link--user)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0;
  width: 100%;
  background-color: #f7971e;
  z-index: -1;
  transition: height 0.3s ease-in-out;
}
.header nav .nav-link:not(.nav-link--user):hover::after, .header nav .nav-link:not(.nav-link--user):focus::after {
  height: 100%;
}
.header nav .nav-link:not(.nav-link--user):hover, .header nav .nav-link:not(.nav-link--user):focus {
  color: #000;
}
.header nav .nav-link.active {
  color: #000;
}
.header nav .nav-link.active::after {
  height: 100%;
}
.header .dropdown {
  z-index: 5;
}
.header .dropdown-toggle {
  transition: filter 0.3s ease-in-out;
  outline: none;
}
.header .dropdown-toggle:hover {
  filter: brightness(0.5);
}
.header .dropdown-menu {
  background-color: #47402f;
}
.header .dropdown-item {
  color: #fff;
  padding: 1em;
}
.header .dropdown-item:hover {
  background-color: #f7951e;
}

.main {
  margin: 2em 0em;
}

.tiles__tile {
  background-color: #232323;
  padding: 1.5em;
  border-radius: 0.8em;
  border-left: 4px solid #f7971e;
  transition: transform 0.3s ease-in-out;
}
.tiles__tile:hover {
  transform: scale(1.1);
}
.tiles__title {
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.6rem;
  padding: 0;
  margin-bottom: 0.5em;
}
.tiles__desc {
  color: #a4a4a4;
  padding: 0;
  margin: 0;
  text-align: center;
}
.tiles__link {
  text-align: center;
}
.tiles__earn {
  font-weight: bold;
  color: #fff;
  font-size: 1.7rem;
  text-align: center;
}
.tiles__status {
  font-size: 1.7rem;
  text-align: center;
}
.tiles__status--classic {
  color: #fff;
  padding: 0;
  margin: 0;
}
.tiles__status--premium {
  color: #f7971e;
  font-weight: bold;
  padding: 0;
  margin: 0;
}

.section__hr {
  height: 1px;
  width: 100%;
  background-color: rgba(247, 149, 30, 0.3019607843);
  margin: 2em 0em;
}

.premium__title {
  color: #fff;
  font-size: 2rem;
  text-align: center;
}
.premium__tile {
  background-color: #232323;
  border: 2px solid #f7951e;
  border-radius: 1.2em;
  padding: 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.premium__name {
  text-align: center;
  color: #f7951e;
}
.premium__desc {
  color: gray;
  font-size: 1rem;
  width: 80%;
  margin: 0 auto;
}
.premium__status {
  color: #f7951e;
}
.premium__price {
  text-align: center;
  padding: 1em;
  color: #fff;
  font-size: 1.4rem;
}
.premium__btn {
  text-decoration: none;
  color: #f7951e;
  border: 2px solid #f7951e;
  border-radius: 0.8em;
  padding: 1em 1.5em;
  font-size: 1.1rem;
  transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.premium__btn:hover {
  background-color: #f7951e;
  color: #fff;
  box-shadow: 0px 0px 5px #f7951e, 0px 0px 15px #f7951e;
}
.premium__warning {
  color: #f00;
  text-align: center;
  margin-top: 1em;
}

@media (max-width: 1160px) {
  .tiles__tile {
    max-width: 1160px;
    overflow: hidden;
  }
  .tiles__link {
    font-size: 0.9rem;
  }
}
::-webkit-scrollbar {
  width: 12px; /* Szerokość paska przewijania */
}

::-webkit-scrollbar-track {
  background-color: #060606; /* Kolor tła paska przewijania */
}

::-webkit-scrollbar-thumb {
  background-color: #f7951e; /* Kolor suwaka */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #8d4700; /* Kolor suwaka po najechaniu */
}

/* Opcjonalnie można dodać transition dla płynniejszych animacji */
::-webkit-scrollbar-thumb {
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}/*# sourceMappingURL=premium.css.map */