* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    padding: 10px 20px;
    border: none;
    background-color: #333;
    color: white;
    border-radius: 4px;
}

button:hover {
    background-color: #555;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #1a1a1a;
    color: white;
}

.logo {
    text-align: center;
    margin-bottom: 15px;
}

.logo-text {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: -webkit-linear-gradient(45deg, #ff6a00, #ee0979);
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: logo-animation 1.5s ease-in-out infinite;
}

@keyframes logo-animation {
    0% {
        color: transparent;
    }

    50% {
        color: #ff6a00;
    }

    100% {
        color: transparent;
    }
}

nav a {
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    background-color: #ff6a00;
    border-radius: 30px;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

nav a:hover {
    background-color: #ee0979;
    text-decoration: none;
}

.hero {
    background: linear-gradient(45deg, #ff6a00, #ee0979);
    padding: 60px 20px;
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.advantages {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.adv-card {
    background-color: #fff;
    color: #333;
    padding: 20px;
    border-radius: 10px;
    width: 220px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.adv-card i {
    font-size: 40px;
    color: #ff6a00;
    margin-bottom: 10px;
}

.adv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

html {
    scroll-behavior: smooth;
}

@media (max-width: 767px) {
    .logo-text {
        font-size: 1.8rem;
        text-align: center;
    }

    header {
        flex-direction: column;
        align-items: center;
    }

    nav a {
        padding: 15px 30px;
        font-size: 1.2rem;
        width: 100%;
        margin-top: 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .advantages {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }

    .adv-card {
        width: 80%;
        margin-bottom: 15px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .logo-text {
        font-size: 2.2rem;
    }

    .adv-card {
        width: 220px;
    }
}

@media (min-width: 1025px) {
    .hero {
        padding: 80px 20px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1.4rem;
    }

    .advantages {
        gap: 30px;
    }

    .adv-card {
        width: 250px;
    }
}

.casino-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 400px;
    max-width: 100%;
    margin: 20px auto;
    padding: 20px;
    text-align: center;
}

.card-header {
    position: relative;
}

.casino-logo {
    background-color: #111111;
    padding: 5px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

.rating i {
    color: #ff6a00;
    margin: 0 2px;
}

.card-body {
    margin-top: 15px;
}

.bonus-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.bonus-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 0.875rem;
    color: #777;
    margin-bottom: 20px;
}

.claim-button {
    background-color: #ff6a00;
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 30px;
    display: inline-block;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.claim-button:hover {
    background-color: #ee0979;
}

@media (max-width: 767px) {
    .casino-card {
        width: 100%;
        padding: 15px;
    }

    .bonus-title {
        font-size: 1.1rem;
    }

    .bonus-description {
        font-size: 0.95rem;
    }

    .claim-button {
        width: 100%;
        font-size: 1.1rem;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .casino-card {
        width: 45%;
    }
}

.how-to-use {
    background-color: #f4f4f4;
    padding: 50px 20px;
    text-align: center;
    margin-top: 40px;
    border-top: 5px solid #ff6a00;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.info-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.info-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 220px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
}

.info-card i {
    font-size: 40px;
    color: #ff6a00;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 0.9rem;
    color: #555;
}

@media (max-width: 767px) {
    .info-card {
        width: 90%;
        padding: 20px;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .info-card {
        width: 45%;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

@media (min-width: 1025px) {
    .info-card {
        width: 220px;
    }
}

.regulation-block {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
    margin-top: 40px;
    border-top: 5px solid #ff6a00;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.regulation-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.regulation-card {
    background-color: #f4f4f4;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 280px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.regulation-card:hover {
    transform: translateY(-10px);
}

.regulation-logo {
    height: auto;
    margin-bottom: 15px;
}

.regulation-card h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.regulation-card p {
    font-size: 0.95rem;
    color: #555;
}

@media (max-width: 767px) {
    .regulation-card {
        width: 90%;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .regulation-card {
        width: 45%;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

@media (min-width: 1025px) {
    .regulation-card {
        width: 280px;
    }
}

.site-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    margin-top: 40px;
}

.disclaimer {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-link {
    color: #ff6a00;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ee0979;
}

.help-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.help-link img {
    width: 120px;
    height: auto;
    transition: transform 0.3s ease;
}

.help-link:hover img {
    transform: scale(1.1);
}

.age-verification i {
    font-size: 2rem;
    color: #ff6a00;
    margin-top: 20px;
    transition: transform 0.3s ease;
}

.age-verification i:hover {
    transform: rotate(360deg);
}

.copyright {
    font-size: 0.875rem;
    color: #ccc;
    margin-top: 20px;
}

@media (max-width: 767px) {
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .help-links {
        flex-direction: column;
        gap: 10px;
    }

    .help-link img {
        width: 100px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .help-link img {
        width: 110px;
    }
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    text-align: center;
    display: none;
    z-index: 9999;
    font-family: 'Roboto', sans-serif;
}

.cookie-popup .cookie-content {
    max-width: 600px;
    margin: 0 auto;
}

.cookie-btn {
    background-color: #ff6a00;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.cookie-btn:hover {
    background-color: #ee0979;
}

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.93);
    color: white;
    display: none;
    z-index: 10000;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    padding: 50px 20px;
    box-sizing: border-box;
    overflow-y: auto;
    justify-content: center;
    align-items: center;
}

.age-gate .age-gate-content {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    background-color: #2c2c2c;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.age-gate h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.age-gate p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.age-gate-btn {
    background-color: #ff6a00;
    color: white;
    border: none;
    padding: 12px 25px;
    margin: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    width: 100%;
}

.age-gate-btn:hover {
    background-color: #ee0979;
}

@media (max-width: 767px) {
    .age-gate .age-gate-content {
        padding: 20px;
    }

    .age-gate h3 {
        font-size: 1.4rem;
    }

    .age-gate p {
        font-size: 1rem;
    }

    .age-gate-btn {
        font-size: 1.2rem;
    }

    .cookie-popup .cookie-content,
    .age-gate .age-gate-content {
        width: 90%;
        padding: 20px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .age-gate .age-gate-content {
        padding: 25px;
    }

    .age-gate-btn {
        width: auto;
        font-size: 1.1rem;
    }
}

@media (min-width: 1025px) {
    .age-gate .age-gate-content {
        padding: 30px;
    }

    .age-gate-btn {
        width: auto;
        font-size: 1rem;
    }
}