/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* Top Navigation Menu */
.top-navbar[b-kslgnixrd8] {
    background: #000000;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    border-bottom: 2px solid #333333;
}

.top-navbar .navbar-brand[b-kslgnixrd8] {
    font-weight: bold;
    font-size: 1.5rem;
    color: white !important;
    display: flex;
    align-items: center;
    padding: 0;
}

.navbar-logo[b-kslgnixrd8] {
    height: 40px;
    margin-right: 10px;
    vertical-align: middle;
}

.navbar-logo-placeholder[b-kslgnixrd8] {
    height: 40px;
    width: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(255, 255, 255, 0.3);
}

.navbar-logo-placeholder[b-kslgnixrd8]::before {
    content: "Logo";
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .navbar-logo[b-kslgnixrd8] {
        height: 30px;
    }
    
    .navbar-logo-placeholder[b-kslgnixrd8] {
        height: 30px;
        width: 120px;
    }
    
    .navbar-logo-placeholder[b-kslgnixrd8]::before {
        font-size: 0.75rem;
    }
}

.top-navbar .nav-link[b-kslgnixrd8] {
    color: #ffffff !important;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.top-navbar .nav-link:hover[b-kslgnixrd8],
.top-navbar .nav-link.active[b-kslgnixrd8] {
    color: #0066ff !important;
}

.top-navbar .demo-btn[b-kslgnixrd8] {
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    border-radius: 25px;
    padding: 0.5rem 1.5rem !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-left: 0.5rem;
}

.top-navbar .demo-btn:hover[b-kslgnixrd8] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.7);
    color: white !important;
}

/* Demo button between logo and hamburger on mobile */
.demo-btn-mobile[b-kslgnixrd8] {
    display: none;
}

.demo-btn-desktop[b-kslgnixrd8] {
    display: block;
}

@media (max-width: 991px) {
    .demo-btn-mobile[b-kslgnixrd8] {
        display: flex;
        align-items: center;
        margin-left: auto;
        margin-right: 1rem;
    }
    
    .demo-btn-desktop[b-kslgnixrd8] {
        display: none !important;
    }
}

.top-navbar .navbar-toggler[b-kslgnixrd8] {
    border-color: #333333;
}

.top-navbar .navbar-toggler-icon[b-kslgnixrd8] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.page[b-kslgnixrd8] {
    position: relative;
    display: flex;
    flex-direction: column;
    background: transparent;
    min-height: 100vh;
}

main[b-kslgnixrd8] {
    flex: 1;
    background: transparent;
}

#blazor-error-ui[b-kslgnixrd8] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-kslgnixrd8] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/* Footer */
.site-footer[b-kslgnixrd8] {
    background: #000000;
    color: #ffffff;
    padding: 2rem 0;
    border-top: 2px solid #333333;
    margin-top: auto;
}

.copyright-text[b-kslgnixrd8] {
    color: #ffffff !important;
}

.footer-nav[b-kslgnixrd8] {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-link[b-kslgnixrd8] {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-link:hover[b-kslgnixrd8] {
    color: #0066ff;
}

@media (max-width: 767px) {
    .footer-nav[b-kslgnixrd8] {
        justify-content: flex-start;
        margin-top: 1rem;
    }
    
    .site-footer .row[b-kslgnixrd8] {
        text-align: center;
    }
    
    .site-footer .col-md-6[b-kslgnixrd8] {
        text-align: center !important;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float-button[b-kslgnixrd8] {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-weight: 500;
}

.whatsapp-float-button:hover[b-kslgnixrd8] {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: #ffffff;
    text-decoration: none;
}

.whatsapp-float-button i[b-kslgnixrd8] {
    font-size: 1.5rem;
}

.whatsapp-text[b-kslgnixrd8] {
    font-size: 1rem;
    white-space: nowrap;
}

@media (max-width: 576px) {
    .whatsapp-float-button[b-kslgnixrd8] {
        bottom: 15px;
        right: 15px;
        padding: 10px 16px;
    }
    
    .whatsapp-float-button i[b-kslgnixrd8] {
        font-size: 1.3rem;
    }
    
    .whatsapp-text[b-kslgnixrd8] {
        font-size: 0.9rem;
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-oxgzm0rb15] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-oxgzm0rb15] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-oxgzm0rb15] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-oxgzm0rb15] {
    font-size: 1.1rem;
}

.bi[b-oxgzm0rb15] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-oxgzm0rb15] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-oxgzm0rb15] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-oxgzm0rb15] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-oxgzm0rb15] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-oxgzm0rb15] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-oxgzm0rb15] {
        padding-bottom: 1rem;
    }

    .nav-item[b-oxgzm0rb15]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-oxgzm0rb15]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-oxgzm0rb15]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-oxgzm0rb15] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-oxgzm0rb15] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-oxgzm0rb15] {
        display: none;
    }

    .nav-scrollable[b-oxgzm0rb15] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-4b9pm1028y],
.components-reconnect-repeated-attempt-visible[b-4b9pm1028y],
.components-reconnect-failed-visible[b-4b9pm1028y],
.components-pause-visible[b-4b9pm1028y],
.components-resume-failed-visible[b-4b9pm1028y],
.components-rejoining-animation[b-4b9pm1028y] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-4b9pm1028y],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-4b9pm1028y],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-4b9pm1028y],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-4b9pm1028y],
#components-reconnect-modal.components-reconnect-retrying[b-4b9pm1028y],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-4b9pm1028y],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-4b9pm1028y],
#components-reconnect-modal.components-reconnect-failed[b-4b9pm1028y],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-4b9pm1028y] {
    display: block;
}


#components-reconnect-modal[b-4b9pm1028y] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-4b9pm1028y 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-4b9pm1028y 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-4b9pm1028y 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-4b9pm1028y]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-4b9pm1028y 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-4b9pm1028y {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-4b9pm1028y {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-4b9pm1028y {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-4b9pm1028y] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-4b9pm1028y] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-4b9pm1028y] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-4b9pm1028y] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-4b9pm1028y] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-4b9pm1028y] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-4b9pm1028y] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-4b9pm1028y 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-4b9pm1028y] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-4b9pm1028y {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/AboutUs.razor.rz.scp.css */
.about-hero[b-8ngnt6n4qe] {
    display: none;
}

.about-hero h1[b-8ngnt6n4qe] {
    color: white;
}

.about-hero .lead[b-8ngnt6n4qe] {
    color: rgba(255, 255, 255, 0.9);
}

/* Team Banner Section */
.team-banner-section[b-8ngnt6n4qe] {
    background: transparent;
    padding: 0;
}

.team-banner-wrapper[b-8ngnt6n4qe] {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    width: 100%;
}

.team-banner-image[b-8ngnt6n4qe] {
    width: 100%;
    height: 500px;
    background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1200&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-banner-image[b-8ngnt6n4qe]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.team-banner-text[b-8ngnt6n4qe] {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
}

.team-banner-text h1[b-8ngnt6n4qe] {
    color: white;
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.team-banner-text p[b-8ngnt6n4qe] {
    color: white;
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Team Members Section */
.team-members-section[b-8ngnt6n4qe] {
    background: #1a1a1a;
}

.team-members-section h2[b-8ngnt6n4qe] {
    color: #ffffff !important;
}

.team-member-card[b-8ngnt6n4qe] {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-member-card:hover[b-8ngnt6n4qe] {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    border-color: #0066ff;
}

.team-member-image[b-8ngnt6n4qe] {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.team-member-info[b-8ngnt6n4qe] {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.team-member-info h3[b-8ngnt6n4qe] {
    color: #000000;
    font-weight: 600;
    margin: 0;
}

.team-member-title[b-8ngnt6n4qe] {
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0;
    color: #0066ff;
}

.team-member-description[b-8ngnt6n4qe] {
    color: #1a1a1a;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.about-content[b-8ngnt6n4qe] {
    background: #1a1a1a;
}

.about-content .card[b-8ngnt6n4qe] {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    color: #000000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.about-content h2[b-8ngnt6n4qe] {
    color: #000000;
}

.about-content p[b-8ngnt6n4qe] {
    color: #1a1a1a;
}

.about-content .text-primary[b-8ngnt6n4qe] {
    color: #0066ff !important;
}

.about-content .card[b-8ngnt6n4qe] {
    border-radius: 15px;
}

@media (max-width: 768px) {
    .team-banner-image[b-8ngnt6n4qe] {
        height: 300px;
    }
    
    .team-banner-text h1[b-8ngnt6n4qe] {
        font-size: 2.2rem;
    }
    
    .team-member-image[b-8ngnt6n4qe] {
        height: 200px;
    }
    
    .team-member-info[b-8ngnt6n4qe] {
        padding: 1.25rem;
    }
    
    .team-member-description[b-8ngnt6n4qe] {
        font-size: 0.85rem;
    }
}

/* /Components/Pages/BettingTips.razor.rz.scp.css */
.service-hero[b-kxb8h9jcse] {
    margin-top: 20px;
    padding: 60px 0 40px 0;
    background: #000000;
    border-radius: 0 0 10px 10px;
    color: white;
}

.service-hero h1[b-kxb8h9jcse] {
    color: #ffffff;
}

.service-hero .lead[b-kxb8h9jcse] {
    color: rgba(255, 255, 255, 0.95);
}

.service-hero .lead.text-muted[b-kxb8h9jcse] {
    color: rgba(255, 255, 255, 0.95) !important;
}

.service-hero .text-primary[b-kxb8h9jcse] {
    color: #0066ff !important;
}

.service-hero-icon[b-kxb8h9jcse] {
    transition: transform 0.3s ease;
}

.service-details[b-kxb8h9jcse] {
    margin-top: 20px;
    background: #1a1a1a;
}

.service-description h2[b-kxb8h9jcse] {
    color: #ffffff;
}

.service-description p[b-kxb8h9jcse] {
    line-height: 1.8;
    color: #ffffff;
}

.service-features-detail h2[b-kxb8h9jcse] {
    color: #ffffff;
}

.service-features-detail .feature-item[b-kxb8h9jcse] {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    border-left: 3px solid #0066ff;
    background: #ffffff !important;
    color: #000000;
}

.service-features-detail .feature-item:hover[b-kxb8h9jcse] {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background: #ffffff !important;
    border-left-color: #0052cc;
}

.service-features-detail .feature-item h4[b-kxb8h9jcse] {
    color: #000000;
}

.service-features-detail .feature-item .text-primary[b-kxb8h9jcse] {
    color: #0066ff !important;
}

.service-features-detail .feature-item .text-muted[b-kxb8h9jcse] {
    color: #4a4a4a !important;
}

.service-pricing .card[b-kxb8h9jcse] {
    border-left: 4px solid #0066ff;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    color: #000000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.service-pricing h2[b-kxb8h9jcse] {
    color: #000000;
}

.service-pricing .text-primary[b-kxb8h9jcse] {
    color: #0066ff !important;
}

.service-pricing .text-muted[b-kxb8h9jcse] {
    color: #4a4a4a !important;
}

@media (max-width: 768px) {
    .service-hero[b-kxb8h9jcse] {
        padding: 40px 0 20px 0;
    }
}


/* /Components/Pages/CommunityApp.razor.rz.scp.css */
.service-hero[b-dwe7tejwox] {
    margin-top: 20px;
    padding: 60px 0 40px 0;
    background: #000000;
    border-radius: 0 0 10px 10px;
    color: white;
}

.service-hero h1[b-dwe7tejwox] {
    color: #ffffff;
}

.service-hero .lead[b-dwe7tejwox] {
    color: rgba(255, 255, 255, 0.95);
}

.service-hero .lead.text-muted[b-dwe7tejwox] {
    color: rgba(255, 255, 255, 0.95) !important;
}

.service-hero .text-primary[b-dwe7tejwox] {
    color: #0066ff !important;
}

.service-hero-icon[b-dwe7tejwox] {
    transition: transform 0.3s ease;
}

.service-details[b-dwe7tejwox] {
    margin-top: 20px;
    background: #1a1a1a;
}

.service-description h2[b-dwe7tejwox] {
    color: #ffffff;
}

.service-description p[b-dwe7tejwox] {
    line-height: 1.8;
    color: #ffffff;
}

.service-features-detail h2[b-dwe7tejwox] {
    color: #ffffff;
}

.service-features-detail .feature-item[b-dwe7tejwox] {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    border-left: 3px solid #0066ff;
    background: #ffffff !important;
    color: #000000;
}

.service-features-detail .feature-item:hover[b-dwe7tejwox] {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background: #ffffff !important;
    border-left-color: #0052cc;
}

.service-features-detail .feature-item h4[b-dwe7tejwox] {
    color: #000000;
}

.service-features-detail .feature-item .text-primary[b-dwe7tejwox] {
    color: #0066ff !important;
}

.service-features-detail .feature-item .text-muted[b-dwe7tejwox] {
    color: #4a4a4a !important;
}

.service-pricing .card[b-dwe7tejwox] {
    border-left: 4px solid #0066ff;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    color: #000000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.service-pricing h2[b-dwe7tejwox] {
    color: #000000;
}

.service-pricing .text-primary[b-dwe7tejwox] {
    color: #0066ff !important;
}

.service-pricing .text-muted[b-dwe7tejwox] {
    color: #4a4a4a !important;
}

@media (max-width: 768px) {
    .service-hero[b-dwe7tejwox] {
        padding: 40px 0 20px 0;
    }
}


/* /Components/Pages/Home.razor.rz.scp.css */
.hero-banner[b-0pyudedpgr] {
    background: 
        url('https://images.unsplash.com/photo-1555066931-4365d14bab8c?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 60px 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.hero-banner[b-0pyudedpgr]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300" viewBox="0 0 300 300"><defs><pattern id="techCircuit" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 30 0 L 30 60 M 0 30 L 60 30" stroke="rgba(0,102,255,0.2)" stroke-width="1.5"/><circle cx="30" cy="30" r="3" fill="rgba(0,102,255,0.25)"/><path d="M 10 10 L 50 50 M 50 10 L 10 50" stroke="rgba(0,102,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="300" height="300" fill="url(%23techCircuit)"/></svg>'),
        radial-gradient(circle at 25% 40%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 60%, rgba(0, 0, 0, 0.2) 0%, transparent 50%);
    z-index: 1;
    opacity: 0.6;
    pointer-events: none;
}

.hero-banner[b-0pyudedpgr]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    pointer-events: none;
}

.hero-content[b-0pyudedpgr] {
    position: relative;
    z-index: 10;
}

.hero-content h1[b-0pyudedpgr] {
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-content p[b-0pyudedpgr] {
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}

.hero-content .lead[b-0pyudedpgr] {
    color: white !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}

.hero-content .btn[b-0pyudedpgr],
.hero-content .cta-button[b-0pyudedpgr] {
    position: relative;
    z-index: 10;
    pointer-events: auto;
    cursor: pointer;
}

/* Hero Mockup Carousel */
.hero-mockup-carousel[b-0pyudedpgr] {
    position: relative;
    z-index: 10;
    height: 400px;
    margin-top: 2rem;
}

.mockup-slide[b-0pyudedpgr] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mockup-slide.active[b-0pyudedpgr] {
    opacity: 1;
}

.mockup-image[b-0pyudedpgr] {
    width: 100%;
    height: 85%;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.mockup-slide.active .mockup-image[b-0pyudedpgr] {
    transform: scale(1);
}

.mockup-label[b-0pyudedpgr] {
    margin-top: 1rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    text-align: center;
}

@media (max-width: 991px) {
    .hero-mockup-carousel[b-0pyudedpgr] {
        height: 300px;
        margin-top: 3rem;
    }
}

.hero-image-wrapper[b-0pyudedpgr] {
    display: none;
}

.hero-overlay[b-0pyudedpgr] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(0,102,255,0.3)"/><circle cx="80" cy="40" r="1.5" fill="rgba(0,102,255,0.3)"/><circle cx="40" cy="80" r="1" fill="rgba(0,102,255,0.3)"/></svg>') repeat,
        linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 82, 204, 0.1) 100%);
}

.hero-content-image[b-0pyudedpgr] {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.hero-icon[b-0pyudedpgr] {
    font-size: 4rem;
    color: #0066ff;
    animation: float-b-0pyudedpgr 3s ease-in-out infinite, pulse-b-0pyudedpgr 2s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(0, 102, 255, 0.8));
}

@keyframes pulse-b-0pyudedpgr {
    0%, 100% {
        opacity: 0.8;
        filter: drop-shadow(0 0 15px rgba(0, 102, 255, 0.8));
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 0 25px rgba(0, 102, 255, 1));
    }
}

.hero-icon:nth-child(1)[b-0pyudedpgr] {
    animation-delay: 0s;
}

.hero-icon:nth-child(2)[b-0pyudedpgr] {
    animation-delay: 1s;
}

.hero-icon:nth-child(3)[b-0pyudedpgr] {
    animation-delay: 2s;
}

@keyframes float-b-0pyudedpgr {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.cta-section[b-0pyudedpgr] {
    background: #1a1a1a;
    color: white;
}

.cta-section h2[b-0pyudedpgr],
.cta-section p[b-0pyudedpgr] {
    color: white;
}

.cta-button[b-0pyudedpgr] {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover[b-0pyudedpgr] {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.services-section[b-0pyudedpgr] {
    background: #1a1a1a;
    color: #000000;
    position: relative;
    padding: 80px 0;
}

.services-section h2[b-0pyudedpgr] {
    color: #ffffff;
}

.service-card[b-0pyudedpgr] {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    color: inherit;
}

.service-card:hover[b-0pyudedpgr] {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    color: inherit;
    text-decoration: none;
}

.service-card-bg[b-0pyudedpgr] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.service-card-bg[b-0pyudedpgr]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1;
}

.service-bg-mini-games[b-0pyudedpgr] {
    background-image: url('https://images.unsplash.com/photo-1552820728-8b83bb6b773f?w=800&q=80');
}

.service-bg-telegram[b-0pyudedpgr] {
    background-image: url('https://images.unsplash.com/photo-1611162617474-5b21e879e113?w=800&q=80');
}

.service-bg-community-app[b-0pyudedpgr] {
    background-image: url('https://images.unsplash.com/photo-1512941937669-90a1b58e7e9c?w=800&q=80');
}

.service-bg-betting-tips[b-0pyudedpgr] {
    background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=800&q=80');
}

.service-card:hover .service-card-bg[b-0pyudedpgr] {
    opacity: 0.25;
}

.service-card:hover .service-card-bg[b-0pyudedpgr]::after {
    background: rgba(255, 255, 255, 0.9);
}

.service-card .card-body[b-0pyudedpgr] {
    position: relative;
    z-index: 2;
    background: #ffffff;
    color: #000000;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.service-card:hover .card-body[b-0pyudedpgr] {
    background: #ffffff;
    border-color: #0066ff;
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.3);
}

.service-card .card-title[b-0pyudedpgr] {
    color: #000000;
}

.service-card .card-text[b-0pyudedpgr] {
    color: #1a1a1a;
}

.service-header[b-0pyudedpgr] {
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

.service-icon[b-0pyudedpgr] {
    transition: transform 0.3s ease, color 0.3s ease;
    color: #0066ff;
    flex-shrink: 0;
    min-width: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    order: -1;
}

.service-header .card-title[b-0pyudedpgr] {
    flex-shrink: 1;
    min-width: 0;
    white-space: normal;
    word-wrap: break-word;
}

.service-card:hover .service-icon[b-0pyudedpgr] {
    transform: scale(1.15) rotate(5deg);
    color: #0052cc;
    filter: drop-shadow(0 0 15px rgba(0, 102, 255, 0.8));
}

.service-cta[b-0pyudedpgr] {
    margin-top: auto;
}

.service-cta .btn[b-0pyudedpgr] {
    pointer-events: none;
}

/* Service Detail Card Styles (matching Services page) */
.service-detail-card[b-0pyudedpgr] {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: none;
    border-left: 4px solid #0066ff;
    height: 100%;
    background: #ffffff;
}

.service-detail-card:hover[b-0pyudedpgr] {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25) !important;
    border-left-color: #0052cc;
}

.service-detail-card .card-body[b-0pyudedpgr] {
    position: relative;
    z-index: 2;
    background: transparent;
    color: #000000;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
}

.service-detail-card .card-title[b-0pyudedpgr] {
    color: #000000;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    font-size: 1.1rem;
}

.service-detail-card .card-text[b-0pyudedpgr] {
    color: #1a1a1a;
}

.service-detail-card .text-primary[b-0pyudedpgr] {
    color: #0066ff !important;
}

.service-detail-card .text-success[b-0pyudedpgr] {
    color: #28a745 !important;
}

.service-detail-card .text-muted[b-0pyudedpgr] {
    color: #4a4a4a !important;
}

.service-icon-large[b-0pyudedpgr] {
    transition: transform 0.3s ease;
}

.service-detail-card:hover .service-icon-large[b-0pyudedpgr] {
    transform: scale(1.1);
}

.service-features ul li[b-0pyudedpgr] {
    font-size: 0.9rem;
}

.pricing-section[b-0pyudedpgr] {
    border-top: 1px solid rgba(0, 102, 255, 0.4);
    border-bottom: 1px solid rgba(0, 102, 255, 0.4);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.pricing-section .h5[b-0pyudedpgr] {
    color: #0066ff;
}

@media (max-width: 768px) {
    .service-detail-card .card-title[b-0pyudedpgr] {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 1.3rem;
    }
    
    .service-detail-card .card-body[b-0pyudedpgr] {
        padding: 1rem !important;
    }
    
    .service-header-mobile[b-0pyudedpgr] {
        display: flex !important;
    }
    
    .service-icon-large-mobile[b-0pyudedpgr] {
        flex-shrink: 0;
    }
    
    .service-header-mobile .card-title[b-0pyudedpgr] {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        flex: 1;
        min-width: 0;
    }
}

/* Strengths Section - Compact Grid Layout */
.pillars-section[b-0pyudedpgr] {
    background: #1a1a1a;
    color: #000000;
}

.pillars-section h2[b-0pyudedpgr] {
    color: #ffffff !important;
}

.strength-item[b-0pyudedpgr] {
    padding: 1rem 1rem;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #0066ff;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.15);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 150px;
}

.strength-item[b-0pyudedpgr]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066ff 0%, #0052cc 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.strength-item:hover[b-0pyudedpgr]::before {
    transform: scaleX(1);
}

.strength-item:hover[b-0pyudedpgr] {
    transform: translateY(-8px);
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
    border-color: #0052cc;
}

.strength-icon-large[b-0pyudedpgr] {
    font-size: 2.5rem;
    color: #0066ff;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.strength-item:hover .strength-icon-large[b-0pyudedpgr] {
    transform: scale(1.15) rotate(5deg);
    color: #0052cc;
    filter: drop-shadow(0 0 15px rgba(0, 102, 255, 0.8));
}

.strength-item h3[b-0pyudedpgr] {
    color: #000000;
    font-weight: 600;
}

.strength-item p[b-0pyudedpgr] {
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 0;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .strengths-row[b-0pyudedpgr] {
        display: flex;
        align-items: stretch;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .strength-slide[b-0pyudedpgr] {
        flex: 0 0 50%;
        max-width: 50%;
    }
}


@media (max-width: 768px) {
    .strength-icon-large[b-0pyudedpgr] {
        font-size: 2rem;
    }
    
    .strength-item[b-0pyudedpgr] {
        padding: 1rem 1.25rem;
        margin-bottom: 1rem;
        min-height: auto;
        background: #0066ff !important;
        border: none !important;
        border-radius: 8px;
        text-align: left !important;
    }
    
    .strength-item-mobile[b-0pyudedpgr] {
        width: 100%;
    }
    
    .strength-icon-large-mobile[b-0pyudedpgr] {
        font-size: 1.5rem;
        color: #ffffff !important;
        flex-shrink: 0;
    }
    
    .strength-content-mobile h3[b-0pyudedpgr] {
        color: #ffffff !important;
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 0.25rem !important;
    }
    
    .strength-content-mobile p[b-0pyudedpgr] {
        color: rgba(255, 255, 255, 0.95) !important;
        font-size: 0.875rem;
        line-height: 1.5;
        margin-bottom: 0 !important;
    }
    
    .strength-item h3[b-0pyudedpgr] {
        font-size: 0.95rem;
        margin-bottom: 0.5rem !important;
    }
    
    .strength-item p[b-0pyudedpgr] {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .strength-icon-large.mb-3[b-0pyudedpgr] {
        margin-bottom: 0.5rem !important;
    }
}

.testimonials-section[b-0pyudedpgr] {
    background: #1a1a1a;
    padding: 80px 0;
}

.testimonials-section h2[b-0pyudedpgr] {
    color: #ffffff;
}

.testimonial-card[b-0pyudedpgr] {
    border-left: 4px solid #0066ff;
    background: #ffffff !important;
    color: #000000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover[b-0pyudedpgr] {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.3);
}

.testimonial-card blockquote p[b-0pyudedpgr] {
    color: #000000;
}

.testimonial-card .blockquote-footer[b-0pyudedpgr] {
    color: #4a4a4a;
}

.testimonial-card cite[b-0pyudedpgr] {
    color: #0066ff;
    font-style: normal;
    font-weight: 600;
}

.testimonial-job-title[b-0pyudedpgr] {
    color: #4a4a4a;
    font-size: 0.9rem;
    font-weight: 500;
}

.partner-logo[b-0pyudedpgr] {
    max-height: 100px;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    max-width: 200px;
    border: 1px solid #e0e0e0;
}

.partner-logo .placeholder-text[b-0pyudedpgr] {
    color: #4a4a4a;
    font-size: 0.9rem;
    text-align: center;
}

.contact-section[b-0pyudedpgr] {
    background: #1a1a1a;
}

.contact-section .card[b-0pyudedpgr] {
    border: none;
    background: #ffffff;
    color: #000000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #e0e0e0;
}

.contact-section h2[b-0pyudedpgr] {
    color: #ffffff;
}

/* About Us Preview Section */
.about-us-preview[b-0pyudedpgr] {
    background: #1a1a1a;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-us-preview-card[b-0pyudedpgr] {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 3rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.about-us-preview-card:hover[b-0pyudedpgr] {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border-color: #0066ff;
}

.about-us-preview h2[b-0pyudedpgr] {
    color: #000000;
    margin-bottom: 1.5rem;
}

.about-us-preview p[b-0pyudedpgr] {
    color: #1a1a1a;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-us-preview .btn[b-0pyudedpgr] {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-us-preview .btn:hover[b-0pyudedpgr] {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.5);
}

.team-member-wrapper[b-0pyudedpgr] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-photo-thumbnail[b-0pyudedpgr] {
    width: 100%;
    height: 120px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    transition: transform 0.3s ease, border-color 0.3s ease;
    margin-bottom: 0.5rem;
}

.team-photo-thumbnail:hover[b-0pyudedpgr] {
    transform: scale(1.05);
    border-color: #0066ff;
}

.team-member-role[b-0pyudedpgr] {
    font-size: 0.75rem;
    color: #0066ff;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.team-member-credibility[b-0pyudedpgr] {
    font-size: 0.65rem;
    color: #666666;
    text-align: center;
    line-height: 1.3;
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .team-photo-thumbnail[b-0pyudedpgr] {
        height: 100px;
    }
    
    .team-member-role[b-0pyudedpgr] {
        font-size: 0.7rem;
    }
    
    /* Testimonials horizontal slider on mobile */
    .testimonials-container .row[b-0pyudedpgr] {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        margin-left: -15px;
        margin-right: -15px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .testimonials-container .row[b-0pyudedpgr]::-webkit-scrollbar {
        height: 6px;
    }
    
    .testimonials-container .row[b-0pyudedpgr]::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 3px;
    }
    
    .testimonials-container .row[b-0pyudedpgr]::-webkit-scrollbar-thumb {
        background: rgba(0, 102, 255, 0.5);
        border-radius: 3px;
    }
    
    .testimonials-container .col-md-4[b-0pyudedpgr] {
        flex: 0 0 85%;
        max-width: 85%;
        scroll-snap-align: start;
    }
    
    /* Strengths carousel on mobile */
    .strengths-carousel-wrapper[b-0pyudedpgr] {
        position: relative;
        margin-bottom: 2rem;
    }
    
    .strengths-carousel-container[b-0pyudedpgr] {
        overflow: hidden;
        position: relative;
    }
    
    .strengths-row[b-0pyudedpgr] {
        display: flex;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        margin: 0;
        will-change: transform;
    }
    
    .strength-slide[b-0pyudedpgr] {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 0.5rem;
    }
    
    .strengths-carousel-indicators[b-0pyudedpgr] {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1.5rem;
        padding: 0;
    }
    
    .strength-indicator[b-0pyudedpgr] {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: none;
        background-color: rgba(0, 102, 255, 0.3);
        cursor: pointer;
        padding: 0;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }
    
    .strength-indicator:hover[b-0pyudedpgr] {
        background-color: rgba(0, 102, 255, 0.6);
        transform: scale(1.2);
    }
    
    .strength-indicator.active[b-0pyudedpgr] {
        background-color: #0066ff;
        transform: scale(1.3);
    }
    
    @media (min-width: 768px) {
        .strengths-carousel-wrapper[b-0pyudedpgr] {
            margin-bottom: 0;
        }
        
        .strengths-row[b-0pyudedpgr] {
            display: flex;
            flex-wrap: wrap;
        }
        
        .strength-slide[b-0pyudedpgr] {
            flex: 0 0 25%;
            max-width: 25%;
        }
        
        .strengths-carousel-indicators[b-0pyudedpgr] {
            display: none;
        }
    }
    
    @media (min-width: 768px) and (max-width: 991px) {
        .strength-slide[b-0pyudedpgr] {
            flex: 0 0 50%;
            max-width: 50%;
        }
    }
    
    /* Team photos horizontal slider on mobile */
    .about-us-preview-card .row.g-3[b-0pyudedpgr] {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }
    
    .about-us-preview-card .row.g-3[b-0pyudedpgr]::-webkit-scrollbar {
        height: 6px;
    }
    
    .about-us-preview-card .row.g-3[b-0pyudedpgr]::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.1);
        border-radius: 3px;
    }
    
    .about-us-preview-card .row.g-3[b-0pyudedpgr]::-webkit-scrollbar-thumb {
        background: rgba(0, 102, 255, 0.5);
        border-radius: 3px;
    }
    
    .about-us-preview-card .col-md-2[b-0pyudedpgr] {
        flex: 0 0 40%;
        max-width: 40%;
        scroll-snap-align: start;
    }
}

@media (max-width: 991px) {
    .hero-content[b-0pyudedpgr] {
        text-align: center !important;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-banner[b-0pyudedpgr] {
        padding: 40px 0;
    }
    
    .hero-image-wrapper[b-0pyudedpgr] {
        min-height: 250px;
        margin-bottom: 30px;
    }

    .hero-icon[b-0pyudedpgr] {
        font-size: 2.5rem;
    }
    
    .hero-mockup-carousel[b-0pyudedpgr] {
        height: 250px;
        margin-top: 2rem;
    }
}

/* /Components/Pages/MiniGames.razor.rz.scp.css */
.service-hero[b-po124ayoix] {
    margin-top: 20px;
    padding: 60px 0 40px 0;
    background: #000000;
    border-radius: 0 0 10px 10px;
    color: white;
}

.service-hero h1[b-po124ayoix] {
    color: #ffffff;
}

.service-hero .lead[b-po124ayoix] {
    color: rgba(255, 255, 255, 0.95);
}

.service-hero .lead.text-muted[b-po124ayoix] {
    color: rgba(255, 255, 255, 0.95) !important;
}

.service-hero .text-primary[b-po124ayoix] {
    color: #0066ff !important;
}

.service-hero-icon[b-po124ayoix] {
    transition: transform 0.3s ease;
}

.service-details[b-po124ayoix] {
    margin-top: 20px;
    background: #1a1a1a;
}

.service-description h2[b-po124ayoix] {
    color: #ffffff;
}

.service-description p[b-po124ayoix] {
    line-height: 1.8;
    color: #ffffff;
}

.service-features-detail h2[b-po124ayoix] {
    color: #ffffff;
}

.service-features-detail .feature-item[b-po124ayoix] {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    border-left: 3px solid #0066ff;
    background: #ffffff !important;
    color: #000000;
}

.service-features-detail .feature-item:hover[b-po124ayoix] {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background: #ffffff !important;
    border-left-color: #0052cc;
}

.service-features-detail .feature-item h4[b-po124ayoix] {
    color: #000000;
}

.service-features-detail .feature-item .text-primary[b-po124ayoix] {
    color: #0066ff !important;
}

.service-features-detail .feature-item .text-muted[b-po124ayoix] {
    color: #4a4a4a !important;
}

.service-pricing .card[b-po124ayoix] {
    border-left: 4px solid #0066ff;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    color: #000000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.service-pricing h2[b-po124ayoix] {
    color: #000000;
}

.service-pricing .text-primary[b-po124ayoix] {
    color: #0066ff !important;
}

.service-pricing .text-muted[b-po124ayoix] {
    color: #4a4a4a !important;
}

@media (max-width: 768px) {
    .service-hero[b-po124ayoix] {
        padding: 40px 0 20px 0;
    }
}


/* /Components/Pages/Services.razor.rz.scp.css */
.services-hero[b-ba44elg2y9] {
    margin-top: 20px;
    padding: 60px 0 40px 0;
    background: #1a1a1a;
    color: white;
}

.services-hero h1[b-ba44elg2y9] {
    color: #ffffff;
}

.services-hero .lead[b-ba44elg2y9] {
    color: rgba(255, 255, 255, 0.9);
}

.services-overview[b-ba44elg2y9] {
    margin-top: 20px;
    background: #1a1a1a;
}

.services-overview h2[b-ba44elg2y9] {
    color: #ffffff;
}

.service-detail-card[b-ba44elg2y9] {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: none;
    border-left: 4px solid #0066ff;
    height: 100%;
    background: #ffffff;
}

.service-detail-card:hover[b-ba44elg2y9] {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25) !important;
    border-left-color: #0052cc;
}

.service-card-bg[b-ba44elg2y9] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.service-card-bg[b-ba44elg2y9]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1;
}

.service-bg-mini-games[b-ba44elg2y9] {
    background-image: url('https://images.unsplash.com/photo-1552820728-8b83bb6b773f?w=800&q=80');
}

.service-bg-telegram[b-ba44elg2y9] {
    background-image: url('https://images.unsplash.com/photo-1611162617474-5b21e879e113?w=800&q=80');
}

.service-bg-community-app[b-ba44elg2y9] {
    background-image: url('https://images.unsplash.com/photo-1512941937669-90a1b58e7e9c?w=800&q=80');
}

.service-bg-betting-tips[b-ba44elg2y9] {
    background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=800&q=80');
}

.service-detail-card:hover .service-card-bg[b-ba44elg2y9] {
    opacity: 0.25;
}

.service-detail-card:hover .service-card-bg[b-ba44elg2y9]::after {
    background: rgba(255, 255, 255, 0.9);
}

.service-detail-card .card-body[b-ba44elg2y9] {
    position: relative;
    z-index: 2;
    background: transparent;
    color: #000000;
}

.service-detail-card .card-title[b-ba44elg2y9] {
    color: #000000;
}

.service-detail-card .card-text[b-ba44elg2y9] {
    color: #1a1a1a;
}

.service-detail-card .text-primary[b-ba44elg2y9] {
    color: #0066ff !important;
}

.service-detail-card .text-success[b-ba44elg2y9] {
    color: #28a745 !important;
}

.service-detail-card .text-muted[b-ba44elg2y9] {
    color: #4a4a4a !important;
}

.service-icon-large[b-ba44elg2y9] {
    transition: transform 0.3s ease;
}

.service-detail-card:hover .service-icon-large[b-ba44elg2y9] {
    transform: scale(1.1);
}

.service-features ul li[b-ba44elg2y9] {
    font-size: 0.9rem;
}

.pricing-section[b-ba44elg2y9] {
    border-top: 1px solid rgba(0, 102, 255, 0.4);
    border-bottom: 1px solid rgba(0, 102, 255, 0.4);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.pricing-section .h5[b-ba44elg2y9] {
    color: #0066ff;
}

.cta-section-services[b-ba44elg2y9] {
    background: #1a1a1a;
    color: white;
    margin-top: 40px;
}

.cta-section-services h2[b-ba44elg2y9],
.cta-section-services h3[b-ba44elg2y9],
.cta-section-services p[b-ba44elg2y9] {
    color: white;
}

.contact-section[b-ba44elg2y9] {
    background: #1a1a1a;
}

.contact-section .card[b-ba44elg2y9] {
    border: none;
    background: #ffffff;
    color: #000000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #e0e0e0;
}

.contact-section h2[b-ba44elg2y9] {
    color: #ffffff;
}

@media (max-width: 768px) {
    .services-hero[b-ba44elg2y9] {
        padding: 40px 0 20px 0;
    }
    
    .service-detail-card[b-ba44elg2y9] {
        margin-bottom: 1.5rem;
    }
    
    .service-header-mobile[b-ba44elg2y9] {
        display: flex !important;
    }
    
    .service-icon-large-mobile[b-ba44elg2y9] {
        flex-shrink: 0;
    }
    
    .service-header-mobile .card-title[b-ba44elg2y9] {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        flex: 1;
        min-width: 0;
        font-size: 1.3rem;
    }
}

/* /Components/Pages/TelegramCommunity.razor.rz.scp.css */
.service-hero[b-4dw1ae7e3r] {
    margin-top: 20px;
    padding: 60px 0 40px 0;
    background: #000000;
    border-radius: 0 0 10px 10px;
    color: white;
}

.service-hero h1[b-4dw1ae7e3r] {
    color: #ffffff;
}

.service-hero .lead[b-4dw1ae7e3r] {
    color: rgba(255, 255, 255, 0.95);
}

.service-hero .lead.text-muted[b-4dw1ae7e3r] {
    color: rgba(255, 255, 255, 0.95) !important;
}

.service-hero .text-primary[b-4dw1ae7e3r] {
    color: #0066ff !important;
}

.service-hero-icon[b-4dw1ae7e3r] {
    transition: transform 0.3s ease;
}

.service-details[b-4dw1ae7e3r] {
    margin-top: 20px;
    background: #1a1a1a;
}

.service-description h2[b-4dw1ae7e3r] {
    color: #ffffff;
}

.service-description p[b-4dw1ae7e3r] {
    line-height: 1.8;
    color: #ffffff;
}

.service-features-detail h2[b-4dw1ae7e3r] {
    color: #ffffff;
}

.service-features-detail .feature-item[b-4dw1ae7e3r] {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    border-left: 3px solid #0066ff;
    background: #ffffff !important;
    color: #000000;
}

.service-features-detail .feature-item:hover[b-4dw1ae7e3r] {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background: #ffffff !important;
    border-left-color: #0052cc;
}

.service-features-detail .feature-item h4[b-4dw1ae7e3r] {
    color: #000000;
}

.service-features-detail .feature-item .text-primary[b-4dw1ae7e3r] {
    color: #0066ff !important;
}

.service-features-detail .feature-item .text-muted[b-4dw1ae7e3r] {
    color: #4a4a4a !important;
}

.service-pricing .card[b-4dw1ae7e3r] {
    border-left: 4px solid #0066ff;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    color: #000000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.service-pricing h2[b-4dw1ae7e3r] {
    color: #000000;
}

.service-pricing .text-primary[b-4dw1ae7e3r] {
    color: #0066ff !important;
}

.service-pricing .text-muted[b-4dw1ae7e3r] {
    color: #4a4a4a !important;
}

@media (max-width: 768px) {
    .service-hero[b-4dw1ae7e3r] {
        padding: 40px 0 20px 0;
    }
}


