* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #121928;
    color: #fff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.site-header {
    background-color: #121928;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo img {
    height: 48px;
    max-width: 100%;
}

.main-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.main-nav ul {
    display: flex;
    gap: 25px;
}

.main-nav a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.main-nav a:hover {
    color: #E30613;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 8px 16px;
    border-radius: 0;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    display: inline-block;
}

.btn-subscribe {
    background-color: #E3E20B;
    color: #000;
}

.btn-connect {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.btn-subscribe:hover {
    background-color: #d4d308;
}

.btn-connect:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(227, 226, 11, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(227, 226, 11, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(227, 226, 11, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

.btn-connect.pulse {
    animation: pulse-white 2s infinite;
}

@keyframes pulse-white {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.hero-section {
    padding: 60px 0;
    background-color: #121928;
    background-image: radial-gradient(circle at 30% 50%, rgba(25, 35, 60, 0.8) 0%, rgba(18, 25, 40, 0.4) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
    max-width: 650px;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #E3E20B;
    line-height: 1.2;
}

.hero-text p {
    margin-bottom: 30px;
    font-size: 1rem;
    color: #f0f0f0;
    line-height: 1.7;
}

.btn-hero {
    background-color: #E3E20B;
    color: #000;
    font-size: 1rem;
    padding: 12px 30px;
    border-radius: 0;
}

.btn-hero:hover {
    background-color: #d4d308;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.inscription-section {
    padding: 60px 0;
    background-color: #121928;
    background-image: linear-gradient(to bottom, rgba(25, 35, 60, 0.4) 0%, rgba(18, 25, 40, 0.8) 100%);
    position: relative;
}

.inscription-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.inscription-text {
    flex: 1;
}

.inscription-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #E3E20B;
    line-height: 1.2;
}

.inscription-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #f0f0f0;
}

.inscription-text ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.inscription-text li {
    margin-bottom: 15px;
    line-height: 1.5;
}

.inscription-text strong {
    color: #E3E20B;
}

.inscription-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inscription-image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.bonus-section {
    padding: 60px 0;
    background-color: #121928;
    background-image: radial-gradient(circle at 70% 30%, rgba(25, 35, 60, 0.6) 0%, rgba(18, 25, 40, 0.9) 100%);
    position: relative;
}

.bonus-content {
    margin-bottom: 40px;
}

.bonus-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #E3E20B;
    line-height: 1.2;
}

.bonus-text p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 900px;
}

.bonus-banner {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(18, 25, 40, 0.8);
    padding: 20px;
    text-align: center;
}

.banner-overlay p {
    color: #E3E20B;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.banner-overlay .btn {
    white-space: nowrap;
    font-size: 1.1rem;
    padding: 12px 30px;
}

.cashback-content {
    margin-top: 50px;
    padding: 30px;
    background-color: rgba(25, 35, 60, 0.3);
    border-radius: 5px;
    border-left: 4px solid #E3E20B;
}

.cashback-content h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #E3E20B;
    line-height: 1.2;
}

.cashback-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #f0f0f0;
}

.games-section {
    padding: 60px 0;
    background-color: #121928;
    background-image: linear-gradient(to top, rgba(25, 35, 60, 0.5) 0%, rgba(18, 25, 40, 0.7) 100%);
    position: relative;
}

.games-intro {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}

.games-text {
    flex: 1;
}

.games-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #E3E20B;
    line-height: 1.2;
}

.games-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #f0f0f0;
}

.games-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.games-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.games-types {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.game-type {
    padding: 30px;
    background-color: rgba(25, 35, 60, 0.3);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.game-type:hover {
    background-color: rgba(25, 35, 60, 0.5);
    transform: translateY(-5px);
}

.game-type h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #E3E20B;
    line-height: 1.2;
}

.game-type p {
    font-size: 1rem;
    line-height: 1.7;
    color: #f0f0f0;
}

.slot-machines {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 0;
    background-color: transparent;
}

.slot-machines:hover {
    transform: none;
    background-color: transparent;
}

.slot-machines .game-image {
    flex: 1;
    padding: 0;
}

.slot-machines .game-image img {
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    height: auto;
}

.slot-machines .game-info {
    flex: 1;
    padding: 30px;
    background-color: rgba(25, 35, 60, 0.3);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.slot-machines .game-info:hover {
    background-color: rgba(25, 35, 60, 0.5);
}

.games-cta {
    margin-top: 50px;
    text-align: center;
}

.games-cta .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.support-section {
    padding: 60px 0;
    background-color: #121928;
    background-image: radial-gradient(circle at 40% 70%, rgba(25, 35, 60, 0.7) 0%, rgba(18, 25, 40, 0.9) 100%);
    position: relative;
}

.support-text h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #E3E20B;
    line-height: 1.2;
    text-align: center;
}

.support-text > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #f0f0f0;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.support-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.support-feature {
    flex: 1;
    padding: 25px;
    background-color: rgba(25, 35, 60, 0.3);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.support-feature:hover {
    background-color: rgba(25, 35, 60, 0.5);
    transform: translateY(-5px);
}

.support-title {
    display: block;
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #E3E20B;
    line-height: 1.2;
    font-weight: bold;
}

.support-feature p {
    font-size: 1rem;
    line-height: 1.7;
    color: #f0f0f0;
}

.support-info {
    padding: 25px;
    background-color: rgba(25, 35, 60, 0.2);
    border-radius: 5px;
    border-left: 4px solid #E3E20B;
}

.support-info ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.support-info li {
    font-size: 1rem;
    line-height: 1.5;
}

.support-info strong {
    color: #E3E20B;
    margin-right: 5px;
}

.faq-section {
    padding: 60px 0;
    background-color: #121928;
    background-image: linear-gradient(to bottom, rgba(25, 35, 60, 0.6) 0%, rgba(18, 25, 40, 0.8) 100%);
    position: relative;
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #E3E20B;
    line-height: 1.2;
    text-align: center;
}

.faq-item {
    margin-bottom: 25px;
    padding: 25px;
    background-color: rgba(25, 35, 60, 0.3);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background-color: rgba(25, 35, 60, 0.5);
}

.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #E3E20B;
    line-height: 1.3;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #f0f0f0;
}

.site-footer {
    padding: 30px 0;
    background-color: #0c1220;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.85rem;
    color: #888;
}

.burger-menu {
    display: none;
    cursor: pointer;
    margin-left: 15px;
    z-index: 101;
}

.burger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column-reverse;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-image {
        margin-bottom: 30px;
        max-width: 70%;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .inscription-content {
        flex-direction: column-reverse;
    }
    
    .inscription-image {
        margin-bottom: 30px;
        max-width: 70%;
    }
    
    .inscription-text {
        max-width: 100%;
    }
    
    .banner-overlay {
        padding: 15px;
    }
    
    .banner-overlay p {
        font-size: 1rem;
    }
    
    .banner-overlay .btn {
        padding: 10px 25px;
        font-size: 1rem;
    }
    
    .games-intro {
        flex-direction: column;
    }
    
    .games-image {
        margin-top: 30px;
        max-width: 80%;
    }
    
    .slot-machines {
        flex-direction: column;
    }
    
    .slot-machines .game-image {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .slot-machines .game-info {
        width: 100%;
    }
    
    .support-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .support-info ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #121928;
        padding: 20px 0;
        transform: translateX(0);
        transition: transform 0.3s ease;
        z-index: 100;
        display: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .burger-menu {
        display: block;
    }
    
    .header-content {
        justify-content: space-between;
    }
    
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-image {
        max-width: 40%;
    }
    
    .hero-image img {
        max-width: 100%;
    }
    
    .inscription-section, 
    .bonus-section,
    .games-section,
    .support-section,
    .faq-section {
        padding: 40px 0;
    }
    
    .inscription-image-mobile {
        max-width: 90% !important;
    }
    
    .inscription-image img {
        width: 100%;
    }
    
    .inscription-text h2,
    .bonus-text h2,
    .games-text h2,
    .support-text h2,
    .faq-content h2 {
        font-size: 1.8rem;
    }
    
    .banner-overlay {
        padding: 12px;
    }
    
    .banner-overlay p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .banner-overlay .btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .cashback-content {
        padding: 20px;
        margin-top: 40px;
    }
    
    .cashback-content h3,
    .game-type h3,
    .support-feature h3,
    .faq-item h3 {
        font-size: 1.4rem;
    }
    
    .games-image {
        max-width: 100%;
    }
    
    .game-type,
    .support-feature,
    .faq-item {
        padding: 20px;
    }
    
    .support-text > p {
        font-size: 1rem;
    }
    
    .support-info {
        padding: 20px;
    }
    
    .logo img {
        height: 34px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 6px 8px;
        font-size: 10px;
        letter-spacing: 0;
    }
    
    .header-buttons {
        gap: 3px;
        margin-right: 5px;
    }
    
    .logo img {
        height: 28px;
    }
    
    .header-content {
        padding: 5px 0;
    }
    
    .burger-menu span {
        width: 20px;
        height: 2px;
        margin: 4px 0;
    }
    
    .main-nav ul {
        gap: 15px;
    }
    
    .main-nav a {
        font-size: 14px;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
    }
    
    .btn-hero {
        width: 100%;
        text-align: center;
    }
    
    .hero-image {
        max-width: 30%;
    }
    
    .inscription-image-mobile {
        max-width: 100% !important;
    }
    
    .inscription-text h2,
    .bonus-text h2,
    .games-text h2,
    .support-text h2,
    .faq-content h2 {
        font-size: 1.5rem;
    }
    
    .inscription-text p,
    .bonus-text p,
    .games-text p,
    .game-type p,
    .support-text > p,
    .support-feature p,
    .faq-item p {
        font-size: 0.9rem;
    }
    
    .inscription-text li {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .banner-overlay {
        position: relative;
        background-color: rgba(18, 25, 40, 1);
    }
    
    .banner-overlay p {
        font-size: 0.85rem;
    }
    
    .banner-overlay .btn {
        width: 100%;
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .cashback-content {
        padding: 15px;
        margin-top: 30px;
    }
    
    .cashback-content h3,
    .game-type h3,
    .support-feature h3,
    .faq-item h3 {
        font-size: 1.3rem;
    }
    
    .cashback-content p {
        font-size: 0.85rem;
    }
    
    .game-type,
    .support-feature,
    .faq-item {
        padding: 15px;
    }
    
    .games-cta .btn {
        width: 100%;
        padding: 12px 20px;
    }
    
    .support-info {
        padding: 15px;
    }
    
    .support-info li {
        font-size: 0.9rem;
    }
    
    .site-footer {
        padding: 20px 0;
    }
    
    .copyright,
    .disclaimer {
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .btn {
        padding: 4px 6px;
        font-size: 9px;
    }
    
    .logo img {
        height: 24px;
    }
    
    .header-buttons {
        gap: 2px;
    }
} 