@import url(https://fonts.googleapis.com/css?family=Open+Sans:regular,500,600,700,800&display=swap);
*,
*::before,
*::after {
    font-family: "Times New Roman", Times, Arial, serif sans-serif;
    font-size: 16px;
    box-sizing: border-box;
    color: #ffffff;
}

body {
    width: 100%;
    background-color: #0f212e;
    background-repeat: no-repeat repeat-y;
    background-position: center;
    background-size: cover;
    text-rendering: optimizeSpeed;
    min-height: 100vh;
    scroll-behavior: smooth;
}
body.lock {
    overflow-y: hidden;
}
body,
html {
    padding: 0;
    height: 100%;
    margin: 0;
    font-family: "Open Sans", sans-serif;
}
header {
    background: #0f212e;
    display: flex;
    margin: 0 auto;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    padding: 20px 0;
}
header a {
    text-decoration: none;
    font-size: 18px;
}
header img {
    border: none;
}
header .container {
    max-width: 90vw;
    padding: 0 16px;
    margin: 0 auto;
    height: 100%;
}
header .logo {
    flex: 0 0 100px;
}
header .container .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .flex .item,
.btns {
    display: flex;
    align-items: center;
}
header .flex .item .list ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 50px;
    margin: 0;
    padding: 0;
}
header .flex .item .list ul li {
    font-weight: 600;
    font-size: 20px;
    position: relative;
}
header .flex .item .list ul li a:hover {
    color: #5b95ff;
}
header .flex .item .list ul li::after {
    content: "";
    position: absolute;
    top: 100%;
    left: calc(50% - 53px);
    width: 106px;
    height: 2px;
    background: #5b95ff;
    transform: scaleX(0);
}
header .flex .item .list ul li:hover::after {
    transform: scaleX(1);
    transition-duration: 0.2s;
}
header .flex .item:nth-child(2) {
    gap: 50px;
}
header .flex .item,
.btns {
    gap: 20px;
}
header .burger {
    display: none;
}
header .dropdown {
    position: relative;
    cursor: pointer;
}
header .dropdown span::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.5em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
}
header .flex .item .list .dropdown-menu {
    position: absolute;
    top: 30px;
    left: 0;
    width: 200px;
    padding: 20px;
    background-color: #e1ecfb;
}
header .flex .item .list .dropdown ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
header .flex .item .list .dropdown ul li a {
    font-size: 14px;
}
header .flex .item .list .dropdown li::after {
    width: auto;
}
footer {
    background: #0f212e;
    min-height: 110px;
    text-align: center;
    font-size: 4rem;
    font-weight: bold;
    vertical-align: middle;
    padding-top: 44px;
    display: flex;
    height: auto;
	border-top: 2px solid #6b6363;
}

img {
    border-style: none;
    max-width: 100%;
    -ms-interpolation-mode: bicubic;
    display: flex;
    position: relative;
    margin: 0 auto;
    border-radius: 20px;
}

h1 {
    font-size: 2rem;
    font-weight: bold;
    padding-top: 0px;
    color: #ffffff;
}
h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
}
h3,
h4,
h5,
h6 {
    font-weight: bold;
    margin: 0;
    padding: 0;
}
p {
    text-align: justify;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

a {
    text-decoration: underline;
}
a:hover {
    text-decoration: none;
}
.middle-text {
    text-align: center;
}
ul,
ol,
li {
    text-align: left;
}

ul[class],
ol[class] {
    padding: 0;
    list-style: none;
}
.betonred-casino-body {
    max-width: 1200px;
    padding-top: 5px;
    background-color: #0f212e;
    display: block;
    align-content: center;
    margin: 0 auto;
    text-align: center;
    margin-top: 0px;
}

/* Nowoczesny styl dla list punktowych */
.custom-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.custom-list li {
  position: relative;
  padding: 12px 15px 12px 45px;
  margin-bottom: 12px;
  background-color: rgba(3, 242, 149, 0.07);
  border-radius: 10px;
  transition: all 0.3s ease;
  border-left: 4px solid #03f295;
}

.custom-list li:hover {
  background-color: rgba(3, 242, 149, 0.12);
  transform: translateX(5px);
}

.custom-list li::before {
  position: absolute;
  left: 15px;
  color: #03f295;
  font-weight: bold;
  font-size: 18px;
  top: 50%;
  transform: translateY(-50%);
}

/* Responsywność listy */
@media only screen and (max-width: 760px) {
  .custom-list li {
    padding: 10px 10px 10px 40px;
    font-size: 14px;
  }
  
  .custom-list li::before {
    left: 12px;
    font-size: 16px;
  }
}

/* Stylizacja tabeli i responsywność */
table {
  width: 100%;
  border-collapse: collapse;
  background-color: #01b44c;
  color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  margin: 20px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

th, td {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px;
  text-align: left;
  transition: background-color 0.3s ease;
}

th {
  background-color: rgba(0, 0, 0, 0.2);
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

tr:hover td {
  background-color: rgba(0, 0, 0, 0.1);
}

tr:nth-child(odd) td {
  background-color: rgba(0, 0, 0, 0.05);
}

td:first-child {
  font-weight: bold;
  border-left: none;
}

td:last-child {
  border-right: none;
}

tr:first-child th:first-child {
  border-top-left-radius: 10px;
}

tr:first-child th:last-child {
  border-top-right-radius: 10px;
}

tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}

tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

/* Responsywność tabeli z przewijaniem tylko w poziomie */
@media only screen and (max-width: 760px) {
  .table-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    margin: 20px 0;
    padding-bottom: 10px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .table-container::after {
    content: "← przewiń →";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(1, 180, 76, 0.8);
    color: white;
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 10px;
    pointer-events: none;
    opacity: 0.7;
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
  }
  
  .table-container table {
    margin: 0;
    min-width: 600px;
    box-shadow: none;
    table-layout: fixed;
  }
  
  .table-container td, 
  .table-container th {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  table {
    font-size: 12px;
  }
  
  th, td {
    padding: 8px;
  }
  
  th {
    font-size: 12px;
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.3);
  }
}

@media (hover: none) {
  tr:hover td {
    background-color: inherit;
  }
  
  td:active, th:active {
    background-color: rgba(0, 0, 0, 0.2);
  }
}

/* Dodatkowe ulepszenia dla urządzeń dotykowych */
@media (hover: none) {
  tr:hover td {
    background-color: inherit; /* Wyłącz efekt hover na urządzeniach dotykowych */
  }
  
  td:active, th:active {
    background-color: rgba(0, 0, 0, 0.2); /* Zamiast tego, efekt przy dotknięciu */
  }
}



.betonred-casino-btn1 {
    border: 0px;
    border-radius: 33px;
    height: 34px;
    min-width: 70px;
    width: auto;
    background-color: #03f295;
    text-align: center;
    float: right;
    cursor: pointer;
    touch-action: manipulation;
    padding-left: 5px;
    padding-right: 5px;
}
.betonred-casino-btn2 {
    border: 0px;
    border-radius: 33px;
    height: 34px;
    min-width: 70px;
    width: auto;
    background-color: #000000;
	border: 1px solid #b3b3b3;
    text-align: center;
    float: right;
    cursor: pointer;
    touch-action: manipulation;
    padding-left: 5px;
    padding-right: 5px;
}
.btn1 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    height: 100%;
    font-size: small;
    color: #000000;
    font-weight: bold;
}
.btn2 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    height: 100%;
    font-size: small;
    color: #ffffff;
    font-weight: bold;
}
.btn3 {
  padding: 14px 28px;
  background: linear-gradient(135deg, #03f295 0%, #00c476 100%);
  color: #000000;
  font-size: 15px;
  border-radius: 50px;
  max-width: 300px;
  margin: 20px auto;
  position: relative;
  box-shadow: 0 5px 15px rgba(3, 242, 149, 0.3);
  text-align: center;
}



.link {
    text-decoration: none;
}

.flag {
    display: block;
    max-width: 40px;
    float: right;
    margin-right: 10px;
    margin-top: 20px;
}
.flag img {
    border-radius: 5px;
    border: #e1ecfb solid 5px;
}
.betonred-casino-developers img {
    border-radius: 15px;
    width: 100%;
    border: none;
}
.betonred-casino-partners img {
    border-radius: 15px;
    width: 100%;
    border: none;
}
.betonred-casino-navigation {
    margin-left: 30px;
}
.betonred-casino-content {
    /*margin: 0 30px 0 30px;
    word-wrap: break-word;*/

    margin: 0 15px; /* Zmniejszone marginesy boczne na urządzeniach mobilnych */
    word-wrap: break-word;
    overflow-x: hidden; /* Zapobiega poziomemu przewijaniu */
    max-width: 100%; /* Ogranicza szerokość do 100% dostępnej przestrzeni */
}

.betonred-casino-bunner {
    margin: 0 auto;
}
.betonred-casino-bunner img {
    border-radius: 15px;
}
.kopy {
    margin: 0 auto;
}

@media (max-width: 1199px) {
    .header .burger {
        display: block;
        position: relative;
        width: 30px;
        height: 20px;
        z-index: 3;
    }
    .header .burger::after,
    .header .burger::before {
        content: "";
    }
    .header .burger::after,
    .header .burger::before,
    .header .burger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #dad4d6;
        border-radius: 10px;
        transition: all 0.3s ease 0s;
    }
    .header .burger::before {
        top: 0;
    }
    .header .burger::after {
        bottom: 0;
    }
    .header .burger span {
        top: 9px;
    }
    .header .burger.active::before {
        transform: rotate(45deg);
        top: 9px;
    }
    .header .burger.active::after {
        transform: rotate(-45deg);
        bottom: 9px;
    }
    .header .burger.active span {
        transform: scale(0);
    }
    .header .list {
        display: none;
    }
    .header .btns {
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 3;
  align-items: center;
}
    header .flex .item .list .dropdown span {
        font-size: 24px;
    }
    header .flex .item .list .dropdown ul li a {
        font-size: 16px;
    }
    header .flex .item,
    .btns {
        justify-content: center;
    }
    .btn1,
    .btn2 {
        font-size: 16px;
    }
    .header .list.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        background-color: #e1ecfb;

        ul {
            flex-direction: column;
        }
    }
    .header .logo {
        position: relative;
        z-index: 3;
    }
    header .flex .item .list ul li a {
        font-size: 24px;
    }
    header .container {
        max-width: 100%;
    }
}
