* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui;
    background-color: #000;
    color: #fff;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}


.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(0,0,0,0.95), rgba(18,18,18,0.9));
    backdrop-filter: blur(4px);
    border-bottom: 1px solid #1c1c1c;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    padding: 0 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}


.main-menu {
    flex: 1;
    margin: 0 30px;
}

.menu-list {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 5px;
}

.menu-list > li {
    position: relative;
}

.menu-list > li > a {
    display: block;
    padding: 10px 16px;
    color: #e0e0e0;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
    border-radius: 4px;
}

.menu-list > li > a:hover,
.menu-list > li > a.active {
    color: #fff;
    background-color: rgba(255,255,255,0.1);
}


.has-submenu {
    position: relative;

}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background-color: #252525;
    border: 1px solid #3a3a3a;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s;
    z-index: 100;
    list-style: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li a {
    display: block;
    padding: 10px 15px;
    color: #d4d4d4;
    font-size: 14px;
    border-bottom: 1px solid #3a3a3a;
    transition: background 0.2s;
}

.submenu li:last-child a {
    border-bottom: none;
}

.submenu li a:hover {
    background-color: #d30000;
    color: #fff;
}


.btn-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 20px;
    background-color: #d30000;
    color: #fff;
    border-radius: 80px;
    font-weight: 600;
    font-size: 14px;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.25s;
    white-space: nowrap;
}

.btn-download:hover {
    background-color: #b30000;
}

.btn-signup {
    display: inline-block;
    padding: 12px 32px;
    background-color: #d30000;
    color: #fff;
    border-radius: 80px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.25s;
    border: none;
    cursor: pointer;
}

.btn-signup:hover {
    background-color: #b30000;
}

.btn-outline {
    display: inline-block;
    padding: 12px 32px;
    background-color: transparent;
    color: #ff0505;
    border-radius: 80px;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid #ff0505;
    transition: all 0.25s;
}

.btn-outline:hover {
    background-color: #ff0505;
    color: #fff;
}


.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
}


.contents-holder {
    min-height: 100vh;
    padding-top: 70px; 
}


.jumbotron-section {
    .jumbotron-slide,
    .jumbotron-content,
    .jumbotron-image-wrapper {
        overflow-y: visible !important;
        overflow-x: visible !important;
        overflow: visible !important;
        height: auto !important;
        max-height: none !important;
}

.jumbotron-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.jumbotron-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.jumbotron-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.jumbotron-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Р—Р°С‚РµРјРЅРµРЅРёРµ 80% */
}

.jumbotron-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px;
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.jumbotron-title {
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(90deg, #ad792f, #c9a559 15%, #ffefba 50%, #c9a559 85%, #ad792f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 16px;
}

.jumbotron-subtitle {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #fff;
}

.jumbotron-message {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 24px;
    max-width: 600px;
}

.jumbotron-badge {
    margin-bottom: 32px;
}

.jumbotron-badge img {
    width: 82px;
    height: 44px;
    object-fit: cover;
    border-radius: 4px;
}

.jumbotron-button {
    display: inline-block;
}

section {
    padding: 80px 24px;
}

.cards-section {
    background-color: #18181a;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: #a3a3a3;
    text-align: center;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.card {
    background-color: #1e1e22;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-content {
    padding: 24px;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.card-text {
    font-size: 14px;
    color: #a3a3a3;
    margin-bottom: 16px;
    line-height: 1.6;
}

.card-link {
    color: #ff4d4d;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    transition: color 0.2s;
}

.card-link:hover {
    color: #ff0505;
}

.section-button {
    text-align: center;
}


.wsop-section {
    background-color: #000;
    text-align: center;
}

.wsop-text {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #a3a3a3;
    font-size: 16px;
    line-height: 1.7;
}

.wsop-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}


.site-footer {
    background-color: #000;
    padding: 60px 24px 30px;
    border-top: 4px solid #ab1111;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-menu strong {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-menu ul {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #a3a3a3;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-menu a:hover {
    color: #fff;
}

.copyright {
    text-align: center;
    color: #666;
    font-size: 13px;
    border-top: 1px solid #2a2a2a;
    padding-top: 30px;
}


.floating-download {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 999;
}

.floating-download .btn-download {
    width: auto;
    min-width: 160px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}


@media (max-width: 1024px) {
    .menu-list > li > a {
        padding: 10px 12px;
        font-size: 14px;
    }
}

@media (max-width: 900px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #1a1a1a;
        padding: 20px;
        border-top: 1px solid #333;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        margin: 0;
    }
    
    .main-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .menu-list {
        flex-direction: column;
        gap: 0;
    }
    
    .menu-list > li > a {
        padding: 15px;
        border-bottom: 1px solid #333;
    }
    
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background-color: #252525;
        margin-left: 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }
    
    .has-submenu:hover .submenu {
        max-height: 300px;
    }
    
    .submenu li a {
        padding: 12px 15px;
    }
    
    .jumbotron-title {
        font-size: 42px;
    }
    
    .jumbotron-subtitle {
        font-size: 20px;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
    }
    
    .btn-download span {
        display: none;
    }
    
    .btn-download {
        width: 40px;
        padding: 0;
        justify-content: center;
    }
    
    .jumbotron-content {
        padding: 80px 15px;
    }
    
    .jumbotron-title {
        font-size: 36px;
    }
    
    .wsop-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .wsop-buttons a {
        width: 100%;
        text-align: center;
    }
}
}