/* /Layout/AppBar.razor.rz.scp.css */
.blaze-roc-logo[b-0grr99pecx] {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-weight: 900;
    font-size: 28px;
    letter-spacing: 2px;
    cursor: pointer;
    user-select: none;
    text-shadow: 0 0 20px rgba(255, 87, 34, 0.5),
    0 0 40px rgba(255, 87, 34, 0.3);
    transition: all 0.3s ease;
}

.blaze-roc-logo:hover[b-0grr99pecx] {
    transform: scale(1.05);
    text-shadow: 0 0 30px rgba(255, 87, 34, 0.8),
    0 0 60px rgba(255, 87, 34, 0.5);
}

.logo-blaze[b-0grr99pecx] {
    background: linear-gradient(135deg, #ff5722 0%, #ff9800 50%, #ffc107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: blazeGlow-b-0grr99pecx 3s ease-in-out infinite;
}

.logo-roc[b-0grr99pecx] {
    background: linear-gradient(135deg, #f44336 0%, #e91e63 50%, #9c27b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rocGlow-b-0grr99pecx 3s ease-in-out infinite;
}

.logo-divider[b-0grr99pecx] {
    color: #ff5722;
    opacity: 0.6;
    font-weight: 100;
    animation: pulse-b-0grr99pecx 2s ease-in-out infinite;
}

@keyframes blazeGlow-b-0grr99pecx {
    0%, 100% {
        filter: brightness(1) saturate(1);
    }
    50% {
        filter: brightness(1.2) saturate(1.3);
    }
}

@keyframes rocGlow-b-0grr99pecx {
    0%, 100% {
        filter: brightness(1) saturate(1);
    }
    50% {
        filter: brightness(1.3) saturate(1.2);
    }
}

@keyframes pulse-b-0grr99pecx {
    0%, 100% {
        opacity: 0.4;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.8;
        transform: scaleY(1.1);
    }
}

/* /Layout/MainLayout.razor.rz.scp.css */
/* /Layout/NavMenu.razor.rz.scp.css */
/* /Pages/Home.razor.rz.scp.css */
/* Home Page Scoped Styles */

/* Keyframe Animations */
@keyframes grid-drift-b-od49l2pr3m {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-40px);
    }
}

@keyframes pulse-slow-b-od49l2pr3m {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes pulse-slow-delayed-b-od49l2pr3m {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes fade-in-up-b-od49l2pr3m {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scroll-down-b-od49l2pr3m {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(8px);
    }
}

/* Animation Classes */
.animate-grid-drift[b-od49l2pr3m] {
    animation: grid-drift-b-od49l2pr3m 20s ease-in-out infinite;
}

.animate-pulse-slow[b-od49l2pr3m] {
    animation: pulse-slow-b-od49l2pr3m 4s ease-in-out infinite;
}

.animate-pulse-slow-delayed[b-od49l2pr3m] {
    animation: pulse-slow-delayed-b-od49l2pr3m 4s ease-in-out infinite 2s;
}

.animate-fade-in-up[b-od49l2pr3m] {
    animation: fade-in-up-b-od49l2pr3m 1s ease-out;
}

.animate-scroll-down[b-od49l2pr3m] {
    animation: scroll-down-b-od49l2pr3m 2s ease-in-out infinite;
}

/* Custom Utility Classes */
.bg-size-80[b-od49l2pr3m] {
    background-size: 80px 80px;
}

.bg-size-40[b-od49l2pr3m] {
    background-size: 40px 40px;
}

.aspect-3-4[b-od49l2pr3m] {
    aspect-ratio: 3 / 4;
}

/* Hero Section Grid Pattern */
.grid-pattern[b-od49l2pr3m] {
    background-image: linear-gradient(rgba(220, 38, 38, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 38, 38, 0.05) 1px, transparent 1px);
}

.grid-pattern-gameplay[b-od49l2pr3m] {
    background-image: linear-gradient(rgba(220, 38, 38, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 38, 38, 0.1) 1px, transparent 1px);
}

/* Carousel Hero Card Styles */
.carousel-hero-card[b-od49l2pr3m] {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.carousel-hero-card:hover[b-od49l2pr3m] {
    transform: scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(220, 38, 38, 0.3);
}

/* MudBlazor Carousel Override for Hero Section */
[b-od49l2pr3m] .hero-carousel .mud-carousel-elements {
    height: 100%;
}

[b-od49l2pr3m] .hero-carousel .mud-carousel-item {
    padding: 0;
}

[b-od49l2pr3m] .hero-carousel .mud-button-root {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

[b-od49l2pr3m] .hero-carousel .mud-button-root:hover {
    background: rgba(220, 38, 38, 0.8);
    border-color: rgba(220, 38, 38, 0.5);
    transform: scale(1.1);
}

[b-od49l2pr3m] .hero-carousel .mud-carousel-bullets .mud-button-root {
    width: 12px;
    height: 12px;
    min-width: 12px;
    min-height: 12px;
    border-radius: 50%;
    padding: 0;
    margin: 0 6px;
}

[b-od49l2pr3m] .hero-carousel .mud-carousel-bullets-item.mud-carousel-bullets-active .mud-button-root {
    background: rgba(220, 38, 38, 0.9);
    width: 32px;
    border-radius: 6px;
}

[b-od49l2pr3m] .hero-carousel .mud-carousel-bullets {
    margin-top: 24px;
}

/* /Pages/PrivacyPolicy.razor.rz.scp.css */
.privacy-page-wrapper[b-s44uc83fue] {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
}

.stepper-sidebar[b-s44uc83fue] {
    position: relative;
}

.sticky-stepper[b-s44uc83fue] {
    position: sticky;
    top: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.privacy-container[b-s44uc83fue] {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.6s ease-out;
}

@
@keyframes fadeInUp {
    from[b-s44uc83fue] {
        opacity: 0;
        transform: translateY(30px);
    }

    to[b-s44uc83fue] {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacy-stepper[b-s44uc83fue] {
    width: 100%;
}

.section-card[b-s44uc83fue] {
    scroll-margin-top: 100px;
    animation: slideIn 0.5s ease-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-card:hover[b-s44uc83fue] {
    transform: translateX(5px);
}

@
@keyframes slideIn {
    from[b-s44uc83fue] {
        opacity: 0;
        transform: translateX(-20px);
    }

    to[b-s44uc83fue] {
        opacity: 1;
        transform: translateX(0);
    }
}

@
@media (max-width: 960px) {
    .sticky-stepper[b-s44uc83fue] {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }

    .privacy-container[b-s44uc83fue] {
        padding: 1.5rem;
    }
}
/* /Pages/TermsAndConditions.razor.rz.scp.css */
.terms-page-wrapper[b-sin449lme5] {
    min-height: 100vh;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    background-attachment: fixed;
}

.stepper-sidebar[b-sin449lme5] {
    position: relative;
}

.sticky-stepper[b-sin449lme5] {
    position: sticky;
    top: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.terms-container[b-sin449lme5] {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.6s ease-out;
}

@
@keyframes fadeInUp {
    from[b-sin449lme5] {
        opacity: 0;
        transform: translateY(30px);
    }

    to[b-sin449lme5] {
        opacity: 1;
        transform: translateY(0);
    }
}

.terms-stepper[b-sin449lme5] {
    width: 100%;
}

.section-card[b-sin449lme5] {
    scroll-margin-top: 100px;
    animation: slideIn 0.5s ease-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-card:hover[b-sin449lme5] {
    transform: translateX(5px);
}

@
@keyframes slideIn {
    from[b-sin449lme5] {
        opacity: 0;
        transform: translateX(-20px);
    }

    to[b-sin449lme5] {
        opacity: 1;
        transform: translateX(0);
    }
}

@
@media (max-width: 960px) {
    .sticky-stepper[b-sin449lme5] {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }

    .terms-container[b-sin449lme5] {
        padding: 1.5rem;
    }
}
