@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 {
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 16px 16px 0;
  margin: 56px 0 0 0;
  font-size: 16px;
  color: #58555e;
  background: #121212;
  display: flex;
  flex-direction: column;
}

.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 10em;
  min-height: 70vh;
}
.main__btns {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translatex(-50%);
  width: 35%;
  margin: 5em auto 0em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main__btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  padding: 0.5em;
}
.main__btn--arrows {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #fff;
  background-color: #f7971e;
  font-size: 1.2rem;
  padding: 0.5em 1em;
  z-index: 0;
}
.main__btn--arrows:first-of-type {
  border-right: 3px solid #121212;
}
.main__btn--arrows:last-of-type {
  border-left: 3px solid #121212;
}
.main__btn--arrows::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #8a5412;
  transition: height 0.15s ease-out;
  z-index: -5;
}
.main__btn--arrows:hover::before {
  height: 100%;
}
.main__btn--active {
  background-color: #f7951e;
}
.main__btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #8a5412;
  transition: height 0.15s ease-out;
  z-index: -5;
}
.main__btn:hover:not(.main__btn--active)::before {
  height: 100%;
}

.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;
}

.videos__video {
  transition: box-shadow 0.3s ease-in-out;
  border: 2px solid #f7951e;
  overflow: hidden;
}
.videos__video:hover {
  box-shadow: 0px 0px 1cap #f7951e;
}
.videos__link {
  text-decoration: none;
}
.videos__img {
  -o-object-fit: cover;
     object-fit: cover;
}
.videos__logo {
  display: block;
  width: 50px;
  height: auto;
  border-radius: 100%;
  border: 2px solid #f7951e;
}
.videos__details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 0.5em;
}
.videos__heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.videos__info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #808080;
}
.videos__title, .videos__user, .videos__views {
  padding: 0;
  margin: 0;
}
.videos__title {
  color: #f7951e;
}

.commercials {
  position: relative;
  z-index: -1;
}

.commercial {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5em;
}
.commercial__img {
  display: block;
  width: 300px;
  height: auto;
}

::-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;
}

@media (min-width: 1830px) {
  .commercials {
    position: fixed;
  }
}/*# sourceMappingURL=style.css.map */