* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.header {
    background-color: #0b424a;
    padding: 1rem 2rem;
}

.header__container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header__logo img {
    height: 50px;
    width: auto;
}

.header__nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.header__nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.header__nav-link:hover {
    opacity: 0.8;
}

.header__actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.header__btn {
    background: linear-gradient(to top, #125760, #196c75);
    color: #e6b05d;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.2s ease, opacity 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
}

.header__btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.header__btn:active {
    transform: translateY(0);
}

.header__burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.header__burger-line {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__burger.active .header__burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header__burger.active .header__burger-line:nth-child(2) {
    opacity: 0;
}

.header__burger.active .header__burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    .header {
        padding: 1rem;
    }
    
    .header__container {
        flex-wrap: nowrap;
        gap: 1rem;
    }
    
    .header__burger {
        display: flex;
    }
    
    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #0b424a;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }
    
    .header__nav.active {
        transform: translateX(0);
    }
    
    .header__nav-link {
        font-size: 1.5rem;
    }
    
    .header__actions {
        gap: 0.5rem;
        margin-left: auto;
    }
    
    .header__btn {
        padding: 0.6rem 1rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .header__logo img {
        height: 40px;
    }
    
    .header__btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
}

.hero {
    background-image: url('assets/bg-d.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.hero__container {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.7);
    padding: 3rem 2rem;
    border-radius: 8px;
}

.hero__title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero__text {
    font-size: 1.125rem;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero__cta {
    display: inline-block;
    background: linear-gradient(to bottom, #fde300, #f6bb1a);
    color: #0b424a;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.125rem;
    text-transform: uppercase;
    transition: transform 0.2s ease, opacity 0.3s ease;
    animation: pulse 3.2s ease-in-out infinite;
}

.hero__cta:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    animation: none;
}

.hero__cta:active {
    transform: translateY(0);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(253, 227, 0, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 0 rgba(253, 227, 0, 0.4);
    }
}

@media (max-width: 768px) {
    .hero {
        background-image: url('assets/bg-m.webp');
        min-height: 60vh;
        padding: 1.5rem;
    }
    
    .hero__container {
        padding: 2rem 1.5rem;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__text {
        font-size: 1rem;
    }
    
    .hero__cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1rem;
    }
    
    .hero__container {
        padding: 1.5rem 1rem;
    }
    
    .hero__title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .hero__text {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }
    
    .hero__cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }
}

.slots {
    background-color: #0a3238;
    padding: 3rem 2rem;
}

.slots__container {
    max-width: 1400px;
    margin: 0 auto;
}

.slots__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.slots__title {
    font-size: 2rem;
    color: #00bcd4;
    font-weight: 700;
    margin: 0;
}

.slots__view-all {
    color: #e6b05d;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

.slots__view-all:hover {
    opacity: 0.8;
}

.slots__grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 1.5rem;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.slots__grid::-webkit-scrollbar {
    display: none;
}

.slots__card {
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    flex: 0 0 200px;
}

.slots__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.slots__image {
    width: 100%;
    height: auto;
    display: block;
}

.slots__badge {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #ff0080, #ff4081);
    color: #fff;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 1;
    transform: rotate(-45deg) translate(-30%, -50%);
    transform-origin: top left;
    min-width: 100px;
    text-align: center;
}

@media (max-width: 768px) {
    .slots {
        padding: 2rem 0;
    }
    
    .slots__container {
        padding: 0;
    }
    
    .slots__header {
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }
    
    .slots__title {
        font-size: 1.5rem;
    }
    
    .slots__view-all {
        font-size: 0.875rem;
    }
    
    .slots__grid {
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: 0 1rem 1rem;
    }
    
    .slots__card {
        flex: 0 0 150px;
        scroll-snap-align: start;
    }
}

@media (max-width: 480px) {
    .slots {
        padding: 1.5rem 0;
    }
    
    .slots__title {
        font-size: 1.25rem;
    }
    
    .slots__card {
        flex: 0 0 130px;
    }
}

.info {
    background-color: #0a3238;
    padding: 3rem 2rem;
}

.info__container {
    max-width: 1000px;
    margin: 0 auto;
}

.info__table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.info__table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info__table tr:last-child {
    border-bottom: none;
}

.info__label {
    padding: 1rem 1.5rem;
    color: #00bcd4;
    font-weight: 600;
    width: 40%;
    vertical-align: top;
}

.info__value {
    padding: 1rem 1.5rem;
    color: #fff;
}

.info__text {
    color: #fff;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
}

.info__banner {
    display: block;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.info__banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.info__banner-image {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .info {
        padding: 2rem 1rem;
    }
    
    .info__label {
        font-size: 0.9rem;
        padding: 0.875rem 1rem;
    }
    
    .info__value {
        font-size: 0.9rem;
        padding: 0.875rem 1rem;
    }
    
    .info__text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .info {
        padding: 1.5rem 1rem;
    }
    
    .info__table {
        font-size: 0.875rem;
    }
    
    .info__label {
        padding: 0.75rem;
        width: 45%;
    }
    
    .info__value {
        padding: 0.75rem;
    }
    
    .info__text {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }
}

.games {
    background-color: #0a3238;
    padding: 3rem 2rem;
}

.games__container {
    max-width: 1200px;
    margin: 0 auto;
}

.games__title {
    font-size: 2.5rem;
    color: #00bcd4;
    margin-bottom: 1.5rem;
    text-align: center;
}

.games__subtitle {
    font-size: 2rem;
    color: #e6b05d;
    margin: 2rem 0 1rem;
}

.games__text {
    color: #fff;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.games__image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin: 2rem 0;
    display: block;
}

.games__list {
    color: #fff;
    font-size: 1.125rem;
    line-height: 1.8;
    margin: 1rem 0 1.5rem 2rem;
}

.games__list li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .games {
        padding: 2rem 1rem;
    }
    
    .games__title {
        font-size: 2rem;
    }
    
    .games__subtitle {
        font-size: 1.5rem;
    }
    
    .games__text {
        font-size: 1rem;
    }
    
    .games__list {
        font-size: 1rem;
        margin-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .games {
        padding: 1.5rem 1rem;
    }
    
    .games__title {
        font-size: 1.5rem;
    }
    
    .games__subtitle {
        font-size: 1.25rem;
        margin: 1.5rem 0 0.75rem;
    }
    
    .games__text {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
    }
    
    .games__list {
        font-size: 0.9375rem;
        margin-left: 1.25rem;
    }
}

.payment {
    background-color: #0a3238;
    padding: 3rem 2rem;
}

.payment__container {
    max-width: 1200px;
    margin: 0 auto;
}

.payment__title {
    font-size: 2.5rem;
    color: #00bcd4;
    margin-bottom: 1.5rem;
    text-align: center;
}

.payment__subtitle {
    font-size: 2rem;
    color: #e6b05d;
    margin: 2rem 0 1rem;
}

.payment__text {
    color: #fff;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.payment__table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.payment__table thead {
    background-color: rgba(0, 188, 212, 0.2);
}

.payment__table th {
    padding: 1rem;
    color: #00bcd4;
    font-weight: 700;
    text-align: left;
    font-size: 1.125rem;
}

.payment__table td {
    padding: 1rem;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment__table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.payment__cta {
    display: inline-block;
    background: linear-gradient(to bottom, #fde300, #f6bb1a);
    color: #0b424a;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.125rem;
    text-transform: uppercase;
    transition: transform 0.2s ease, opacity 0.3s ease;
    margin: 2rem 0;
}

.payment__cta:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.payment__cta:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .payment {
        padding: 2rem 1rem;
    }
    
    .payment__title {
        font-size: 2rem;
    }
    
    .payment__subtitle {
        font-size: 1.5rem;
    }
    
    .payment__text {
        font-size: 1rem;
    }
    
    .payment__table {
        font-size: 0.875rem;
    }
    
    .payment__table th,
    .payment__table td {
        padding: 0.75rem 0.5rem;
    }
    
    .payment__cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .payment {
        padding: 1.5rem 1rem;
    }
    
    .payment__title {
        font-size: 1.5rem;
    }
    
    .payment__subtitle {
        font-size: 1.25rem;
        margin: 1.5rem 0 0.75rem;
    }
    
    .payment__text {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
    }
    
    .payment__table {
        font-size: 0.75rem;
        display: block;
        overflow-x: auto;
    }
    
    .payment__table th,
    .payment__table td {
        padding: 0.5rem 0.25rem;
    }
    
    .payment__cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
        display: block;
        text-align: center;
    }
}

.bonus {
    background-color: #0a3238;
    padding: 3rem 2rem;
}

.bonus__container {
    max-width: 1200px;
    margin: 0 auto;
}

.bonus__title {
    font-size: 2.5rem;
    color: #00bcd4;
    margin-bottom: 1.5rem;
    text-align: center;
}

.bonus__text {
    color: #fff;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.bonus__image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin: 2rem 0;
    display: block;
}

.bonus__list {
    color: #fff;
    font-size: 1.125rem;
    line-height: 1.8;
    margin: 1rem 0 1.5rem 2rem;
}

.bonus__list li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .bonus {
        padding: 2rem 1rem;
    }
    
    .bonus__title {
        font-size: 2rem;
    }
    
    .bonus__text {
        font-size: 1rem;
    }
    
    .bonus__list {
        font-size: 1rem;
        margin-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .bonus {
        padding: 1.5rem 1rem;
    }
    
    .bonus__title {
        font-size: 1.5rem;
    }
    
    .bonus__text {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
    }
    
    .bonus__list {
        font-size: 0.9375rem;
        margin-left: 1.25rem;
    }
}

.support {
    background-color: #0a3238;
    padding: 3rem 2rem;
}

.support__container {
    max-width: 1200px;
    margin: 0 auto;
}

.support__title {
    font-size: 2.5rem;
    color: #00bcd4;
    margin-bottom: 1.5rem;
    text-align: center;
}

.support__text {
    color: #fff;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.support__cta {
    display: inline-block;
    background: linear-gradient(to bottom, #fde300, #f6bb1a);
    color: #0b424a;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.125rem;
    text-transform: uppercase;
    transition: transform 0.2s ease, opacity 0.3s ease;
}

.support__cta:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.support__cta:active {
    transform: translateY(0);
}

.mobile {
    background-color: #0a3238;
    padding: 3rem 2rem;
}

.mobile__container {
    max-width: 1200px;
    margin: 0 auto;
}

.mobile__title {
    font-size: 2.5rem;
    color: #00bcd4;
    margin-bottom: 1.5rem;
    text-align: center;
}

.mobile__text {
    color: #fff;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.security {
    background-color: #0a3238;
    padding: 3rem 2rem;
}

.security__container {
    max-width: 1200px;
    margin: 0 auto;
}

.security__title {
    font-size: 2.5rem;
    color: #00bcd4;
    margin-bottom: 1.5rem;
    text-align: center;
}

.security__text {
    color: #fff;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .support {
        padding: 2rem 1rem;
    }
    
    .support__title {
        font-size: 2rem;
    }
    
    .support__text {
        font-size: 1rem;
    }
    
    .support__cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .mobile {
        padding: 2rem 1rem;
    }
    
    .mobile__title {
        font-size: 2rem;
    }
    
    .mobile__text {
        font-size: 1rem;
    }
    
    .security {
        padding: 2rem 1rem;
    }
    
    .security__title {
        font-size: 2rem;
    }
    
    .security__text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .support {
        padding: 1.5rem 1rem;
    }
    
    .support__title {
        font-size: 1.5rem;
    }
    
    .support__text {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
    }
    
    .support__cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
        display: block;
        text-align: center;
    }
    
    .mobile {
        padding: 1.5rem 1rem;
    }
    
    .mobile__title {
        font-size: 1.5rem;
    }
    
    .mobile__text {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
    }
    
    .security {
        padding: 1.5rem 1rem;
    }
    
    .security__title {
        font-size: 1.5rem;
    }
    
    .security__text {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
    }
}

.inter-link {
    color: #e6b05d;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.inter-link:hover {
    color: #fde300;
    opacity: 0.9;
}

.games__image--small {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .games__image--small {
        max-width: 100%;
    }
}

.footer {
    background-color: #0b424a;
    padding: 3rem 2rem 2rem;
    border-top: 2px solid #196c75;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer__logo {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer__logo img {
    height: 50px;
    width: auto;
}

.footer__copyright {
    color: #00bcd4;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer__disclaimer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 1rem 1.5rem;
    }
    
    .footer__logo img {
        height: 40px;
    }
    
    .footer__copyright {
        font-size: 0.9375rem;
    }
    
    .footer__disclaimer {
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1.5rem 1rem 1rem;
    }
    
    .footer__logo {
        margin-bottom: 1rem;
    }
    
    .footer__logo img {
        height: 35px;
    }
    
    .footer__copyright {
        font-size: 0.875rem;
    }
    
    .footer__disclaimer {
        font-size: 0.75rem;
    }
}

