/* tables */

.article--inner table {
    background: #fff;
    -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3);
    border: 1px solid #e5e5e5;
    width: 100%;
    margin-bottom: 70px;
}
.article--inner table th,
.article--inner table td {
    padding: 20px;
    text-align: left;
}
.article--inner table th {
    border-bottom: 1px solid #e5e5e5;
    font-size: 20px;
    color: #999;
    font-weight: normal;
}
.article--inner table td {
    font-size: 14px;
    color: #4d4d4d;
}
.article--inner .even td,
.article--inner tr:nth-child(even) td {
    background: #f4f4f4;
}

.mobile-top--button {
    display: inline-block;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
}

.mobile-top--button span {
    display: block;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s ease;
}


.content-new-custom .casino-section {
    background: radial-gradient(circle at top left, #1f1f1f, #000);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.2), 0 0 15px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

/* Неоновий орнамент зверху */
.content-new-custom .casino-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    width: 60%;
    height: 4px;
    background: linear-gradient(to right, #ff0000, #ffcc00, #00ffcc);
    transform: translateX(-50%);
    box-shadow: 0 0 10px #ffd700, 0 0 20px #ff0000;
}

/* Заголовок в секції */
.content-new-custom .casino-section h2 {
    font-size: 2rem;
    text-align: center;
    color: #ffe600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px dashed rgba(255, 255, 255, 0.2);
    padding-bottom: 0.5rem;
}

/* Текст і кнопки */
.content-new-custom .casino-section p {
    font-size: 1.125rem;
    color: #e0e0e0;
    text-align: center;
}

.content-new-custom .casino-section .btn-gamble {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(145deg, #ff0000, #ffa500);
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 2rem;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 0 10px #ff5722;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.content-new-custom .casino-section .btn-gamble:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #ff5722;
}
@media (max-width: 768px) {
    .content-new-custom .casino-section {
        padding: 1.2rem;
    }

    .content-new-custom .casino-section h2 {
        font-size: 1.5rem;
    }

    .content-new-custom .casino-section p {
        font-size: 1rem;
    }

    .content-new-custom .casino-section .btn-gamble {
        padding: 0.6rem 1rem;
        font-size: 0.95rem;
    }
}
.content-new-custom h1,
.content-new-custom h2,
.content-new-custom h3 {
    color: #ffd700;
    font-weight: 700;
    text-shadow: 0 0 6px rgba(255, 215, 0, 0.6);
    margin-bottom: 1rem;
}

.content-new-custom h1 {
    font-size: 2.5rem;
}

.content-new-custom h2 {
    font-size: 2rem;
}

.content-new-custom h3 {
    font-size: 1.5rem;
}

/* Параграфи */
.content-new-custom p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #e0e0e0;
}

/* Списки */
.content-new-custom ul,
.content-new-custom ol {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-new-custom li {
    margin-bottom: 0.75rem;
    position: relative;
    color: #f2f2f2;
}

.content-new-custom ul li::before {
    content: "🎰";
    position: absolute;
    left: -1.8rem;
}

.content-new-custom ol {
    counter-reset: casino-counter;
}

.content-new-custom ol li {
    counter-increment: casino-counter;
}

.content-new-custom ol li::before {

}

/* Таблиці */
.content-new-custom table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    background-color: rgba(0, 0, 0, 0.2);
}

.content-new-custom thead {
    background-color: #222;
}

.content-new-custom th,
.content-new-custom td {
    border: 1px solid #444;
    padding: 1rem;
    text-align: left;
}

.content-new-custom th {
    color: #fffacd;
    font-weight: bold;
}

.content-new-custom tbody tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.05);
}

.content-new-custom tbody td {
    color: #eee;
}

/* Адаптивність */
@media (max-width: 768px) {
    .content-new-custom {
        padding: 1rem;
    }

    .content-new-custom h1 {
        font-size: 2rem;
    }

    .content-new-custom h2 {
        font-size: 1.5rem;
    }

    .content-new-custom h3 {
        font-size: 1.25rem;
    }

    .content-new-custom p,
    .content-new-custom li {
        font-size: 1rem;
    }

    .content-new-custom table,
    .content-new-custom thead,
    .content-new-custom tbody,
    .content-new-custom th,
    .content-new-custom td {
        font-size: 0.9rem;
    }
}

img {
    display: block;
    max-width: 100%;
    border-radius: 14px;
    margin: 30px auto;
}

/* === RESET / BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
}

a {
    text-decoration: none;
    color: #000;
}

/* === HEADER === */
.header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    max-height: 50px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-menu a {
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #c40000;
}

/* === ACTIONS === */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.login-button {
    font-weight: 600;
    color: #fff;
    background: #c40000;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin-left: 70px;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #000;
    border-radius: 2px;
}
.nav-menu p {
    display: none;
}
/* === MOBILE MENU === */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        background: #fff;
        flex-direction: column;
        padding: 4rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }
    .nav-menu p {
        display: block;
    }
    .nav-menu ul {
        flex-direction: column;
        gap: 2rem;
    }

    .burger {
        display: flex;
    }
}


