/* /Components/GameTypeSelector.razor.rz.scp.css */
.game-type-selector[b-hezpcxooco] {
    padding: 2rem 0;
}

.selector-cards[b-hezpcxooco] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.type-card[b-hezpcxooco] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    background: white;
    border: 3px solid #e0e0e0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.type-card[b-hezpcxooco]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--card-color);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.type-card:hover[b-hezpcxooco] {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--card-color);
}

.type-card:hover[b-hezpcxooco]::before {
    transform: scaleX(1);
}

.type-card:active[b-hezpcxooco] {
    transform: translateY(-2px);
}

.type-card.active[b-hezpcxooco] {
    border-color: var(--card-color);
    border-width: 3px;
    background: linear-gradient(135deg, white 0%, color-mix(in srgb, var(--card-color) 5%, white) 100%);
    box-shadow: 0 8px 32px color-mix(in srgb, var(--card-color) 30%, transparent);
}

.type-card.active[b-hezpcxooco]::before {
    transform: scaleX(1);
    height: 6px;
}

.card-icon[b-hezpcxooco] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, color-mix(in srgb, var(--card-color) 10%, white), color-mix(in srgb, var(--card-color) 5%, white));
    margin-bottom: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-icon i[b-hezpcxooco] {
    font-size: 2.5rem;
    color: var(--card-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.type-card:hover .card-icon[b-hezpcxooco] {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, color-mix(in srgb, var(--card-color) 20%, white), color-mix(in srgb, var(--card-color) 10%, white));
}

.type-card.active .card-icon[b-hezpcxooco] {
    transform: scale(1.15);
    background: var(--card-color);
}

.type-card.active .card-icon i[b-hezpcxooco] {
    color: white;
}

.card-content[b-hezpcxooco] {
    text-align: center;
    flex: 1;
}

.card-title[b-hezpcxooco] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 0.5rem 0;
    transition: color 0.3s ease;
}

.type-card.active .card-title[b-hezpcxooco] {
    color: var(--card-color);
}

.card-description[b-hezpcxooco] {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.card-badge[b-hezpcxooco] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    background: var(--card-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: badge-pop-b-hezpcxooco 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.card-badge i[b-hezpcxooco] {
    color: white;
    font-size: 0.9rem;
}

@keyframes badge-pop-b-hezpcxooco {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .selector-cards[b-hezpcxooco] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .type-card[b-hezpcxooco] {
        flex-direction: row;
        padding: 1.25rem;
        text-align: left;
    }
    
    .card-icon[b-hezpcxooco] {
        width: 60px;
        height: 60px;
        margin-bottom: 0;
        margin-right: 1rem;
        flex-shrink: 0;
    }
    
    .card-icon i[b-hezpcxooco] {
        font-size: 1.75rem;
    }
    
    .card-content[b-hezpcxooco] {
        text-align: left;
    }
    
    .card-title[b-hezpcxooco] {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }
    
    .card-description[b-hezpcxooco] {
        font-size: 0.875rem;
    }
    
    .card-badge[b-hezpcxooco] {
        top: 50%;
        right: 1rem;
        transform: translateY(-50%);
    }
}

/* Focus styles for accessibility */
.type-card:focus[b-hezpcxooco] {
    outline: 3px solid var(--card-color);
    outline-offset: 2px;
}

.type-card:focus:not(:focus-visible)[b-hezpcxooco] {
    outline: none;
}

/* Color-specific hover effects */
.type-card.robo:hover[b-hezpcxooco] {
    box-shadow: 0 8px 24px rgba(255, 71, 87, 0.15);
}

.type-card.vr:hover[b-hezpcxooco] {
    box-shadow: 0 8px 24px rgba(46, 213, 115, 0.15);
}

.type-card.rc:hover[b-hezpcxooco] {
    box-shadow: 0 8px 24px rgba(255, 165, 2, 0.15);
}

/* Loading skeleton (optional) */
.type-card.skeleton[b-hezpcxooco] {
    pointer-events: none;
    animation: skeleton-pulse-b-hezpcxooco 1.5s ease-in-out infinite;
}

@keyframes skeleton-pulse-b-hezpcxooco {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}
/* /Components/HomePage/BulletPoint.razor.rz.scp.css */
[b-ye9o4te94i].bullet-points {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    border-radius: 50px;
    width: 90%;
    background: #26272b;
}

[b-ye9o4te94i].bullet-points i {
        color: #343a40
    }

[b-ye9o4te94i].bullet-points .box {
        text-decoration: none;
        flex-shrink: 0;
        border: 1px solid #DDDDDD;
        background: #ffffff;
        border-radius: 50%;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        margin: -1px;
        height: 100px !important;
        width: 100px !important;
    }

    [b-ye9o4te94i].bullet-points p {
        font-size: 16px;
        font-family: 'Poppins','Montserrat', sans-serif;
    }

    [b-ye9o4te94i].bullet-points .link {
        color: #007bff !important;
    }
/* /Components/HomePage/HomeCarousel.razor.rz.scp.css */
/* Index Hero section------------------------------------------- */
.hero-item[b-yilem9tv5r] {
    position: relative;
    height: max-height:90vh;
}

.hero-text-left-1[b-yilem9tv5r] {
    position: absolute;
    top: 5%;
    left: 10%;
}

.hero-text-left-2[b-yilem9tv5r] {
    position: absolute;
    top: 10%;
    left: 10%;
}

.hero-text-right-1[b-yilem9tv5r] {
    position: absolute;
    top: 10%;
    right: 5%;
}

.hero-text-mid[b-yilem9tv5r] {
    position: absolute;
    top: 10%;
    left: 5%;
}

@supports (-webkit-text-stroke: 1px black) {

    .outline-text[b-yilem9tv5r] {
        color: #00b1e5;
        text-shadow: -1px -1px 0 #ffffff, 1px -1px 0 #ffffff, -1px 1px 0 #ffffff, 1px 1px 0 #ffffff;
    }
}

.btn-hero[b-yilem9tv5r] {
    cursor: pointer
}

.btn-hero:hover[b-yilem9tv5r] {
    -webkit-filter: brightness(70%);
}


/*End Index Hero section------------------------------------------- */
/* /Components/HomePage/LeftCarousel.razor.rz.scp.css */
.events-carousel[b-5fjtt4r84p] {
    padding: 30px;
    padding-left: 11%;
    padding-right: 11%;
}

@media only screen and (max-width: 800px) {
    
    .events-carousel[b-5fjtt4r84p] {
        padding: 30px;
        padding-left: 2%;
        padding-right: 2%;
    }
}
/* /Components/HomePage/RightCarousel.razor.rz.scp.css */
.events-carousel[b-zir0nx2wnt] {
    padding: 30px;
    padding-left: 11%;
    padding-right: 11%;
}

@media only screen and (max-width: 800px) {
    
    .events-carousel[b-zir0nx2wnt] {
        padding: 30px;
        padding-left: 2%;
        padding-right: 2%;
    }
}
/* /Components/InfoAndFaq/Faq.razor.rz.scp.css */

.faq-section[b-r9d30k723w] {
    background: #fdfdfd;
}

.faq-title h2[b-r9d30k723w] {
    position: relative;
    margin-bottom: 45px;
    display: inline-block;
    font-weight: 600;
    line-height: 1;
}

    .faq-title h2[b-r9d30k723w]::before {
        content: "";
        position: absolute;
        left: 50%;
        width: 60px;
        height: 2px;
        background: #0ab5e6;
        bottom: -25px;
        margin-left: -30px;
    }

.faq-title p[b-r9d30k723w] {
    padding: 0 190px;
    margin-bottom: 10px;
}

.faq[b-r9d30k723w] {
    background: #FFFFFF;
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    border-radius: 4px;
}

    .faq .card[b-r9d30k723w] {
        border: none;
        background: none;
        border-bottom: 1px dashed #CEE1F8;
        margin-bottom : 0px !important;
    }

        .faq .card .card-header[b-r9d30k723w] {
            padding: 0px;
            border: none;
            background: none;
            -webkit-transition: all 0.3s ease 0s;
            -moz-transition: all 0.3s ease 0s;
            -o-transition: all 0.3s ease 0s;
            transition: all 0.3s ease 0s;
        }

            .faq .card .card-header:hover[b-r9d30k723w] {
                background: rgba(41,42,45, 0.1);
                padding-left: 10px;
            }

            .faq .card .card-header .faq-title[b-r9d30k723w] {
                width: 100%;
                text-align: left;
                padding: 0px;
                padding-left: 30px;
                margin-bottom: 0 !important;
                padding-right: 30px;
                font-weight: 400;
                font-size: 15px;
                letter-spacing: 1px;
                color: #3B566E;
                text-decoration: none !important;
                -webkit-transition: all 0.3s ease 0s;
                -moz-transition: all 0.3s ease 0s;
                -o-transition: all 0.3s ease 0s;
                transition: all 0.3s ease 0s;
                cursor: pointer;
                padding-top: 20px;
                padding-bottom: 20px;
            }

                .faq .card .card-header .faq-title .badge[b-r9d30k723w] {
                    display: inline-block;
                    width: 20px;
                    height: 20px;
                    line-height: 14px;
                    float: left;
                    -webkit-border-radius: 100px;
                    -moz-border-radius: 100px;
                    border-radius: 100px;
                    text-align: center;
                    background: #0ab5e6;
                    color: #fff;
                    font-size: 12px;
                    margin-right: 20px;
                }

        .faq .card .card-body[b-r9d30k723w] {
            padding: 30px;
            padding-left: 35px;
            padding-bottom: 16px;
            height:auto!important;
            font-weight: 400;
            font-size: 16px;
            color: #6F8BA4;
            line-height: 28px;
            letter-spacing: 1px;
            border-top: 1px solid #F3F8FF;
        }

            .faq .card .card-body p[b-r9d30k723w] {
                margin-bottom: 14px;
            }

@media (max-width: 991px) {
    
        .faq .card .card-header .faq-title[b-r9d30k723w] {
            line-height: 26px;
            margin-top: 10px;
        }
}
/* /Components/Invoices/ConfirmStep.razor.rz.scp.css */
[b-5g7czzja5v].confirm-step .align-value-with-table {
    width: 174px
}
/* /Components/Layout/AdminDesktopMenu.razor.rz.scp.css */
[b-zdnf9e0sml].admin-menu{
    z-index : 500;
    color: white;
}

[b-zdnf9e0sml].admin-menu {
    --rz-menu-top-item-color: whithe;
}

[b-zdnf9e0sml].active {
    --rz-menu-top-item-color: #2ebaff;
}
/* /Components/Layout/Footer.razor.rz.scp.css */

.site-footer[b-jh7ndscvyc] {
    background-color: #26272b;
    padding: 45px 0 20px;
    font-size: 15px;
    line-height: 24px;
    color: #737373;
}

    .site-footer hr[b-jh7ndscvyc] {
        border-top-color: #bbb;
        opacity: 0.5
    }

        .site-footer hr.small[b-jh7ndscvyc] {
            margin: 20px 0
        }

    .site-footer h6[b-jh7ndscvyc] {
        color: #fff;
        font-size: 16px;
        text-transform: uppercase;
        margin-top: 5px;
        letter-spacing: 2px
    }

    .site-footer a[b-jh7ndscvyc] {
        color: #737373;
    }

        .site-footer a:hover[b-jh7ndscvyc] {
            color: #3366cc;
            text-decoration: none;
        }

.footer-links[b-jh7ndscvyc] {
    padding-left: 0;
    list-style: none
}

    .footer-links li[b-jh7ndscvyc] {
        display: block
    }

    .footer-links a[b-jh7ndscvyc] {
        color: #737373
    }

        .footer-links a:active[b-jh7ndscvyc], .footer-links a:focus[b-jh7ndscvyc], .footer-links a:hover[b-jh7ndscvyc] {
            color: #3366cc;
            text-decoration: none;
        }

    .footer-links.inline li[b-jh7ndscvyc] {
        display: inline-block
    }

.site-footer .social-icons[b-jh7ndscvyc] {
    text-align: right
}

    .site-footer .social-icons a[b-jh7ndscvyc] {
        width: 40px;
        height: 40px;
        line-height: 40px;
        margin-left: 6px;
        margin-right: 0;
        border-radius: 100%;
        background-color: #33353d
    }

.copyright-text[b-jh7ndscvyc] {
    margin: 0
}

@media (max-width:991px) {
    .site-footer [class^=col-][b-jh7ndscvyc] {
        margin-bottom: 30px
    }
}

@media (max-width:767px) {
    .site-footer[b-jh7ndscvyc] {
        padding-bottom: 0;
        background: #26272b;
    }

        .site-footer .copyright-text[b-jh7ndscvyc], .site-footer .social-icons[b-jh7ndscvyc] {
            text-align: center
        }
}

.social-icons[b-jh7ndscvyc] {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

    .social-icons li[b-jh7ndscvyc] {
        display: inline-block;
        margin-bottom: 4px
    }

        .social-icons li.title[b-jh7ndscvyc] {
            margin-right: 15px;
            text-transform: uppercase;
            color: #96a2b2;
            font-weight: 700;
            font-size: 13px
        }

    .social-icons a[b-jh7ndscvyc] {
        background-color: #eceeef;
        color: #818a91;
        font-size: 16px;
        display: inline-block;
        line-height: 44px;
        width: 44px;
        height: 44px;
        text-align: center;
        margin-right: 8px;
        border-radius: 100%;
        -webkit-transition: all .2s linear;
        -o-transition: all .2s linear;
        transition: all .2s linear
    }

        .social-icons a:active[b-jh7ndscvyc], .social-icons a:focus[b-jh7ndscvyc], .social-icons a:hover[b-jh7ndscvyc] {
            color: #fff;
            background-color: #29aafe
        }

    .social-icons.size-sm a[b-jh7ndscvyc] {
        line-height: 34px;
        height: 34px;
        width: 34px;
        font-size: 14px
    }

    .social-icons a.facebook:hover[b-jh7ndscvyc] {
        background-color: #3b5998
    }

    .social-icons a.instagram:hover[b-jh7ndscvyc] {
        background: linear-gradient(45deg, #fd1d1d, #e1306c,#c13584, #833ab4,#5851db,#405de6)
    }

    .social-icons a.linkedin:hover[b-jh7ndscvyc] {
        background-color: #007bb6
    }

    .social-icons a.twitch:hover[b-jh7ndscvyc] {
        background: #6441a5
    }

    .social-icons a.youtube:hover[b-jh7ndscvyc] {
        background: #f70000
    }

    .social-icons a.tiktok:hover[b-jh7ndscvyc] {
        background: #69C9D0
    }

@media (max-width:767px) {
    .social-icons li.title[b-jh7ndscvyc] {
        display: block;
        margin-right: 0;
        font-weight: 600
    }
}
/* /Components/Layout/NavBarActions.razor.rz.scp.css */
    [b-en34vdveug].navbar-actions .book {
        margin-top: 45px !important;
    }
    [b-en34vdveug].navbar-actions .profile {
        margin-top: 45px !important;
        height: fit-content;
        margin-left:0;
        z-index: 200;
    }
    [b-en34vdveug].navbar-actions .profile .btn {
        margin-left: 0!important;
    }
    [b-en34vdveug].navbar-actions .menu-toggle {
        cursor: pointer;
        color: #343a40
    }

    [b-en34vdveug].navbar-actions .login {
        margin-top: 45px !important;
        cursor: pointer;
    }
/* /Components/Layout/NavigationBar.razor.rz.scp.css */
[b-luhxhd0msh].navigation-bar .menu-divder {
    border-bottom: 2px solid black;
}

[b-luhxhd0msh].navigation-bar .menu-bar {
    max-width: 1650px;
    max-height: 145px;
    height: 145px;
}

[b-luhxhd0msh].navigation-bar .menu-bar .btn {
    text-align: center;
    margin-left: 15px;
    margin-right: 15px;
    font-size: 20px;
}
/* /Components/Layout/NavLinksDesktopMenu.razor.rz.scp.css */
.nav-item[b-l8fvanld5j] {
    font-size: 20px;
    margin-left: 10px;
    margin-right: 10px;
    
    margin-top: auto;
    margin-bottom: auto;
}

.menu-items ul li a[b-l8fvanld5j] {
    color: rgb(52,58,64) !important;
}

.menu-items ul[b-l8fvanld5j] {
    text-align: center;
    margin: 0;
}
.link-submenu[b-l8fvanld5j]{
    font-size: 25px;
}
.menu-items ul li[b-l8fvanld5j] {
    display: inline-block;
    margin-right: 15px;
    transition: all 0.3s ease-in-out;
}

        .menu-items ul li:hover .submenu[b-l8fvanld5j] {
            height: auto;
        }

        .menu-items ul li:hover a[b-l8fvanld5j] {
            color: rgb(0,177,229)!important;
            font-weight: 600;
        }

            .menu-items ul li:hover a[b-l8fvanld5j]::before {
                visibility: visible;
                transform: scale(1, 1);
            }

        .menu-items ul li .submenu[b-l8fvanld5j] {
            overflow: hidden;
            position: absolute;
            left: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.85);
            height: 0;
            line-height: 40px;
            box-sizing: border-box;
            transition: height 0.3s ease-in-out;
            transition-delay: 0.1s;
        }

            .menu-items ul li .submenu a[b-l8fvanld5j] {
                color: #fff;
                margin-top: 20px;
                font-size: 16px;
            }

                .menu-items ul li .submenu a:hover[b-l8fvanld5j] {
                    color: #fff;
                    text-decoration: underline;
                }

        .menu-items ul li a[b-l8fvanld5j] {
            color: #999;
            display: block;
            padding: 0 7px 0 7px;
            margin: 0 0 10px;
            text-decoration: none;
            position: relative;
            height: 133px;
        }

            .menu-items ul li a[b-l8fvanld5j]::before {
                content: "";
                position: absolute;
                width: 100%;
                height: 3px;
                bottom: -10px;
                left: 0px;
                background-color: rgb(0,177,229);
                transition: all 0.2s ease-in-out;
                transform: scale(0, 0);
                visibility: hidden;
            }
/* /Components/Layout/NavLinksMobileMenu.razor.rz.scp.css */


.panel[b-4xtp9lzx5i] {
    transition: 0.3s;
    transform: translateX(+400px);
    position: fixed;
    top: 0;
    right: 0;
    background-color: #f0f2f5;
    width: 300px;
    height: auto;
    overflow-y: scroll;
    height: 100vh;
    z-index: 300;
    box-shadow: 0 0 10px 4px rgba(17, 24, 31, .15);
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
/* Hide scrollbar for Chrome, Safari and Opera */
.panel[b-4xtp9lzx5i]::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.panel[b-4xtp9lzx5i] {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
    .panel.panel--open[b-4xtp9lzx5i] {
        transform: translateX(0);
    }

.fly-out-wrap .fly-out-menu-actions a[b-4xtp9lzx5i] {
    cursor: pointer !important;
}
.fly-out-item li:hover[b-4xtp9lzx5i] {
    color: rgb(0,177,229) !important;
}
.fly-out-item[b-4xtp9lzx5i] {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .fly-out-item li[b-4xtp9lzx5i] {
        margin-bottom: 10px;
        cursor: pointer;
    }

.toggle[b-4xtp9lzx5i] {
    position: relative;
    height: 15px;
    width: 20px;
    border-bottom: 1px solid #11181f;
    margin-left: 30px;
    cursor: pointer;
}

    .toggle[b-4xtp9lzx5i]::after {
        display: block;
        border-top: 1px solid #11181f;
        content: "";
    }

    .toggle[b-4xtp9lzx5i]::before {
        display: block;
        border-top: 1px solid #11181f;
        padding-top: 6px;
        content: "";
    }
/* /Components/Layout/SocialOverlays.razor.rz.scp.css */
/*Social media buttons overlay------------------------------------*/
.social-media-buttons-overlay[b-uwtgp36hhs] {
    position: fixed;
    right: 0;
    text-align: center;
    padding: 10px;
    margin-right: 10px;
    margin-top: 160px;
    height: 250px;
    width: 10px;
    z-index: 5;
}

    .social-media-buttons-overlay a[b-uwtgp36hhs] {
        text-decoration: none;
        vertical-align: middle !important;
        justify-self: center !important;
        text-align: center !important;
        line-height: 2;
        font-size: 16px;
        text-transform: uppercase;
    }

    .social-media-buttons-overlay p[b-uwtgp36hhs] {
        color: #ffffff;
        position: relative;
        text-align: center !important;
        margin: auto 0 auto 0;
        right: -2px;
    }

        .social-media-buttons-overlay p i[b-uwtgp36hhs] {
            right: 47px;
            position: relative;
            vertical-align: middle !important;
            text-align: center;
            font-size: 24px;
        }

    .social-media-buttons-overlay div[b-uwtgp36hhs] {
        margin-left: -30px;
        width: 225px;
        padding: 0;
        display: inline-table;
        height: 30px;
        transition: margin-left .5s;
        cursor: pointer;
        border-radius: 50px 0 0 50px;
    }

        .social-media-buttons-overlay div:hover[b-uwtgp36hhs] {
            margin-left: -200px;
            width: 230px
        }

/*End social media buttons overlay-----------------------------*/
/* /Components/PageCarousels.razor.rz.scp.css */
/* Index Hero section------------------------------------------- */
.hero-item[b-84mqgs4cit] {
    position: relative;
    height: max-height:90vh;
}

.hero-text-left-1[b-84mqgs4cit] {
    position: absolute;
    top: 5%;
    left: 10%;
}

.hero-text-left-2[b-84mqgs4cit] {
    position: absolute;
    top: 10%;
    left: 10%;
}

.hero-text-right-1[b-84mqgs4cit] {
    position: absolute;
    top: 10%;
    right: 5%;
}

.hero-text-mid[b-84mqgs4cit] {
    position: absolute;
    top: 10%;
    left: 5%;
}

@supports (-webkit-text-stroke: 1px black) {

    .outline-text[b-84mqgs4cit] {
        color: #00b1e5;
        text-shadow: -1px -1px 0 #ffffff, 1px -1px 0 #ffffff, -1px 1px 0 #ffffff, 1px 1px 0 #ffffff;
    }
}

.btn-hero[b-84mqgs4cit] {
    cursor: pointer
}

.btn-hero:hover[b-84mqgs4cit] {
    -webkit-filter: brightness(70%);
}


/*End Index Hero section------------------------------------------- */
/* /Components/SelectTarief.razor.rz.scp.css */
[b-gaj7qk92vs].select-tarief tr:hover td {
    cursor: pointer;
    background-color: #a7d1fd !important;
    background-color: rgba(167, 209, 253, 0.25) !important; 
}

[b-gaj7qk92vs].select-tarief .empty-table {
    color: lightgrey;
    font-size: 24px;
    text-align: center;
    margin: 2rem;
}
/* /Components/Table/CommitCancelActions.razor.rz.scp.css */
/* /Components/Table/DataGridColumnEdit.razor.rz.scp.css */
/* /Components/Table/DataGridColumnEditDelete.razor.rz.scp.css */
/* /Components/Table/EditActions.razor.rz.scp.css */
/* /Components/Table/EditDeleteActions.razor.rz.scp.css */
/* /Components/Table/ReadOnlyCheckBox.razor.rz.scp.css */
[b-z1re3l1d6m].read-only-checkbox .rz-chkbox-box.rz-state-disabled {
    opacity: 1 !important;
}
/* /Components/TriangleHeader.razor.rz.scp.css */
.triangle-topleft[b-obdmrtilwh] {
    width: 0;
    height: 0;
    border-top: 15vh solid #292a2d;
    border-right: 100vw solid transparent;
    transform: translateY(-3px);
}

.triangle-topright[b-obdmrtilwh] {
    width: 0;
    height: 0;
    border-top: 10vh solid rgba(0,177,229,0.8);
    border-left: 100vw solid transparent;
}

.header[b-obdmrtilwh] {
    height: 15vh;
    width: 100%;
    margin: 0;
    border-bottom: 0 !important;
    transform: translateY(-3px);
}

.header-title[b-obdmrtilwh] {
    margin-left: 10%;
}

@media only screen and (max-width: 600px) {
    .header-title[b-obdmrtilwh] {
        top: 90px
    }
}
/* /Components/ZoomInTile.razor.rz.scp.css */

.image-box[b-5i637x9xu4] {
    margin: auto;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    /*border: 1px solid black;*/
    margin-top: 35px;
    cursor: pointer;
    margin-bottom: 35px
}

    .image-box .caption-text[b-5i637x9xu4] {
        top: 0;
        position: absolute;
        color: white;
        font-size: 20px;
        margin: 10px;
        border-radius: 5px;
    }

    .image-box img[b-5i637x9xu4] {
        transition: all 0.3s;
        display: block;
        object-fit: cover;
        height: auto;
        transform: scale(1);
    }

    .image-box:hover img[b-5i637x9xu4] {
        transform: scale(1.1);
    }
/* /Layout/WebsiteLayout.razor.rz.scp.css */

[b-zlhomzw0o7]#website-layout {
    font-family: Roboto
}



/* /Pages/Admin/Invoice/CreateInvoice.razor.rz.scp.css */
/* /Pages/Admin/Invoice/ViewInvoices.razor.rz.scp.css */


[b-5lgd64oiqr].view-facturen .rz-chkbox-box {
    cursor: default !important;
}

    [b-5lgd64oiqr].view-facturen .rz-chkbox-box:hover {
        border-color: var(--rz-base-300);
    }
/* /Pages/Games.razor.rz.scp.css */
/* Modern Games Page Styling */

.modern-games-page[b-87ut0yyb8a] {
    min-height: 100vh;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding-bottom: 4rem;
}

/* Header Section */
.games-header[b-87ut0yyb8a] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.games-header[b-87ut0yyb8a]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.header-content[b-87ut0yyb8a] {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-title[b-87ut0yyb8a] {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    margin: 0 0 1rem 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
}

.page-subtitle[b-87ut0yyb8a] {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: 400;
}

/* Games Grid */
.games-grid[b-87ut0yyb8a] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 400px), 1fr));
    gap: 2rem;
    margin-top: 3rem;
    animation: fadeIn-b-87ut0yyb8a 0.6s ease-out;
}

@keyframes fadeIn-b-87ut0yyb8a {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Game Card */
.game-card[b-87ut0yyb8a] {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    animation: slideUp-b-87ut0yyb8a 0.5s ease-out backwards;
}

.game-card:nth-child(1)[b-87ut0yyb8a] { animation-delay: 0.1s; }
.game-card:nth-child(2)[b-87ut0yyb8a] { animation-delay: 0.2s; }
.game-card:nth-child(3)[b-87ut0yyb8a] { animation-delay: 0.3s; }
.game-card:nth-child(4)[b-87ut0yyb8a] { animation-delay: 0.4s; }
.game-card:nth-child(5)[b-87ut0yyb8a] { animation-delay: 0.5s; }
.game-card:nth-child(6)[b-87ut0yyb8a] { animation-delay: 0.6s; }

@keyframes slideUp-b-87ut0yyb8a {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.game-card:hover[b-87ut0yyb8a] {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Game Image */
.game-image-container[b-87ut0yyb8a] {
    position: relative;
    width: 100%;
    padding-bottom: 60%;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.game-image[b-87ut0yyb8a] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.game-card:hover .game-image[b-87ut0yyb8a] {
    transform: scale(1.08);
}

.image-overlay[b-87ut0yyb8a] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.game-card:hover .image-overlay[b-87ut0yyb8a] {
    opacity: 1;
}

.category-badge[b-87ut0yyb8a] {
    background: white;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Game Content */
.game-content[b-87ut0yyb8a] {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.game-title[b-87ut0yyb8a] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.game-description[b-87ut0yyb8a] {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.7;
    flex: 1;
}

.game-description::v-deep br[b-87ut0yyb8a] {
    display: block;
    content: "";
    margin: 0.5rem 0;
}

/* Empty State */
.empty-state[b-87ut0yyb8a] {
    grid-column: 1 / -1;
    text-align: center;
    padding: 5rem 2rem;
    animation: fadeIn-b-87ut0yyb8a 0.5s ease-out;
}

.empty-icon[b-87ut0yyb8a] {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}

.empty-icon i[b-87ut0yyb8a] {
    font-size: 3.5rem;
    color: white;
}

.empty-title[b-87ut0yyb8a] {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 1rem 0;
}

.empty-text[b-87ut0yyb8a] {
    font-size: 1.125rem;
    color: #718096;
    margin: 0;
    max-width: 500px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .games-header[b-87ut0yyb8a] {
        padding: 3rem 0 4rem;
    }
    
    .page-title[b-87ut0yyb8a] {
        font-size: 2.5rem;
    }
    
    .page-subtitle[b-87ut0yyb8a] {
        font-size: 1.1rem;
    }
    
    .games-grid[b-87ut0yyb8a] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .game-card[b-87ut0yyb8a] {
        border-radius: 16px;
    }
    
    .game-content[b-87ut0yyb8a] {
        padding: 1.5rem;
    }
    
    .game-title[b-87ut0yyb8a] {
        font-size: 1.5rem;
    }
    
    .game-description[b-87ut0yyb8a] {
        font-size: 0.95rem;
    }
    
    .empty-state[b-87ut0yyb8a] {
        padding: 3rem 1rem;
    }
    
    .empty-icon[b-87ut0yyb8a] {
        width: 100px;
        height: 100px;
    }
    
    .empty-icon i[b-87ut0yyb8a] {
        font-size: 3rem;
    }
    
    .empty-title[b-87ut0yyb8a] {
        font-size: 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .games-grid[b-87ut0yyb8a] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1400px) {
    .games-grid[b-87ut0yyb8a] {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Loading Skeleton (optional) */
.game-card.skeleton[b-87ut0yyb8a] {
    pointer-events: none;
}

.game-card.skeleton .game-image-container[b-87ut0yyb8a],
.game-card.skeleton .game-title[b-87ut0yyb8a],
.game-card.skeleton .game-description[b-87ut0yyb8a] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading-b-87ut0yyb8a 1.5s infinite;
}

@keyframes skeleton-loading-b-87ut0yyb8a {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Accessibility - High Contrast Mode */
@media (prefers-contrast: high) {
    .game-card[b-87ut0yyb8a] {
        border: 2px solid #000;
    }
    
    .game-title[b-87ut0yyb8a] {
        color: #000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .game-card[b-87ut0yyb8a],
    .game-image[b-87ut0yyb8a],
    .image-overlay[b-87ut0yyb8a],
    .empty-state[b-87ut0yyb8a],
    .games-grid[b-87ut0yyb8a] {
        animation: none !important;
        transition: none !important;
    }
    
    .game-card:hover[b-87ut0yyb8a] {
        transform: none;
    }
    
    .game-card:hover .game-image[b-87ut0yyb8a] {
        transform: none;
    }
}

/* Print Styles */
@media print {
    .games-header[b-87ut0yyb8a] {
        background: white;
        padding: 1rem 0;
    }
    
    .page-title[b-87ut0yyb8a],
    .page-subtitle[b-87ut0yyb8a] {
        color: black;
    }
    
    .game-card[b-87ut0yyb8a] {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
    
    .image-overlay[b-87ut0yyb8a] {
        display: none;
    }
}
/* /Pages/InfoEnTarieven.razor.rz.scp.css */
.header-title h2[b-ec0krvh06l] {
    position: relative;
    margin-bottom: 45px;
    display: inline-block;
    font-weight: 600;
    line-height: 1;
}

    .header-title h2[b-ec0krvh06l]::before {
        content: "";
        position: absolute;
        left: 30px;
        width: 60px;
        height: 2px;
        background: #0ab5e6;
        bottom: -25px;
        margin-left: -30px;
    }

/* Custom tab styling */
[b-ec0krvh06l].custom-tab .rz-tabview-nav li a, .rz-tabview-nav li a[b-ec0krvh06l] {
    font-size: 35px !important;
    font-weight: bold!important;
}

[b-ec0krvh06l].custom-tab .rz-tabview-top > .rz-tabview-nav {
    justify-content: center;
}

[b-ec0krvh06l].custom-tab .rz-tabview-panel {
    padding: 0.5em;
}
/* New professional styling */
.hero-info-section[b-ec0krvh06l] {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.activity-card[b-ec0krvh06l] {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.activity-card:hover[b-ec0krvh06l] {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

.activity-card .card-header[b-ec0krvh06l] {
    border: none;
    padding: 1.5rem;
    border-radius: 0;
}

.activity-card .card-body[b-ec0krvh06l] {
    padding: 1.5rem;
}

.info-details-section .card[b-ec0krvh06l] {
    border-radius: 15px;
    transition: all 0.3s ease;
}

.info-details-section .card:hover[b-ec0krvh06l] {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

.schedule-container[b-ec0krvh06l] {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
}

.schedule-container .border-bottom:last-child[b-ec0krvh06l] {
    border-bottom: none !important;
}

.activities-showcase[b-ec0krvh06l] {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.activity-description[b-ec0krvh06l] {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.carousel-container[b-ec0krvh06l] {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.faq-section h2[b-ec0krvh06l],
.pricing-section h2[b-ec0krvh06l] {
    background: linear-gradient(135deg, #667eea 0%, #0d9bd4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sponsors-section[b-ec0krvh06l] {
    border-top: 1px solid #e9ecef;
}

/* Enhanced button styling */
.btn[b-ec0krvh06l] {
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn:hover[b-ec0krvh06l] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-danger[b-ec0krvh06l] {
    background: linear-gradient(135deg, #ff4757, #ff3742);
}

.btn-danger:hover[b-ec0krvh06l] {
    background: linear-gradient(135deg, #ff3742, #ff2f3a);
}

/* Card enhancements */
.card[b-ec0krvh06l] {
    border: none;
    transition: all 0.3s ease;
}

.card-title[b-ec0krvh06l] {
    color: #2c3e50;
}

.text-primary[b-ec0krvh06l] {
    color: #0d9bd4 !important;
}

.text-success[b-ec0krvh06l] {
    color: #2ed573 !important;
}

.text-info[b-ec0krvh06l] {
    color: #0d9bd4 !important;
}

/* Alert styling */
.alert-info[b-ec0krvh06l] {
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    border: none;
    border-radius: 10px;
}

/* List styling */
.list-unstyled li[b-ec0krvh06l] {
    transition: all 0.2s ease;
    padding: 0.25rem 0;
}

.list-unstyled li:hover[b-ec0krvh06l] {
    transform: translateX(5px);
}

/* Responsive improvements */
@media (max-width: 768px) {
    .activity-card[b-ec0krvh06l] {
        margin-bottom: 2rem;
    }
    
    .display-4[b-ec0krvh06l],
    .display-5[b-ec0krvh06l] {
        font-size: 2rem;
    }
    
    [b-ec0krvh06l].custom-tab .rz-tabview-nav li a {
        font-size: 20px !important;
       
    }
}
