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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: #212529;
    background-color: #0a519e;
    min-width: 320px
}

a {
    color: #1183d3;
    text-decoration: none;
    transition: color .3s ease
}

a:hover {
    color: #0d6ebd
}

img {
    max-width: 100%;
    height: auto
}

ul li {
    list-style-type: none;
}

.ovx {
    overflow-x: auto;
}

.promo-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #142e54 0%, #0c519e 100%);
    border-radius: 20px;
    border: 2px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
    z-index: 1000;
    animation: slideUp .5s ease-out
}

@keyframes slideUp {
    from {
        transform: translateX(-50%) translateY(100px);
        opacity: 0
    }

    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1
    }
}

.promo-inner {
    display: flex;
    align-items: center;
    padding: 20px 40px;
    gap: 20px;
    position: relative
}

.promo-gift {
    font-size: 60px;
    line-height: 1
}

.promo-text {
    color: #fff;
    font-size: 24px;
    font-weight: 500
}

.promo-percent {
    color: #fa5600;
    font-weight: 700;
    font-size: 32px
}

.promo-code-btn {
    background: linear-gradient(135deg, #f14e1b 0%, #ff7a1e 100%);
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 18px;
    transition: transform .3s ease
}

.promo-code-btn:hover {
    transform: scale(1.05);
    color: #fff
}

.promo-code-btn span {
    font-weight: 800
}

.promo-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, .2);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    transition: background .3s ease
}

.promo-close:hover {
    background: rgba(255, 255, 255, .3)
}

.site-header {
    background: linear-gradient(180deg, #003266 0%, #0a519e 100%);
    padding: 10px 0
}

.header-wrapper {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 10px
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 14px
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px
}

.apps-download {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px
}

.app-icon {
    font-size: 20px;
    text-decoration: none
}

.mirror-access-btn {
    background: #094e96;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: background .3s ease
}

.mirror-access-btn:hover {
    background: #0d6ebd;
    color: #fff
}

.header-right {
    display: flex;
    gap: 10px
}

.btn-register,
.btn-login {
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 500;
    transition: all .3s ease
}

.btn-register {
    background: #fa5600;
    color: #fff
}

.btn-register:hover {
    background: #e14d00;
    color: #fff
}

.btn-login {
    background: linear-gradient(135deg, #0991af 0%, #408cda 100%);
    color: #fff
}

.btn-login:hover {
    background: linear-gradient(135deg, #0991af 0%, #0991af 100%);
    color: #fff
}

.header-bottom {
    display: flex;
    align-items: center;
    padding: 15px 0
}

.logo {
    margin-right: 30px;
    display: flex;
    align-items: center;
    gap: 5px
}

.logo-text {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px
}

.logo-star {
    color: #fb4d00;
    font-size: 20px
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px
}

.main-nav a {
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    transition: color .3s ease
}

.main-nav a:hover {
    color: #ffba00
}

.main-content {
    min-height: calc(100vh - 200px);
    padding: 20px 0
}

.content-wrapper {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    gap: 10px
}

.sidebar-left,
.sidebar-right {
    flex-shrink: 0
}

.sidebar-left {
    width: 242px
}

.sidebar-right {
    width: 300px
}

.sports-menu {
    background: #fff;
    border-radius: 20px;
    overflow: hidden
}

.sports-menu ul {
    list-style: none
}

.sports-menu li {
    border-bottom: 1px solid #f2f2f2
}

.sports-menu li:last-child {
    border-bottom: none
}

.sports-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 15px;
    color: #000;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    transition: all .3s ease
}

.sports-menu a:hover {
    color: rgb(17, 131, 211);
    background: rgba(255, 255, 255, .05)
}

.sport-icon {
    font-size: 18px;
    width: 24px;
    text-align: center
}

.main-article {
    flex: 1;
    background: #fff;
    border-radius: 20px;
    padding: 40px
}

.article-content h1 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #003266
}

.article-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #003266
}

.article-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #333
}

.article-content p {
    margin-bottom: 20px;
    line-height: 1.8
}

.article-content ul,
.article-content ol {
    margin-bottom: 20px;
    padding-left: 30px
}

.article-content li {
    margin-bottom: 10px
}

.content-image {
    margin: 30px 0;
    text-align: center
}

.content-image img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1)
}

.content-image figcaption {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    font-style: italic
}

.bonus-block {
    background: #d4edda;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px
}

.bonus-text {
    font-size: 20px;
    text-align: center;
    margin: 0
}

.info-block {
    padding: 20px 25px;
    border-radius: 15px;
    margin: 25px 0;
    position: relative;
    padding-left: 60px
}

.info-block::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center
}

.info-block.success {
    background: #d4edda;
    color: #155724
}

.info-block.success::before {
    content: '✅'
}

.info-block.info {
    background: #d1ecf1;
    color: #0c5460
}

.info-block.info::before {
    content: '💡'
}

.info-block.warning {
    background: #fff3cd;
    color: #856404
}

.info-block.warning::before {
    content: '⚠️'
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
    justify-content: center
}

.cta-btn {
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    transition: all .3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px
}

.cta-btn.primary {
    background: #fa5600;
    color: #fff
}

.cta-btn.primary:hover {
    background: #e14d00;
    color: #fff;
    transform: translateY(-2px)
}

.cta-btn.secondary {
    background: #094e96;
    color: #fff;
    text-align: center;
}

.cta-btn.secondary:hover {
    background: #0d6ebd;
    color: #fff;
    transform: translateY(-2px)
}

.cta-btn.large {
    padding: 20px 40px;
    font-size: 20px;
    flex-direction: column;
    gap: 5px
}

.bonus-label {
    font-size: 14px;
    opacity: .9
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0
}

.advantage-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    transition: transform .3s ease
}

.advantage-item:hover {
    transform: translateY(-5px)
}

.advantage-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #003266
}

.download-apps {
    display: flex;
    gap: 15px;
    margin: 30px 0
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    transition: transform .3s ease
}

.download-btn:hover {
    transform: scale(1.05);
    color: #fff
}

.download-btn .icon {
    font-size: 24px
}

.download-btn .text small {
    display: block;
    font-size: 12px;
    opacity: .8
}

.download-btn .text strong {
    display: block;
    font-size: 16px
}

.registration-steps {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin: 25px 0
}

.registration-steps li {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef
}

.registration-steps li:last-child {
    border-bottom: none
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 30px 0
}

.payment-methods * {
    height: 20px;
}

.payment-item {
    flex: 0 0 auto
}

.payment-item img {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 10px;
    background: #fff
}

.faq-item {
    margin-bottom: 25px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px
}

.faq-item h3 {
    color: #003266;
    margin-bottom: 10px
}

.final-cta {
    text-align: center;
    margin: 40px 0
}

.promo-widget {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    color: #fff;
    margin-bottom: 20px
}

.promo-amount {
    font-size: 48px;
    font-weight: 700;
    font-style: italic;
    color: #ffd200;
    margin-bottom: 10px
}

.promo-amount span {
    font-size: 24px
}

.promo-desc p {
    font-size: 18px;
    margin-bottom: 15px
}

.promo-btn {
    background: #fa5600;
    color: #fff;
    padding: 10px 25px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 500;
    transition: background .3s ease
}

.promo-btn:hover {
    background: #e14d00;
    color: #fff
}

.mirror-status {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px
}

.mirror-status h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #003266
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dc3545
}

.status-dot.active {
    background: #28a745;
    animation: pulse 2s infinite
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, .7)
    }

    70% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0)
    }
}

.status-text {
    font-weight: 600;
    color: #28a745
}

.update-time {
    font-size: 14px;
    color: #6c757d
}

.quick-links {
    background: #003266;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px
}

.quick-links h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px
}

.quick-links ul {
    list-style: none
}

.quick-links li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.quick-links li:last-child {
    border-bottom: none
}

.quick-links a {
    color: #1183d3;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .3s ease
}

.quick-links a:hover {
    color: #fff
}

.casino-preview {
    background: #fff;
    border-radius: 20px;
    padding: 20px
}

.casino-preview h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #003266
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px
}



.slot-item {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    transition: transform .3s ease
}

.slot-item:hover {
    transform: scale(1.05)
}

.slot-item img {
    display: block;
    width: 100%;
    height: auto
}

.site-footer {
    background: #003266;
    border-radius: 20px 20px 0 0;
    padding: 30px 0;
    color: #fff;
    margin-top: 40px
}

.footer-wrapper {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 10px
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.footer-logo .logo-text {
    color: #fff;
    font-size: 20px;
    font-weight: 700
}

.footer-apps {
    display: flex;
    align-items: center;
    gap: 15px
}

.app-badge {
    background: #000;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px
}

.footer-menu {
    padding: 20px 0
}

.footer-menu ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 30px
}

.footer-menu a {
    color: #1183d3;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    transition: color .3s ease
}

.footer-menu a:hover {
    color: #fff
}

.footer-payments {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 0
}

.footer-payments img {
    height: 40px;
    opacity: .7;
    transition: opacity .3s ease
}

.footer-payments img:hover {
    opacity: 1
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1)
}

.copyright {
    display: flex;
    align-items: center;
    gap: 20px
}

.age-limit {
    font-size: 24px;
    font-weight: 700;
    border: 2px solid #4b95e5;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center
}

.footer-text {
    max-width: 600px;
    font-size: 14px;
    opacity: .8
}

.footer-text p {
    margin-bottom: 10px
}

.footer-text p:last-child {
    margin-bottom: 0
}

@media (max-width:1200px) {
    .sidebar-left {
        width: 200px
    }

    .sidebar-right {
        width: 250px
    }
}

@media (max-width:992px) {
    .content-wrapper {
        flex-direction: column
    }


    .sidebar-right {
        width: 100%
    }

    .sidebar-left,
    .header-left {
        display: none;
    }

    .header-wrapper {
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
    }


    .main-nav {
        display: none
    }

    .header-bottom {
        justify-content: center
    }

    .advantages-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width:768px) {
    .promo-banner {
        bottom: 0;
        left: 0;
        right: 0;
        transform: none;
        border-radius: 20px 20px 0 0
    }

    .promo-inner {
        padding: 15px 20px;
        flex-direction: column;
        text-align: center
    }

    .promo-gift {
        font-size: 40px
    }

    .promo-text {
        font-size: 18px
    }

    .promo-percent {
        font-size: 24px
    }

    .article-content h1 {
        font-size: 24px
    }

    .article-content h2 {
        font-size: 20px
    }

    .main-article {
        padding: 20px
    }

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center
    }

    .footer-menu ul {
        flex-wrap: wrap;
        justify-content: center
    }

    .payment-methods {
        grid-template-columns: repeat(3, 1fr)
    }

    .cta-buttons {
        flex-direction: column
    }

    .cta-btn {
        width: 100%;
        justify-content: center
    }
}

@media (max-width:480px) {
    .header-top {
        flex-direction: column;
        gap: 15px
    }

    .header-left,
    .header-right {
        width: 100%;
        justify-content: center
    }

    .promo-code-btn {
        font-size: 16px;
        padding: 10px 20px
    }

    .promo-amount {
        font-size: 36px
    }

    .sports-menu a {
        font-size: 12px;
        padding: 8px 12px
    }

    .payment-methods {
        grid-template-columns: repeat(2, 1fr)
    }

    .slots-grid {
        grid-template-columns: 1fr
    }
}