body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #0d0d0d;
    color: #e0e0e0;
}

.header-header-h1 {
    background-color: #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-foeinc-h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #FFD700;
}

.menu-h1 {
    position: relative;
}

.burger-menu-h1 {
    display: none;
    background: none;
    border: none;
    color: #FFD700;
    font-size: 1.2rem;
}

.nav-menu-h1 {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-menu-h1 a {
    text-decoration: none;
    color: #20B2AA;
    transition: color 0.3s ease-in-out;
}

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

.main-container-h1 {
    max-width: 1070px;
    margin: auto;
    padding: 20px;
}

.section-old-poster-h1 {
    background: url('poster-texture.jpg');
    border: 2px dashed #FFD700;
    padding: 20px;
    position: relative;
}

.img-photo-old-h1 {
    width: 100%;
    max-width: 300px;
    filter: sepia(60%);
    border: 2px solid #FFD700;
    margin-bottom: 10px;
    float: left;
    margin-right: 20px;
}

.bonus-box-h1 div {
    background: linear-gradient(90deg, #A57A3F, #C68C43);
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
}

.step-timeline-h1 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.step-timeline-h1 ol {
    list-style:none;
    padding: 0;
}

.step-timeline-h1 li {
    position: relative;
    padding-left: 30px;
}

.step-timeline-h1 li:before {
    content: "\2022";
    color: #C71585;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.bonus-highlight-h1 {
    box-shadow: 0 0 20px #FFD700;
    padding: 20px;
}

.casino-table-h1 {
    width: 100%;
    border-collapse: collapse;
    background-color: #1a1a1a;
}

.casino-table-h1 th, .casino-table-h1 td {
    padding: 10px;
    border-bottom: 1px solid #FFD700;
    text-align: left;
}

.casino-table-h1 tr:hover {
    background-color: rgba(255, 215, 0, 0.2);
}

.gift-icon-h1 {
    background: url('gift-icon.png') no-repeat;
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 5px;
}

.tips-section-h1 {
    margin-top: 20px;
}

.tooltip-h1 {
    background-color: #20B2AA;
    color: #0d0d0d;
    padding: 5px;
    border-radius: 4px;
    position: relative;
    top: -20px;
    left: 20px;
    display: none;
}

.tips-section-h1 ul li:hover .tooltip-h1 {
    display: inline-block;
}

.terms-section-h1 ul {
    list-style: none;
    padding: 0;
}

.terms-section-h1 li {
    margin: 10px 0;
    position: relative;
}

.popover-btn-h1 {
    background: none;
    border: none;
    color: #C71585;
    font-size: 1rem;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
}

.footer-h1 {
    background-image: url('wood-texture.jpg');
    padding: 20px;
    text-align: center;
    color: #FFD700;
}

.footer-h1 a {
    color: #C71585;
    text-decoration: none;
}

.sheriff-star-h1::before {
    content: "\2605";
    color: #FFD700;
    margin-left: 5px;
}


.header-header-h1 {
    background-color: #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-foeinc-h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #FFD700;
}

.menu-h1 {
    position: relative;
}

.burger-menu-h1 {
    display: none;
    background: none;
    border: none;
    color: #FFD700;
    font-size: 1.5rem;
    cursor: pointer;
}


.nav-menu-h1 {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-menu-h1 a {
    text-decoration: none;
    color: #20B2AA;
    transition: color 0.3s ease-in-out;
}

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


@media (max-width: 768px) {
    .burger-menu-h1 {
        display: block;
    }

    .nav-menu-h1 {
        position: absolute;
        top: 100%;
        right: 0;
        background-color: #1a1a1a;
        flex-direction: column;
        gap: 10px;
        padding: 10px 20px;
        display: none;
        min-width: 200px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    }

    .nav-menu-h1.active {
        display: flex;
    }
}


strong {
        color: #C71585;
}