/* /Components/PASCelebration.razor.rz.scp.css */
/* Achievement Notification Styles */
.achievement-overlay[b-8a3zq9qrwr] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.achievement-notification[b-8a3zq9qrwr] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 3px solid #FFD700;
    border-radius: 15px;
    padding: 25px 35px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: achievementSlideIn-b-8a3zq9qrwr 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    min-width: 400px;
    max-width: 90vw;
}

.achievement-icon[b-8a3zq9qrwr] {
    font-size: 4rem;
    animation: iconBounce-b-8a3zq9qrwr 0.8s ease-out 0.3s both;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
}

.achievement-content[b-8a3zq9qrwr] {
    color: white;
    text-align: left;
}

.achievement-title[b-8a3zq9qrwr] {
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FFD700;
    text-shadow:
        0 0 10px rgba(255, 215, 0, 0.5),
        2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: titleGlow-b-8a3zq9qrwr 1s ease-in-out 0.5s both;
    margin-bottom: 8px;
}

.achievement-description[b-8a3zq9qrwr] {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: descriptionFadeIn-b-8a3zq9qrwr 0.6s ease-out 0.7s both;
    margin-bottom: 5px;
}

.achievement-subtitle[b-8a3zq9qrwr] {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: subtitleFadeIn-b-8a3zq9qrwr 0.6s ease-out 0.9s both;
}

.achievement-glow[b-8a3zq9qrwr] {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: glowPulse-b-8a3zq9qrwr 2s ease-in-out infinite;
    pointer-events: none;
}

/* Animations */
@keyframes achievementSlideIn-b-8a3zq9qrwr {
    0% {
        transform: translateY(-100px) scale(0.8);
        opacity: 0;
    }
    50% {
        transform: translateY(10px) scale(1.05);
        opacity: 1;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes iconBounce-b-8a3zq9qrwr {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.3) rotate(-90deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes titleGlow-b-8a3zq9qrwr {
    0% {
        opacity: 0;
        transform: translateX(-20px);
        text-shadow:
            0 0 5px rgba(255, 215, 0, 0.3),
            2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        text-shadow:
            0 0 15px rgba(255, 215, 0, 0.8),
            2px 2px 4px rgba(0, 0, 0, 0.5);
    }
}

@keyframes descriptionFadeIn-b-8a3zq9qrwr {
    0% {
        opacity: 0;
        transform: translateX(-15px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes subtitleFadeIn-b-8a3zq9qrwr {
    0% {
        opacity: 0;
        transform: translateX(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes glowPulse-b-8a3zq9qrwr {
    0%, 100% {
        opacity: 0.1;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.1);
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .achievement-notification[b-8a3zq9qrwr] {
        min-width: 300px;
        padding: 20px 25px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .achievement-icon[b-8a3zq9qrwr] {
        font-size: 3rem;
    }

    .achievement-title[b-8a3zq9qrwr] {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }

    .achievement-description[b-8a3zq9qrwr] {
        font-size: 1.2rem;
    }

    .achievement-subtitle[b-8a3zq9qrwr] {
        font-size: 0.9rem;
    }

    .achievement-content[b-8a3zq9qrwr] {
        text-align: center;
    }
}
/* /Components/PASMatchCelebration.razor.rz.scp.css */
/* PAS Match TikTok-style Celebration */
.pas-match-overlay[b-v8euk509jc] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1500;
    pointer-events: none;
    overflow: hidden;
}

.celebration-content[b-v8euk509jc] {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* TikTok-style animated text */
.celebration-text[b-v8euk509jc] {
    text-align: center;
    z-index: 10;
    animation: textPop-b-v8euk509jc 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.pas-logo[b-v8euk509jc] {
    font-size: 4rem;
    font-weight: 900;
    color: #00C851;
    text-shadow:
        0 0 20px rgba(0, 200, 81, 0.5),
        0 0 40px rgba(0, 200, 81, 0.3),
        3px 3px 0 #fff,
        -3px -3px 0 #fff,
        3px -3px 0 #fff,
        -3px 3px 0 #fff;
    animation: logoGlow-b-v8euk509jc 1s ease-in-out infinite alternate;
    margin-bottom: 10px;
}

.celebration-message[b-v8euk509jc] {
    font-size: 3rem;
    font-weight: 900;
    color: #FFD700;
    text-shadow:
        0 0 15px rgba(255, 215, 0, 0.8),
        3px 3px 0 #FF6B35,
        -3px -3px 0 #FF6B35,
        3px -3px 0 #FF6B35,
        -3px 3px 0 #FF6B35;
    animation: messageShake-b-v8euk509jc 0.5s ease-in-out 0.2s both;
    margin-bottom: 10px;
}

.celebration-submessage[b-v8euk509jc] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00C851;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: subMessageBounce-b-v8euk509jc 0.6s ease-out 0.4s both;
}

/* Particle system */
.particles[b-v8euk509jc] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle[b-v8euk509jc] {
    position: absolute;
    font-size: 2rem;
    animation: particleFloat-b-v8euk509jc 2s ease-out forwards;
}

/* Bouncing elements */
.bouncing-elements[b-v8euk509jc] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bounce-element[b-v8euk509jc] {
    position: absolute;
    font-size: 3rem;
    animation: bounceAround-b-v8euk509jc 2s ease-in-out infinite;
}

.bounce-element:nth-child(1)[b-v8euk509jc] {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.bounce-element:nth-child(2)[b-v8euk509jc] {
    top: 15%;
    right: 25%;
    animation-delay: 0.3s;
}

.bounce-element:nth-child(3)[b-v8euk509jc] {
    bottom: 20%;
    left: 15%;
    animation-delay: 0.6s;
}

.bounce-element:nth-child(4)[b-v8euk509jc] {
    bottom: 25%;
    right: 20%;
    animation-delay: 0.9s;
}

/* Flash effect */
.flash-effect[b-v8euk509jc] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 200, 81, 0.3) 0%, transparent 70%);
    animation: flashPulse-b-v8euk509jc 1.5s ease-out;
}

/* Keyframe animations */
@keyframes textPop-b-v8euk509jc {
    0% {
        transform: scale(0.3) rotate(-10deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(5deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes logoGlow-b-v8euk509jc {
    0% {
        text-shadow:
            0 0 20px rgba(0, 200, 81, 0.5),
            0 0 40px rgba(0, 200, 81, 0.3),
            3px 3px 0 #fff,
            -3px -3px 0 #fff,
            3px -3px 0 #fff,
            -3px 3px 0 #fff;
    }
    100% {
        text-shadow:
            0 0 30px rgba(0, 200, 81, 0.8),
            0 0 60px rgba(0, 200, 81, 0.5),
            3px 3px 0 #fff,
            -3px -3px 0 #fff,
            3px -3px 0 #fff,
            -3px 3px 0 #fff;
    }
}

@keyframes messageShake-b-v8euk509jc {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-3px) rotate(-1deg); }
    20%, 40%, 60%, 80% { transform: translateX(3px) rotate(1deg); }
}

@keyframes subMessageBounce-b-v8euk509jc {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    60% {
        transform: translateY(-5px);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes particleFloat-b-v8euk509jc {
    0% {
        transform: translateY(100vh) scale(0) rotate(0deg);
        opacity: 1;
    }
    10% {
        transform: translateY(80vh) scale(1) rotate(36deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-20vh) scale(0.5) rotate(360deg);
        opacity: 0;
    }
}

@keyframes bounceAround-b-v8euk509jc {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-20px) rotate(90deg) scale(1.2);
    }
    50% {
        transform: translateY(-10px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translateY(-15px) rotate(270deg) scale(1.1);
    }
}

@keyframes flashPulse-b-v8euk509jc {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    20% {
        opacity: 0.8;
        transform: scale(1.2);
    }
    100% {
        opacity: 0;
        transform: scale(2);
    }
}

/* Individual particle animations */
.particle-0[b-v8euk509jc] { top: 90%; left: 10%; animation-delay: 0.1s; }
.particle-1[b-v8euk509jc] { top: 85%; left: 15%; animation-delay: 0.2s; }
.particle-2[b-v8euk509jc] { top: 95%; left: 25%; animation-delay: 0.15s; }
.particle-3[b-v8euk509jc] { top: 80%; left: 35%; animation-delay: 0.3s; }
.particle-4[b-v8euk509jc] { top: 90%; left: 45%; animation-delay: 0.25s; }
.particle-5[b-v8euk509jc] { top: 85%; left: 55%; animation-delay: 0.35s; }
.particle-6[b-v8euk509jc] { top: 95%; left: 65%; animation-delay: 0.4s; }
.particle-7[b-v8euk509jc] { top: 80%; left: 75%; animation-delay: 0.45s; }
.particle-8[b-v8euk509jc] { top: 90%; left: 85%; animation-delay: 0.5s; }
.particle-9[b-v8euk509jc] { top: 85%; left: 95%; animation-delay: 0.55s; }
.particle-10[b-v8euk509jc] { top: 95%; left: 5%; animation-delay: 0.6s; }
.particle-11[b-v8euk509jc] { top: 80%; left: 20%; animation-delay: 0.65s; }
.particle-12[b-v8euk509jc] { top: 90%; left: 40%; animation-delay: 0.7s; }
.particle-13[b-v8euk509jc] { top: 85%; left: 60%; animation-delay: 0.75s; }
.particle-14[b-v8euk509jc] { top: 95%; left: 80%; animation-delay: 0.8s; }

/* Mobile responsiveness */
@media (max-width: 768px) {
    .pas-logo[b-v8euk509jc] {
        font-size: 2.5rem;
    }

    .celebration-message[b-v8euk509jc] {
        font-size: 2rem;
    }

    .celebration-submessage[b-v8euk509jc] {
        font-size: 1.2rem;
    }

    .bounce-element[b-v8euk509jc] {
        font-size: 2rem;
    }

    .particle[b-v8euk509jc] {
        font-size: 1.5rem;
    }
}
/* /Components/VotingPopup.razor.rz.scp.css */
.voting-popup-overlay[b-xa0f8aoliz] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.voting-popup-overlay.show[b-xa0f8aoliz] {
    opacity: 1;
}

.voting-popup[b-xa0f8aoliz] {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: scale(0.8) translateY(50px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.voting-popup.show[b-xa0f8aoliz] {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.voting-popup-content[b-xa0f8aoliz] {
    text-align: center;
}

.voting-emoji[b-xa0f8aoliz] {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: bounce-b-xa0f8aoliz 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    padding: 10px;
    display: inline-block;
}

.voting-emoji:hover[b-xa0f8aoliz] {
    background: rgba(102, 126, 234, 0.1);
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
}

@keyframes bounce-b-xa0f8aoliz {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.voting-popup h3[b-xa0f8aoliz] {
    margin: 0 0 15px 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.4;
}

.voting-popup p[b-xa0f8aoliz] {
    margin: 0 0 30px 0;
    font-size: 1.1rem;
    color: #7f8c8d;
    line-height: 1.5;
}

.voting-popup-button[b-xa0f8aoliz] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    min-width: 200px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.voting-popup-button:hover[b-xa0f8aoliz] {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(102, 126, 234, 0.4);
}

.voting-popup-button:active[b-xa0f8aoliz] {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.voting-popup-close[b-xa0f8aoliz] {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f8f9fa;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.2rem;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.voting-popup-close:hover[b-xa0f8aoliz] {
    background: #e9ecef;
    color: #495057;
    transform: scale(1.1);
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .voting-popup[b-xa0f8aoliz] {
        padding: 30px 20px;
        max-width: 350px;
    }

    .voting-emoji[b-xa0f8aoliz] {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .voting-popup h3[b-xa0f8aoliz] {
        font-size: 1.3rem;
    }

    .voting-popup p[b-xa0f8aoliz] {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .voting-popup-button[b-xa0f8aoliz] {
        padding: 12px 25px;
        font-size: 0.9rem;
        min-width: 180px;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-dk9h6t1w14] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-dk9h6t1w14] {
    flex: 1;
}

.sidebar[b-dk9h6t1w14] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-dk9h6t1w14] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-dk9h6t1w14]  a, .top-row[b-dk9h6t1w14]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-dk9h6t1w14]  a:hover, .top-row[b-dk9h6t1w14]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-dk9h6t1w14]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-dk9h6t1w14] {
        justify-content: space-between;
    }

    .top-row[b-dk9h6t1w14]  a, .top-row[b-dk9h6t1w14]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-dk9h6t1w14] {
        flex-direction: row;
    }

    .sidebar[b-dk9h6t1w14] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-dk9h6t1w14] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-dk9h6t1w14]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-dk9h6t1w14], article[b-dk9h6t1w14] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-zbh6aesupd] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-zbh6aesupd] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-zbh6aesupd] {
    font-size: 1.1rem;
}

.bi[b-zbh6aesupd] {
    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-zbh6aesupd] {
    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-zbh6aesupd] {
    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-zbh6aesupd] {
    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-zbh6aesupd] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-zbh6aesupd] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-zbh6aesupd] {
        padding-bottom: 1rem;
    }

    .nav-item[b-zbh6aesupd]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-zbh6aesupd]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-zbh6aesupd]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-zbh6aesupd] {
        display: none;
    }

    .collapse[b-zbh6aesupd] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-zbh6aesupd] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/MemoryGame.razor.rz.scp.css */
.game-container[b-yxywg8zum7] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    min-height: 100vh;
    background: var(--bg-color);
    color: var(--text-color);
    transition: all 0.3s ease;
}

.game-header[b-yxywg8zum7] {
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.header-top[b-yxywg8zum7] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
}

.game-header h1[b-yxywg8zum7] {
    margin: 0;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    flex: 1;
    text-align: center;
}

.language-selector[b-yxywg8zum7] {
    display: flex;
    gap: 8px;
}

.lang-btn[b-yxywg8zum7] {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 80px;
    justify-content: center;
}

.lang-btn:hover[b-yxywg8zum7] {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.lang-btn.active[b-yxywg8zum7] {
    background: white;
    color: #667eea;
    border-color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.lang-btn .flag[b-yxywg8zum7] {
    font-size: 1.1rem;
}

.lang-btn .lang-name[b-yxywg8zum7] {
    font-size: 0.85rem;
}

.stats[b-yxywg8zum7] {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.stat-item[b-yxywg8zum7] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-label[b-yxywg8zum7] {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 5px;
}

.stat-value[b-yxywg8zum7] {
    font-size: 1.5rem;
    font-weight: bold;
}

.btn-reset[b-yxywg8zum7], .btn-play-again[b-yxywg8zum7] {
    background: white;
    color: #667eea;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-reset:hover[b-yxywg8zum7], .btn-play-again:hover[b-yxywg8zum7] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.game-board[b-yxywg8zum7] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 15px;
}

.card[b-yxywg8zum7] {
    position: relative;
    width: 100%;
    padding-top: 140%;
    cursor: pointer;
    perspective: 1000px;
}

.card-inner[b-yxywg8zum7] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.card.flipped .card-inner[b-yxywg8zum7] {
    transform: rotateY(180deg);
}

.card.matched[b-yxywg8zum7] {
    animation: matchPulse-b-yxywg8zum7 0.5s ease;
}

.card.matched .card-inner[b-yxywg8zum7] {
    animation: matchSuccess-b-yxywg8zum7 0.6s ease;
}

@keyframes matchPulse-b-yxywg8zum7 {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes matchSuccess-b-yxywg8zum7 {
    0% { transform: rotateY(180deg) scale(1); }
    50% { transform: rotateY(180deg) scale(1.1); }
    100% { transform: rotateY(180deg) scale(1); }
}

.card-front[b-yxywg8zum7], .card-back[b-yxywg8zum7] {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-front[b-yxywg8zum7] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.question-mark[b-yxywg8zum7] {
    font-size: 3rem;
    font-weight: bold;
}

.card-back[b-yxywg8zum7] {
    background: var(--card-bg);
    transform: rotateY(180deg);
    padding: 10px;
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
}

.card-back img[b-yxywg8zum7] {
    width: 80%;
    height: 60%;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
}

.card-info[b-yxywg8zum7] {
    text-align: center;
    width: 100%;
}

.person-name[b-yxywg8zum7] {
    font-weight: bold;
    font-size: 0.9rem;
    margin: 5px 0;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

[data-theme="light"] .person-name[b-yxywg8zum7] {
    color: #333333;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.person-team[b-yxywg8zum7] {
    font-size: 0.8rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 8px;
    border-radius: 12px;
    margin: 5px 0;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

[data-theme="light"] .person-team[b-yxywg8zum7] {
    color: #666666;
    background: #f0f0f0;
    border: 1px solid #e0e0e0;
}

.game-complete[b-yxywg8zum7] {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
    border-radius: 20px;
    color: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.game-complete h2[b-yxywg8zum7] {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.final-stats[b-yxywg8zum7] {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
}

.final-stats p[b-yxywg8zum7] {
    font-size: 1.2rem;
    margin: 10px 0;
}

.loading[b-yxywg8zum7] {
    text-align: center;
    font-size: 1.5rem;
    padding: 50px;
    color: var(--primary-color);
}

.game-footer[b-yxywg8zum7] {
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    background: var(--accent-color);
    border-top: 1px solid var(--card-border);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.game-footer a[b-yxywg8zum7] {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.game-footer a:hover[b-yxywg8zum7] {
    color: #764ba2;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .header-top[b-yxywg8zum7] {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .game-header h1[b-yxywg8zum7] {
        font-size: 1.8rem;
        flex: none;
    }

    .language-selector[b-yxywg8zum7] {
        position: static;
        transform: none;
        justify-content: center;
        margin-top: 10px;
    }

    .lang-btn[b-yxywg8zum7] {
        min-width: 70px;
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .stats[b-yxywg8zum7] {
        gap: 15px;
    }

    .stat-value[b-yxywg8zum7] {
        font-size: 1.2rem;
    }

    .game-board[b-yxywg8zum7] {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 10px;
        padding: 10px;
    }

    .game-footer[b-yxywg8zum7] {
        font-size: 0.8rem;
        padding: 15px;
    }
}

/* Instructions Styles */
.header-actions[b-yxywg8zum7] {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-instructions[b-yxywg8zum7] {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-instructions:hover[b-yxywg8zum7] {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-instructions.active[b-yxywg8zum7] {
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
    border-color: white;
}

.instruction-icon[b-yxywg8zum7] {
    background: rgba(255, 255, 255, 0.2);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.btn-instructions.active .instruction-icon[b-yxywg8zum7] {
    background: #667eea;
    color: white;
}

.instructions-panel[b-yxywg8zum7] {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    margin: 20px 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.instructions-panel.show[b-yxywg8zum7] {
    max-height: 400px;
    padding: 25px 30px;
}

.instructions-content h3[b-yxywg8zum7] {
    margin: 0 0 20px 0;
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
}

.instruction-steps[b-yxywg8zum7] {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.instruction-step[b-yxywg8zum7] {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.instruction-step:hover[b-yxywg8zum7] {
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(5px);
}

.step-number[b-yxywg8zum7] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-text[b-yxywg8zum7] {
    color: #34495e;
    font-size: 1rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .header-actions[b-yxywg8zum7] {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-instructions[b-yxywg8zum7] {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
    
    .instructions-panel.show[b-yxywg8zum7] {
        max-height: 500px;
        padding: 20px 15px;
    }
    
    .instruction-step[b-yxywg8zum7] {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .step-text[b-yxywg8zum7] {
        font-size: 0.9rem;
    }
}
