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 */
}



/* 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;
}

.team-board{
    max-width: 125%;
    margin: 24px;
    border-radius: 14px;
}

.team-board2{
    max-width: 92%;
    margin: 24px;
    border-radius: 14px;
}

.grid-fold2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap:1rem;
  align-items: start;
  
}
.grid-fold3 {
  display: center;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap:1rem;
  align-items: start;
  
}

.grid-fold{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    place-items: center;
}

.fold{
    text-align: center;
    padding: 0rem;
}

.fold img{
    max-width: 100%;
    height: auto;
}

/* === NOWE – reset stylu linku === */
a.fold{
    /* 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.fold:hover,
a.fold:focus{
    filter: brightness(2);
    outline: none;           /* usuwa domyślną niebieską ramkę */
}









#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;
    }
}
.baner{
    background-color: rgb(0, 156, 255, 0.2);
    border-radius: 8px;
    margin:  0;
    
}





.regulamin-container {
    
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 20px;
    padding: 20px 30px;
    max-width: 1600px;
    margin: auto;
}

.regulamin-sidebar {
    
    background-color: rgba(0, 0, 0, 0.0);
    padding: 10px;
    border-radius: 10px;
    position: sticky;
    top: 90px;
    height: fit-content;

    border: 0px solid rgba(255, 255, 255, 0.1);
    
}

.regulamin-sidebar ul {
    list-style: none;
    padding-left: 0;
    border: 0px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 9px;
}

.regulamin-sidebar li {
    margin-bottom: 10px;
}

.regulamin-sidebar a {
    color: #00aaff;
    text-decoration: none;
    font-weight: bold;
}

.regulamin-sidebar a:hover {
    text-decoration: underline;
    
}

.regulamin-content {
    background-color: rgba(0, 0, 0, 0.0);
    padding: 10px;
    border-radius: 10px;
    border: 0px solid rgba(255, 255, 255, 0.1);
}
.regulamin-content2 {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 10px;
    
}
.regulamin-content-in {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 10px;
}
.regulamin-content h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 14px;
}

details {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 12px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    margin: 10px;
}

summary{                 /* przesuwamy tekst, by zrobić miejsce */
  position:relative;
  padding-left:28px;     /* odstęp na ikonę */
}

summary::-webkit-details-marker, /* Safari/Chrome */
summary::marker{                 /* Firefox */
  display:none;                  /* chowamy natywny znacznik */
}

summary::before{         /* nasza strzałka */
  content:"\25B6";       /* ►  (trójkąt prawo) */
  position:absolute;
  left:10px; top:50%;
  translate:0 -50%;
  font-size:0.9rem;
  color:#fff;
  transition:transform .35s ease;
}

details[open] summary::before{
  transform:rotate(90deg);   /* obrót w dół = ▼ */
}

details ol {
    margin-top: 10px;
    padding-left: 20px;
    color: #ddd;
}

@media (max-width: 768px) {
    .regulamin-container {
        grid-template-columns: 1fr;
    }

    .regulamin-sidebar {
        position: relative;
        top: 0;
    }
    
}

ol li {
    list-style-type: decimal;
    margin-left: 51px;
    margin-top: 1em;
    margin-bottom: 6px;
    padding-right: 29px;
}

/* === HIDE native disclosure triangle completely ============== */
summary::-webkit-details-marker{
  display:none !important;    /* Chrome / Edge */
}

summary::marker{              /* Firefox */
  content:"";                 /* pusty = brak strzałki */
  font-size:0;                /* na wszelki wypadek */
}

/* baza: schowane */
.details-body{
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .45s ease, opacity .45s ease;
}

/* po otwarciu <details> */
details[open] .details-body{
  max-height: 800px;   /* wystarczająco dużo, by zmieścić treść */
  opacity: 1;
}

/* możesz dodać lekki easing */
details[open] .details-body{
  transition-timing-function: cubic-bezier(.2,.6,.2,1);
}

.guzior{
    max-width: 100%;
    display: center;
    text-align: center;
    margin: 20px;
}


/* === 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: 50px;
}


.pomoc-blok {
  max-width: 800px;
  
  padding: 36px;


  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: 20px;
  color: #ffffff;
}

.pomoc-blok p {
  margin-bottom: 16px;
}

.pomoc-blok ul {
  margin: 10px 0 20px 20px;
  padding-left: 20px;
  list-style-type: disc;
}

.server-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Arial, sans-serif;
  font-size: 18px;
}

.server-label {
  font-weight: bold;
  margin: 0;
}

.loading-logo p2 {
  color: #00ff00;
  margin: 0;
}

.fox{
    display: flex;
    z-index: 5;
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
    
   
}
.fox-content{
    z-index: 5;
    padding: 14%;
    max-width: 100%; 
    max-height: 100%; 
}



@media (max-width: 1200px) {
        .fox{
            display: flex;
            z-index: 5;
            max-width: 53%;
            margin-left: auto;
            margin-right: auto;


        }
        .fox-content{
            z-index: 5;
    padding: 14%;
            max-width: 100%; 
            max-height: 100%; 
        }
}
@media (max-width: 1000px) {
        .fox{
            display: flex;
            z-index: 5;
            max-width: 75%;
            margin-left: auto;
            margin-right: auto;


        }
        .fox-content{
            z-index: 5;
     padding: 14%;
            max-width: 100%; 
            max-height: 100%; 
        }
}
@media (max-width: 900px) {
        .fox{
            display: flex;
            z-index: 5;
            max-width: 98%;
            margin-left: auto;
            margin-right: auto;


        }
        .fox-content{
            z-index: 5;
    padding: 14%;
            max-width: 100%; 
            max-height: 100%; 
        }
}
@media (max-width: 600px) {
        .fox{
            display: flex;
            z-index: 5;
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;


        }
        .fox-content{
            z-index: 5;
    padding: 0%;
            max-width: 100%; 
            max-height: 100%; 
        }
}