/* Reset CSS */
html {
	scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ekran ładowania */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 1s ease;
}

#loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Logo ładowania */
.loading-logo {
    width: 150px; /* Rozmiar logo */
    height: auto;
    animation: pulse 2s infinite ease-in-out; /* Animacja pulsowania */
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Body */
body {
    font-family: "Poppins", sans-serif;
    background:
        radial-gradient(circle, rgba(0, 150, 255, 0.6), rgba(255, 140, 0, 0.1)),
        /* Radialny gradient */ linear-gradient(rgba(0, 150, 255, 0.1), rgba(0, 0, 0, 0)),
        /* Liniowy gradient */ url("o-back-anim.gif") no-repeat center center; /* Obraz tła */
    color: #ffffff;
    scroll-behavior: smooth;
    position: relative;
    max-width: 2000px;
    margin-left: auto;
    margin-right: auto; /* <-- CENTROWANIE */
    
}

/* Kontener odtwarzacza wideo */
.video-player {
    margin: center;
    background-size: cover; /* Dopasowanie obrazu tła */
    aspect-ratio: 16 / 9; /* Ustaw proporcje 16:9 */
    background-color: rgba(0, 0, 0, 0.3); /* Przezroczyste ciemne tło */
    -webkit-backdrop-filter: blur(10px); /* Rozmycie tła */
    backdrop-filter: blur(10px); /* Rozmycie tła */
    border-radius: 8px; /* Zaokrąglenie rogów */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Delikatna ramka */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); /* Cień wokół kontenera */
}

/* Styl dla iframe (wideo) */
#custom-player {
    width: 100%; /* Dopasowanie szerokości */
    height: 100%; /* Dopasowanie wysokości */
    position: absolute; /* Pozycjonowanie wewnątrz kontenera */
    top: 0;
    left: 0;
    border: none; /* Usuń domyślną ramkę iframe */
}

/* Tło */
:root{
  /* możesz podmienić, jeśli chcesz inny odcień */
  --ps-c1:#2c8cff;   /* błękit */
  --ps-c2:#005eff;   /* royal blue */
  --ps-c3:#001e72;   /* granat */
}

.ps-bg{
  position:fixed;
  inset:-10%;
  z-index:-1;          /* ZA całą stroną */
  pointer-events:none; /* kliknięcia przechodzą dalej */

  /* 3 nakładające się gradienty „plam” */
  background:
    radial-gradient(ellipse at 30% 40%,   var(--ps-c1) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%,   var(--ps-c2) 0%, transparent 70%),
    radial-gradient(ellipse at 50% 20%,   var(--ps-c3) 0%, transparent 65%);
  background-size:115% 77%;
  background-repeat:no-repeat;

  /* Lekko pompujemy i obracamy całość */
  animation: rotateBlob 80s linear infinite;

  /* Klucz: FALUJĄCY filtr + rozmycie */
  filter: url(#psWave) blur(36px);
}

/* Powolny obrót całej „warstwy farby” */
@keyframes rotateBlob{
  0%   {transform:rotate(0)    scale(1);}
  50%  {transform:rotate(180deg) scale(1.04);}
  100% {transform:rotate(360deg) scale(1);}
}
.blur {
    position: fixed;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    filter: blur(1px);
    background:
        radial-gradient(circle, rgba(0, 150, 255, 0.1), rgba(0, 0, 0, 1)),
        /* Radialny gradient */ linear-gradient(rgba(0, 150, 255, 0.1), rgba(0, 0, 0, 0)),
        /* Liniowy gradient */ url("o-back-anim.gif") no-repeat center center; /* Obraz tła */
    background-size: cover;
    z-index: -1;
}
.blur2 {
    position: fixed;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    filter: blur(10px);
    background:
        radial-gradient(circle, rgba(150, 0, 0, 0.1), rgba(0, 0, 0, 1)),
        /* Radialny gradient */ linear-gradient(rgba(0, 0, 0, 1.0), rgba(0, 0, 0, 0)),

        /* Liniowy gradient */ url("Lawwa0001-0563-ezgif.com-optimize (1).gif") no-repeat center center; /* Obraz tła */
    background-size: cover;
    z-index: -1;
}
.blur3 {
    position: fixed;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    filter: blur(10px);
    background:
        radial-gradient(circle, rgba(0, 150, 255, 0.2), rgba(0, 0, 0, 0.3)),
        /* Radialny gradient */ linear-gradient(rgba(0, 150, 255, 0.0), rgba(0, 0, 0, 1)),
        /* Liniowy gradient */ url("blizard0080-0279-ezgif.com-optimize.gif") no-repeat center center; /* Obraz tła */
    background-size: cover;
    z-index: -1;
}
.main-c {
    margin: 5px;
    position: relative;
    z-index: 3; /* Treść będzie nad tłem */
    
}

/* Sticky menu with blur effect */
.header {
    position: sticky;
    top: 0;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    border-radius: 7px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto; /* <-- CENTROWANIE */
}
.header2 {
    position: sticky;
    top: 0;
    z-index: 99;



    margin-left: auto;
    margin-right: auto; /* <-- CENTROWANIE */
}

.battle-net-button {
    background-color: #009dff;
    border: none;
    padding: 20px 27px;
    color: white;
    font-weight: bold;
    border-radius: 7px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-right: 10px; /* Przesuwa przycisk na prawo */
}

.battle-net-button:hover {
    background-color: #66c4ff;
}

.battle-net-button-b {
    color: white;
    font-weight: bold;
}

.battle-net-button-b-red {
    color: white;
    font-weight: bold;
}


.battle-net-button-red {
    background-color: #ff0000;
    border: none;
    padding: 20px 27px;
    color: white;
    font-weight: bold;
    border-radius: 7px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-right: 10px; /* Przesuwa przycisk na prawo */
}

.battle-net-button-red:hover {
    background-color: #ff5252;
}

.battle-net-button-b-red {
    color: white;
    font-weight: bold;
}

.logo-big {
    z-index: 2;
    display: flex;
    justify-content: center; /* Wyśrodkowanie poziome */
    align-items: center; /* Wyśrodkowanie pionowe */
    width: 55%;
    
     margin-left: auto;
      margin-right: auto;
}

.logo {
    width: 120px;
    padding: 10px;
}

.menu {
    z-index: 2;
    list-style: none;
    display: flex;
    gap: 20px;
}

.menu li {
    z-index: 2;
    position: relative;
}

.menu a {
    z-index: 2;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.8s ease;
}

.menu a:hover {
    color: #66c4ff;
}
.menu-items {
    display: flex;
    gap: 20px;
    margin-right: auto; /* Przesuwa menu w lewo */
    border-radius: 10px;
}

/* Dropdown menu */

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    min-width: 240px;
    padding: 15px;
    padding-left: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.6s ease;
    z-index: 2;
}
/* Usuń domyślne kropki listy */
.dropdown-content li {
    list-style: none; /* Usuwa domyślne kropki */
    position: relative;
    padding-left: 20px;
}

/* Dodaj strzałkę przed tekst w podmenu */
.dropdown-content li::before {
    content: "➤"; /* Symbol strzałki */
    color: #ffffff; /* Kolor strzałki */
    font-size: 14px; /* Rozmiar strzałki */
    margin-right: 10px; /* Odstęp między strzałką a tekstem */
    position: absolute;
    left: 0; /* Umieszcza strzałkę po lewej stronie */
    top: 50%;
    transform: translateY(-50%); /* Wyśrodkowuje strzałkę pionowo */
}

/* Dostosuj padding, aby tekst nie nachodził na strzałkę */
.dropdown-content a {
    padding-left: 25px; /* Przesunięcie tekstu w prawo, aby zmieściła się strzałka */
    display: inline-block;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
    border-radius: 10px;
}

.dropdown-content:hover {
    border-radius: 10px;
    top: 160%;
}

.dropdown-content a {
    color: #ffffff;
    padding: 10px 15px;
    display: block;
    text-decoration: none;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0);
    border-radius: 4px;
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

/* Tooltip-like arrow for dropdown */
.dropdown-content::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 20px;
    border-width: 0 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent rgba(0, 0, 0, 0.9) transparent;
}
.promo-section-video {
    padding: 13px 30px;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%; /* Sprawia, że sekcja zajmuje całą szerokość ekranu */
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
 -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
.promo-section {
    padding: 10px 30px;
    width: 100%; /* Sprawia, że sekcja zajmuje całą szerokość ekranu */
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-content {
    margin-bottom: 20px;
    background: url("bar-back3.png") no-repeat center center;
    background-size: cover; /* Umożliwia skalowanie obrazu w tle */
    padding: 250px 2px; /* Dopasuj padding do zawartości */
    width: 100%;
    max-width: 1600px; /* Maksymalna szerokość sekcji dla większych ekranów */
    background-color: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 7px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 1px 100px rgba(0, 0, 0, 0.9);
}
.promo-content2 {
    margin-top: 20px;
    margin-bottom: 20px;
    background: url("image/Img-Background/Apk-ad4.png") no-repeat center center;
    background-size: cover; /* Umożliwia skalowanie obrazu w tle */
    padding: 450px 2px; /* Dopasuj padding do zawartości */
    width: 100%;
    max-width: 1600px; /* Maksymalna szerokość sekcji dla większych ekranów */
    background-color: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 7px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 1px 100px rgba(0, 0, 0, 0.9);
}
.promo-content-f {
    margin-top: 0px;
    margin-bottom: 0px;
    background: url("bar-back10.png") no-repeat center center;
    background-size: cover; /* Umożliwia skalowanie obrazu w tle */
    padding: 1px 1px; /* Dopasuj padding do zawartości */
    width: 100%;
    max-width: 1600px; /* Maksymalna szerokość sekcji dla większych ekranów */
    background-color: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 7px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 1px 100px rgba(0, 0, 0, 0.9);
}
.promo-content3 {
    margin-top: 19px;
    margin-bottom: 12px;
    background: url("image/Img-Background/Apk-ad3.png") no-repeat center center;
    background-size: cover; /* Umożliwia skalowanie obrazu w tle */
    padding: 0px 0px; /* Dopasuj padding do zawartości */
    width: 100%;
    max-width: 1600px; /* Maksymalna szerokość sekcji dla większych ekranów */
    background-color: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 1px 100px rgba(0, 0, 0, 0.9);
}
.promo-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
}

.promo-content p {
    font-size: 24px;
    margin-bottom: 40px;
    color: #ffffff;
}

.promo-button {
    background-color: #009dff;
    color: white;
    padding: 15px 30px;
    font-size: 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.promo-button-m {
    background-color: #009dff;
    color: white;
    padding: 15px 30px;
    font-size: 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.promo-button:hover {
    background-color: #66c4ff;
}
.promo-button-m:hover {
    background-color: #66c4ff;
}
/* Sekcja z tekstem */
.content-section {
  padding: 10px 30px;
  background-color: #151c28;
  text-align: center;

  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);

  box-shadow: 0 0 64px rgba(0, 0, 0, 0.7);
  border-radius: 16px; /* opcjonalnie, dla zaokrągleń */
}

.content h2 {
    z-index: 2;
    font-size: 36px;
    margin-bottom: 20px;
    margin-left: 10%;
    margin-right: 10%;
}

.content p {
    z-index: 2;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    margin-left: 10%;
    margin-right: 10%;
}
/* Usuń domyślne podkreślenie i spraw, by link wypełniał całą szerokość kafelka */
.link-reset{
    display:block;     /* link = blok, więc obejmuje całą zawartość */
    text-decoration:none;
    color:inherit;     /* zachowaj kolory tekstu z kafelka */
}
/* Galeria */
.gallery-section {
    z-index: 2;
    padding: 20px 40px;
    text-align: center;
}

/* Efekt połysku */
.gallery-item3::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%; /* Start połysku poza kafelkiem */
    width: 200%; /* Pokrycie większe niż szerokość kafelka */
    height: 100%; /* Pokrycie całej wysokości */
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 1), transparent); /* Pasek połysku */
    transform: skewX(-30deg); /* Pochylenie połysku */
    animation: shine 2s infinite; /* Pętla animacji */
    pointer-events: none; /* Połysk nie blokuje interakcji */
}

/* Efekt połysku */
.gallery-item3::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%; /* Start połysku poza kafelkiem */
    width: 200%; /* Pokrycie większe niż szerokość kafelka */
    height: 100%; /* Pokrycie całej wysokości */
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 1), transparent); /* Pasek połysku */
    transform: skewX(-30deg); /* Pochylenie połysku */
    animation: shine 2s infinite; /* Pętla animacji */
    pointer-events: none; /* Połysk nie blokuje interakcji */
}

/* Połysk dla kafelka 1 */
.gallery-item1::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%; /* Start połysku poza kafelkiem */
    width: 200%; /* Pokrycie większe niż szerokość kafelka */
    height: 100%; /* Pokrycie całej wysokości */
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 1), transparent); /* Pasek połysku */
    transform: skewX(-30deg); /* Pochylenie połysku */
    animation: shine 2s infinite; /* Pętla animacji */
    pointer-events: none; /* Połysk nie blokuje interakcji */
        z-index: 0;
}

/* Połysk dla kafelka 2 */
.gallery-item2::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%; /* Start połysku poza kafelkiem */
    width: 200%; /* Pokrycie większe niż szerokość kafelka */
    height: 100%; /* Pokrycie całej wysokości */
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 1), transparent); /* Pasek połysku */
    transform: skewX(-30deg); /* Pochylenie połysku */
    animation: shine 2s infinite; /* Pętla animacji */
    pointer-events: none; /* Połysk nie blokuje interakcji */
}

.gallery-item-e:hover {
    transform: scale(1.05); /* Powiększenie na hover */
    box-shadow: 0 0 20px rgba(20, 142, 255, 0.1); /* Niebieskie podświetlenie */
}
.gallery-item3:hover {
    transform: scale(1.05); /* Powiększenie na hover */
    box-shadow: 0 0 20px rgba(20, 142, 255, 0.1); /* Niebieskie podświetlenie */
}
.gallery-item2:hover {
    transform: scale(1.05); /* Powiększenie na hover */
    box-shadow: 0 0 20px rgba(20, 142, 255, 0.1); /* Niebieskie podświetlenie */
}
.gallery-item1:hover {
    transform: scale(1.05); /* Powiększenie na hover */
    box-shadow: 0 0 20px rgba(20, 142, 255, 0.1); /* Niebieskie podświetlenie */
}
.gallery-item-b:hover {
    transform: scale(1);
    box-shadow: 0 0 20px rgb(20, 142, 255); /* Białe podświetlenie na hover */
}
.gallery-item:hover {
    transform: scale(1);
    box-shadow: 0 0 20px rgb(20, 142, 255); /* Białe podświetlenie na hover */
}
.gallery-item3 {
    border: 1px solid #3d95e7; /* Niebieski border */
    background:
        radial-gradient(circle, rgba(20, 142, 255, 0.2), rgba(20, 142, 255, 0.2)),
        url("CT.png") no-repeat center center; /* Gradient i obraz */
    background-size: cover;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    padding: 0px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Cień */
    position: relative; /* Dodane dla z-index */
    z-index: 1; /* Upewnij się, że jest poniżej dzieci */
    width: 100%;
    height: 300px;
    overflow: hidden; /* Ukrycie nadmiaru */
}
/* Styl dla kafelka 2 */
.gallery-item2 {
    border: 1px solid rgba(255, 149, 0, 1);
    background:
        radial-gradient(circle, rgba(255, 149, 0, 0.3), rgba(255, 51, 0, 0.3)),
        url("CC.png") no-repeat center center;
    background-size: cover;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    padding: 0px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Cień */
    position: relative; /* Dodane dla z-index */
    z-index: 1; /* Upewnij się, że jest poniżej dzieci */
    width: 100%;
    height: 300px;
    overflow: hidden; /* Ukrycie nadmiaru */
}
/* Styl dla kafelka 1 */
.gallery-item1 {
    border: 1px solid rgba(255, 149, 0, 1);
    background:
        radial-gradient(circle, rgba(255, 149, 0, 0.3), rgba(255, 51, 0, 0.3)),
        url("CR.png") no-repeat center center;
    background-size: cover;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    padding: 0px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Cień */
    position: relative; /* Dodane dla z-index */
    z-index: 1; /* Upewnij się, że jest poniżej dzieci */
    width: 100%;
    height: 300px;
    overflow: hidden; /* Ukrycie nadmiaru */
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Dynamiczne kolumny */
    gap: 20px;
    width: 100%;
    height: auto;
}

/* Styl dla złotego przycisku */
.gallery-item:nth-child(1) {
    border: 1px solid rgba(242, 208, 122, 0.3); /* Złoty border */
    background: radial-gradient(circle, rgba(255, 149, 0, 0.9), rgba(255, 51, 0, 0.3)); /* Złoty gradient */
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Cień */
    overflow: hidden;
    position: relative;
}
.gallery-item-b:nth-child(1) {
    border: 1px solid #3d95e7; /* Niebieski border */
    background: radial-gradient(circle, rgba(20, 160, 255, 1), rgba(20, 110, 255, 1)); /* Złoty gradient */

    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Cień */
    overflow: hidden;
    position: relative;
    z-index: 1; /* Upewnij się, że jest poniżej dzieci */
}

.gallery-item:nth-child(1):hover {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(242, 208, 122, 0.7); /* Złote podświetlenie na hover */
    background-color: #ffb433;
}

/* Styl dla niebieskiego przycisku */
.gallery-item:nth-child(3) {
    border: 1px solid #3d95e7; /* Niebieski border */

    border-radius: 4px;
    display: flex; /* Umożliwia centrowanie zawartości */
    align-items: center; /* Wyrównanie pionowe */
    justify-content: center; /* Wyrównanie poziome */
    padding: 0px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Cień */
    overflow: hidden;
    position: relative;
}

/* Hover efekt dla niebieskiego przycisku */
.gallery-item:nth-child(3):hover {
    transform: scale(1.05); /* Powiększenie na hover */
    box-shadow: 0 0 20px rgb(20, 142, 255); /* Niebieskie podświetlenie na hover */
}

/* Dla zawartości wewnątrz przycisku */
.gallery-item:nth-child(3) {
    color: #ffffff; /* Biały tekst dla kontrastu */
    text-align: center;
}

.gallery-item:nth-child(2) {
    border: 1px solid rgba(242, 208, 122, 0.3); /* Złoty border */
    background: radial-gradient(circle, rgba(255, 149, 0, 0.9), rgba(255, 51, 0, 0.3)); /* Złoty gradient */
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Cień */
    overflow: hidden;
    position: relative;
}

.gallery-item:nth-child(2):hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(242, 208, 122, 0.7); /* Złote podświetlenie na hover */
    background-color: #ffb433;
}

/* Styl dla pozostałych pustych */
.gallery-item {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 7px;
    padding: 40px;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 1px 100px rgba(0, 0, 0, 0.9);
    height: 100px;
}
.gallery-item-e {
    background: none; /* Usuń bezpośrednie tło */
    position: relative; /* Potrzebne dla pseudo-elementu */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 1px 100px rgba(0, 0, 0, 0.9);
    height: 300px;
    padding: 40px;
    border-radius: 7px;
    overflow: hidden; /* Ukryj nadmiar */
    transition:
        transform 0.3s,
        box-shadow 0.3s;

    /* Pseudo-element tła */
    &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background:
            radial-gradient(circle, rgba(20, 142, 255, 0.6), rgba(20, 142, 255, 0.5)),
            url("blue-back.webp") no-repeat center center; /* Zastosowanie obrazu */
        background-size: cover; /* Dopasowanie obrazu */
        filter: blur(30px); /* Stale rozmyte tło */
        z-index: 0; /* Umieść za treścią */
        border-radius: 7px; /* Dopasowanie zaokrąglonych rogów */
    }

    /* Połysk z animacją */
    &::after {
        content: "";
        position: absolute;
        top: 0; /* Pasek zaczyna od góry */
        left: -150%; /* Poza kafelkiem na start */
        width: 200%; /* Szerokość połysku */
        height: 100%; /* Pokrycie całej wysokości */
        background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent); /* Pasek połysku */
        z-index: 1; /* Umieść nad tłem, ale za treścią */
        transform: skewX(-30deg); /* Pochylenie połysku */
        animation: shine 2s infinite; /* Animacja połysku */
    }

    /* Treść w kafelku */
    > * {
        position: relative; /* Treść nad tłem i połyskiem */
        z-index: 2;
    }

    /* Kreska pod plusem */
    .divider {
        position: absolute;
        bottom: 66%; /* Pozycja kreski */
        left: 0;
        width: 100%; /* Szerokość kreski */
        height: 1px; /* Wysokość kreski */
        background: linear-gradient(to right, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)); /* Gradient kreski */
        z-index: 3; /* Umieść kreskę nad tłem */
    }

    /* Hover efekt */
    &:hover {
        transform: scale(1.05); /* Powiększenie na hover */
        box-shadow: 0 1px 120px rgba(20, 142, 255, 0.5);
    }
}

/* Divider - złota kreska */
.divider-gold {
    min-width: 2px;
    height: 100px; /* Dostosuj wysokość według potrzeby */
    background: linear-gradient(to left, rgba(242, 208, 122, 0.3), rgba(255, 149, 0, 0.9));
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
    margin: 0 1px;
}

/* Divider - niebieska kreska */
.divider-blue {
    min-width: 2px;
    height: 100px; /* Dostosuj wysokość według potrzeby */
    background: linear-gradient(to left, #173e63, #76bdff);
    box-shadow: 0 0 px rgba(0, 0, 0, 0.1);
    margin: 0 1px;
}

.divider-blue-bottom {
    min-width: 1px;
    height: 1px; /* Dostosuj wysokość według potrzeby */
    background: radial-gradient(rgba(100, 100, 100, 1), rgba(0, 0, 0, 0.1));
    box-shadow: 0 0 px rgba(0, 0, 0, 0.1);
    margin: 0 1px;
}

/* Tekst wewnątrz kafelka */
.card-text {
    justify-content: center;
    font-family: "Cambria Math", sans-serif;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 10px;
    z-index: 1;
}

.card-text p {
    grid-column: span 1;
    text-align: justify;
    font-weight: 200;
    margin: 0;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    line-height: 1.2;
}

.card-text h2 {
    margin: 1px;
    font-weight: 1000;
    font-size: 1.5rem;
    white-space: nowrap;
    line-height: 1.1;
}

.key {
    padding: 2px;
}

.game-logo {
    width: 50%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    border-radius: 4px 0 0 4px;
        z-index: 1;
}

/* Sekcja z przyciskami */
.buttons-section {
    padding: 60px;
    background-color: #0a0d15;
    text-align: center;
    overflow-x: auto; /* Pozwala na ręczne przewijanie poziome */
    white-space: nowrap; /* Zapobiega łamaniu elementów w nowej linii */
     -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.b-section {
    position: relative;
    padding: 10px;
    background-color: #0a0d15;
    text-align: center;
     -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.buttons {
    display: flex;
    gap: 20px;
    justify-content: start;
    white-space: nowrap; /* Elementy w jednej linii */

    overflow: hidden; /* Ukryj przewinięte elementy */
}

.buttons-bet {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.button {
    background-color: #009dff;
    color: white;
    padding: 10px 20px;
    font-size: 20px;
    text-decoration: none;
    border-radius: 7px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #66c4ff;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    cursor: pointer;
    display: none; /* Ukryj strzałki domyślnie */
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}

.b-section:hover .arrow {
    display: block; /* Pokaż strzałki po najechaniu */
}

/* Stopka */
.footer {
    background-color: rgba(0, 0, 0, 0.74);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 20px;
    text-align: center;
    color: white;

     -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.footer-repair {
    background-color: rgba(0, 0, 0, 0.74);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 30px;
    text-align: center;
    color: white;

 position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
     -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}






.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.footer p {
    margin: 0;
    padding: 10px;
    margin-left: 10%;
    margin-right: 10%;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 3;
    border-radius: 10px;
}

.hamburger span {
    background-color: white;
    border-radius: 10px;
    width: 30px;
    height: 3px;
    margin: 3px;
}

/* Styl dla przyciemnienia strony */
.modal {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    display: none;
    position: fixed;
    z-index: 4;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0); /* Zaczynamy od przezroczystości */
    overflow: hidden;
    opacity: 0; /* Zaczynamy od pełnej przezroczystości */
    transition:
        opacity 0.2s ease,
        background-color 0.5s ease; /* Animacja zaciemnienia */
}

.modal.show {
    display: block;
    background-color: rgba(0, 0, 0, 0.7); /* Docelowe przyciemnienie */
    opacity: 1; /* Zmiana na pełną widoczność */
}

/* Styl okna modalnego */
.modal-content {
    position: fixed;
    right: -500px;
    top: 50%;
    transform: translateY(-50%);
    background:
        radial-gradient(circle, rgba(0, 150, 255, 0.1), rgba(0, 0, 0, 1)),
        linear-gradient(rgba(0, 150, 255, 0.1), rgba(0, 0, 0, 0)),
        url("bar-back0-d.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover; /* lub: 100% 100% */

    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);

    width: 500px;
    height: 100%;
    padding: 68px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    transition: right 0.2s ease;
    overflow-y: auto;
    border-left: 1px solid rgba(100, 100, 100, 0.1);
}


.modal.show .modal-content {
    right: 0; /* Wsunięcie okna modalnego */
}

.modal-content-tex-main {
    padding: 30px;
    text-align: center;
}

/* Stopka */
.footer2 {
    bottom: 0;
    padding: 20px;
    text-align: center;
}

.footer2 p2 {
    text-align: center;
    font-size: 12px;
    margin-bottom: 20px;
    color: white;
}

.footer2 p3 {
    text-align: left;
    font-size: 16px;
    margin-bottom: 20px;
    color: white;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: red;
}

/* Styl dla formularza i jego elementów */
input[type="email"],
select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Styl dla przycisków w oknie */
.modal-buttons {
    display: flex;
    justify-content: space-between;
}

.promo-button {
    background-color: #009dff;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cancel-button {
    background-color: #ff6666;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cancel-button:hover {
    background-color: #ff9797;
}

/* Audio Player */
.audio-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    height: auto;
    margin: 20px auto;
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
    background: linear-gradient(
        45deg,
        /* Obrót gradientu o 45 stopni */ rgba(0, 157, 255, 1) 0%,
        /* Punkt 1: pełna czerń */ rgba(0, 157, 255, 0.7) 20%,
        /* Punkt 2: półprzezroczysty */ rgba(10, 40, 255, 0.5) 60%,
        /* Punkt 3: jaśniejszy szary, bardziej przezroczysty */ rgba(0, 157, 255, 1) 100%
            /* Punkt 4: powrót do pełnej czerni */
    );
    border: 1px solid rgba(0, 157, 255, 0.9);
    padding: 20px;
    border-radius: 7px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    flex-shrink: 0; /* Zabezpiecza przed skalowaniem */
    margin-right: 20px;
}

.audio-image {
    width: 200px;
    height: auto;
    margin-bottom: 10px;
    display: block;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 70%, black 80%, transparent 100%);
    filter: saturate(1);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 70%, transparent 100%);
}

.audio-player:hover .audio-image {
    filter: saturate(1.3); /* Zwiększona saturacja na hover */
}

.audio-buttons-container {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.audio-wrapper {
    text-align: center;
}

.audio-button {
    margin: 10px;
    background-color: #009dff;
    border: none;
    padding: 5px;
    border-radius: 7px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    outline: none;
    position: relative;
    transition: background-color 0.3s ease;
}

.audio-button .icon-play {
    display: inline;
    font-size: 24px;
    color: white;
}

.audio-button .icon-pause {
    display: none;
    font-size: 24px;
    color: white;
}

.audio-button:hover {
    background-color: #66c4ff;
}

.audio-button.playing {
    background-color: #ff3d3d;
}

.audio-button.playing:hover {
    background-color: #ff6666;
}

.audio-button.playing .icon-play {
    display: none;
}

.audio-button.playing .icon-pause {
    display: inline;
}

.audio-wrapper p {
    margin-top: 10px;
    color: white;
    font-size: 16px;
}

.hidden-content {
    display: none;
}

.show-more-btn {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #009dff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.show-more-btn:hover {
    background-color: #66c4ff;
}

/* Responsive settings */
@media (max-width: 968px) {
    .menu-items {
        display: none;
    }
    .hamburger {
        display: flex;
    }

    .menu-items.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: rgba(0, 0, 0, 0.9);
        width: 100%;
        padding: 20px;
    }
        .grid-fold2 {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(-4px, 1fr));
        gap: 1rem;
        align-items: start;
        margin: auto;
    }
}

@media (min-width: 1468px) {
    .gallery {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr; /* pięć kolumn */
        gap: 20px;
        min-width: 100%;
        height: auto;
    }
}

@media (max-width: 1468px) and (min-width: 900px) {
    .gallery {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr; /* Trzy kolumny */
        gap: 20px;
        width: 100%;
        height: auto;
    }
}

@media (max-width: 1000px) and (min-width: 600px) {
    .gallery {
        display: grid;
        grid-template-columns: 1fr 1fr; /* Dwie kolumny */
        gap: 20px;
        width: 100%;
        height: auto;
    }
        .grid-fold2 {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(-4px, 1fr));
        gap: 1rem;
        align-items: start;
        margin: auto;
    }
}

@media (max-width: 629px) {
    .gallery {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        height: auto;
    }
    .grid-fold2 {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(-4px, 1fr));
        gap: 1rem;
        align-items: start;
        margin: auto;
    }
    .gallery-item {
        -webkit-backdrop-filter: blur(10px);
        border-radius: 7px;
        padding: 40px;
        transition:
            transform 0.3s,
            box-shadow 0.3s;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 1px 100px rgba(0, 0, 0, 0.9);
        height: 100px;
    }
    .buttons-section {
        width: 100%;
        padding: 60px;
        background-color: #0a0d15;
        text-align: center;
    }
}
/* ==========  HERO / 3-D CAROUSEL  ========== */
.promo-carousel{
  position:relative;           /* potrzebne dla strzałek */
  width: 100%;
  max-width:2000px;
  height:788px;
  margin:0px auto;            /* środek strony */
    margin-top: -17px;
    
  overflow:hidden;
    padding: 32px;
  perspective:2000px;
    
    
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);    
}

.promo-track{
  position:relative;
  height:100%;
  list-style:none;
  margin:0;
  padding:0;
    
}

.promo-slide{
  position:absolute;
  inset:0;
  width:80%;                   /* szerokość środkowego */
  margin:auto;
  transition:transform .8s,opacity .8s;
  transform-origin:center center;
  opacity:0;                   /* domyślnie ukryte */
  pointer-events:none;
    
    
}
.promo-slide img{
  width:100%;height:100%;
  object-fit:cover;
  border-radius:12px;
  filter:brightness(1);
    border:1px solid rgba(255,255,255,.1);
  box-shadow:0 1px 100px rgba(0,0,0,.9);  
}

/* — centralny, lewy, prawy — */
.promo-slide.center{
  transform:translateX(0) scale(1) rotateY(0deg);
  opacity:1;z-index:3;pointer-events:auto;
    
}
.promo-slide.left{
  transform:translateX(-60%) scale(.8) rotateY(30deg);
  opacity:.5;z-index:2;
}
.promo-slide.right{
  transform:translateX(60%) scale(.8) rotateY(-30deg);
  opacity:.5;z-index:2;
}

/* overlay widoczny tylko w slajdzie .center */
.promo-overlay{
  position:absolute; inset:0;
  display:flex; flex-direction:column; justify-content:center; align-items:center;
  text-align:center; color:#fff;
  backdrop-filter:blur(0px);
  background:rgba(0,0,0,.0);
  padding:40px;border-radius:12px;
    
}
.promo-slide:not(.center) .promo-overlay{display:none;}

.promo-arrow{
  position:absolute; top:50%; transform:translateY(-50%);
  font-size:3rem; line-height:1; color:#fff;
  background:rgb(0, 166, 255);
  border:none; border-radius:12px;
  padding:4px 18px; cursor:pointer;
  transition:background .3s;
}
.promo-arrow:hover{background:rgba(255, 255, 255, 0.25);}
.promo-prev{left:8px;}
.promo-next{right:8px;}
/* ============================================ */

.grid-fold2{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(2px,1fr));
  gap:1rem;

  /* to jest skrót: align-items:center + justify-items:center */
  place-items:center;        
}


.guzior{
    max-width: 100%;
    display: center;
    text-align: center;
    margin: 21px;
}


/* === NOWE – reset stylu linku === */
a.guzior{
    /* link wygląda jak zwykły kafelek */
    display: block;          /* cały „kafelek” klikalny */
    color: inherit;          /* zero niebieskiego */
    text-decoration: none;   /* zero podkreślenia */
    cursor: pointer;         /* żeby UI wskazywał, że to klikalne */
}

/* stan hover/focus/active – zostawiasz, co chcesz.
   Tu lekka zmiana jasności zamiast niebieskiej obwódki */
a.guzior:hover,
a.guzior:focus{
    filter: brightness(2);
    outline: none;           /* usuwa domyślną niebieską ramkę */
}
.tek {
  font-size: 28px;
  color: white;
  font-weight: bold;
  text-align: center;
  margin-top: 3px;
}

.pomoc-blok2 {
  text-align: left;
  margin-left: 0;
  padding-left: 0;
      max-width: 720px;
  
  padding: 55px;


  border-radius: 12px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #ffffff;    
}
.pomoc-blok {
  max-width: 720px;
  
  padding: 55px;


  border-radius: 12px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #ffffff;
}

.pomoc-blok h2 {
  font-size: 24px;
  margin-bottom: 17px;
  color: #ffffff;
}

.pomoc-blok p {
  margin-bottom: 17px;
}

.pomoc-blok ul {
  margin: 10px 0 20px 20px;
  padding-left: 20px;
  list-style-type: disc;
}
.team-board{
    max-width: 91%;
    margin: 24px;
    border-radius: 14px;
}

.team-board2{
    max-width: 69%;
    margin: 28px;
    border-radius: 14px;
}
@media (max-width: 701px) {
    .grid-fold2 {
        display: block;
        grid-template-columns: repeat(auto-fit, minmax(-5px, -1fr));
        gap: 0rem;
        align-items: start;
       
    }
    .promo-slide{
  position:absolute;
  inset:0;
  height: 97%;
  width:80%;                   /* szerokość środkowego */
  margin:auto;
  transition:transform .8s,opacity .8s;
  transform-origin:center center;
  opacity:0;                   /* domyślnie ukryte */
  pointer-events:none;
    
    
}
@media (max-width: 525px) {    
   .modal-content {
    position: fixed;
    right: -500px; /* Początkowe miejsce poza ekranem */
    top: 50%;
    transform: translateY(-50%);
     background:
        radial-gradient(circle, rgba(0, 150, 255, 0.1), rgba(0, 0, 0, 1)),
        /* Radialny gradient */ linear-gradient(rgba(0, 150, 255, 0.1), rgba(0, 0, 0, 0)),
        /* Liniowy gradient */ url("bar-back0-d.png") no-repeat center center; /* Obraz tła */
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px); /* Efekt rozmycia */
    width: auto;
    height: 100%;
    padding: 31px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    transition: right 0.2s ease; /* Animacja wsuwania okna */
    overflow-y: auto; /* Pozwala na przewijanie pionowe */
    border-left: 1px solid rgba(100, 100, 100, 0.1); /* Border po lewej */
    }
    .promo-slide{
  position:absolute;
  inset:0;
  height: 88%;
  width:80%;                   /* szerokość środkowego */
  margin:auto;
  transition:transform .8s,opacity .8s;
  transform-origin:center center;
  opacity:0;                   /* domyślnie ukryte */
  pointer-events:none;
    
    
}
@media (max-width: 350px) {    
   .modal-content {
    position: fixed;
    right: -500px; /* Początkowe miejsce poza ekranem */
    top: 50%;
    transform: translateY(-50%);
     background:
        radial-gradient(circle, rgba(0, 150, 255, 0.1), rgba(0, 0, 0, 1)),
        /* Radialny gradient */ linear-gradient(rgba(0, 150, 255, 0.1), rgba(0, 0, 0, 0)),
        /* Liniowy gradient */ url("bar-back0-d.png") no-repeat center center; /* Obraz tła */
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px); /* Efekt rozmycia */
    width: auto;
    height: 100%;
    padding: 7px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    transition: right 0.2s ease; /* Animacja wsuwania okna */
    overflow-y: auto; /* Pozwala na przewijanie pionowe */
    border-left: 1px solid rgba(100, 100, 100, 0.1); /* Border po lewej */
    }    