*,
*::before,
*::after {
    font-family: 'Times New Roman', Times, Arial, serif sans-serif;
    font-size: 16px;
    box-sizing: border-box;
    color: #fff;
}

body {
    width: 100%;
    background-color: #919191;
    background-image: url("azino-background.jpg");
    background-repeat: repeat-y;
    background-position: center;
    background-size: cover;
    text-rendering: optimizeSpeed;
    min-height: 100vh;
    scroll-behavior: smooth;
}

body,
html {
    padding: 0;
    height: 100%;
    margin: 0;
}

header {
    background-color: #0c0c0c;
    height: 80px;
    display: flex;
    margin: 0 auto;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

footer {
    background-color: #0c0c0c;
    height: 70px;
    text-align: center;
    font-size: 4rem;
    font-weight: bold;
    vertical-align: middle;
    padding-top: 20px;
}

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

h1 {
    font-size: 2rem;
    font-weight: bold;
}

h2 {
    font-size: 1.5rem;
    font-weight: bold;
}

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;
}

ul, ol, li {
    text-align: left;
}

ul[class],
ol[class] {
    padding: 0;
    list-style: none;
}

.pin-up-body {
    max-width: 1200px;
    background-color: #161421;
    display: block;
    align-content: center;
    margin: 0 auto;
    text-align: center;
}

.pin-up-table {
    border: 5px solid #787878;
    background-color: #0c0c0c;
    border-radius: 15px;
    padding: 5px;
    display: inline-flex;
    max-width: 1000px;
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
}

.pin-up-table tr td {
    border: 5px solid #787878;
    background-color: #0c0c0c;
    border-radius: 15px;
    padding: 5px;
}

.logo img {
    border: 40;
    border-radius: 15px;
    display: block;
    max-width: 100px;
    float: left;
    margin-left: 10px;
    margin-top: 30px;
}

.pin-up-btn1 {
    border: 0;
    border-radius: 5px;
    margin: 15px 5px 5px 15px;
    font-weight: bold;
    height: 50px;
    width: 70px;
    background-color: #ff3939;
    text-align: center;
    float: right;
    cursor: pointer;
    touch-action: manipulation;
}

.pin-up-btn2 {
    border: 0;
    border-radius: 5px;
    margin: 15px 5px 5px 5px;
    font-weight: bold;
    height: 50px;
    width: 105px;
    background-color: #aea800;
    text-align: center;
    float: right;
    cursor: pointer;
    touch-action: manipulation;
}

.btn {
    padding-top: 12px;
    display: block;
    height: 100%;
    font-weight: bold;
}

.link {
    text-decoration: none;

}

.btn:hover {
    border: 0;
    border-radius: 5px;
    background-color: rgb(255, 140, 0);
}

.flag {
    display: block;
    max-width: 40px;
    float: right;
    margin-right: 10px;
    margin-top: 20px;
}

.flag img {
    border-radius: 5px;
}

.pin-up-developers {
    border-radius: 0;
}

.pin-up-partners img {
    border: 0;
    border-radius: 5px;
}

.pin-up-navigation {
    margin-left: 30px;
}

.pin-up-content {
    margin: 0 30px 0 30px;
    word-wrap: break-word;
}

.pin-up-bunner {
    margin-left: 30px;
    margin-right: 30px;
}

.pin-up-bunner img {
    border-radius: 15px;
}

.img-fig {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.fig-img img {
    border-radius: 14px;
    margin: 30px auto;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 15px;
}

.responsive-table {
    width: 100%;
    border-collapse: collapse;
}

.responsive-table th,
.responsive-table td {
    padding: 5px 5px;
    border: 1px solid #ddd;
    text-align: left;
}

.responsive-table th {
    background-color: #161b43;
    font-weight: bold;
    color: white;
}

ul.custom-list {
    list-style: none;
    padding: 0;
    margin: 0;

}

ul.custom-list li {
    margin: 10px 0;
    padding: 5px 5px 5px 40px;
    background: #161b43;
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: white;
    border-radius: 10px;
    position: relative;
}

ul.custom-list li::before {
    content: '🎰';
    position: absolute;
    left: 10px;

    font-size: 20px;
    top: 50%;
    transform: translateY(-50%);
}

ol.custom-list {
    counter-reset: custom-counter;
    list-style: none;
    padding: 0;
    margin: 0;
}

ol.custom-list li {
    counter-increment: custom-counter;
    margin: 15px 0;
    padding: 5px 5px 5px 40px;
    background: #161b43;
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: white;
    border-radius: 10px;
    position: relative;
}

ol.custom-list li::before {
    content: counter(custom-counter) ". ";
    position: absolute;
    left: 10px;

    font-size: 20px;
    top: 50%;
    transform: translateY(-50%);
}

ul.custom-list li,
ol.custom-list li {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

ul.custom-list li:hover,
ol.custom-list li:hover {
    transform: scale(1.05);
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid #161b43;
    color: #161b43;
}




