/* 
 * Progvision Reaktion Plugin - Kevin Vögle
 * Ein innovatives, interaktives Reaktions-Plugin für Blog-Beiträge
 * © 2025 Progvision - Alle Rechte vorbehalten
 */

.pv-reactions-container {
    position: relative;
    min-height: 25vh;
    margin: 3rem auto;
    padding: 1.5rem 1.5rem 1.5rem;
    background: linear-gradient(145deg, rgba(16, 20, 30, 0.95), rgba(10, 15, 25, 0.95));
    border-radius: 1.5rem;
    overflow: hidden;
    max-width: 750px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.9);
    -webkit-tap-highlight-color: transparent;
    border: 1px solid rgba(50, 100, 255, 0.2);
}
.pv-reactions-container::before,
.pv-reactions-container::after {
    content: '';
    position: absolute;
    z-index: 2;
}

.pv-reactions-container::before {
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 5%,
        rgba(70, 130, 255, 0.7) 20%, 
        rgba(100, 160, 255, 0.9) 50%, 
        rgba(70, 130, 255, 0.7) 80%, 
        transparent 95%
    );
    box-shadow: 0 0 10px rgba(100, 160, 255, 0.7);
    animation: none;
}

.pv-reactions-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(20, 30, 60, 0) 20%, rgba(70, 130, 255, 0.05) 50%, rgba(20, 30, 60, 0) 80%);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.pv-reactions-container::before {
    box-shadow: 0 0 20px rgba(100, 160, 255, 0.5);
}

.pv-reaction-btn.active .pv-reaction-count {
    animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
    0% { text-shadow: 0 0 8px var(--reaction-glow-color, rgba(255, 255, 255, 0.8)); }
    100% { text-shadow: 0 0 15px var(--reaction-glow-color, rgba(255, 255, 255, 1)); }
}
.pv-reactions-branding {
    position: absolute;
    bottom: 10px;
    right: 15px;
    display: flex;
    align-items: center;
    font-size: 0.7rem;
    color: rgba(150, 220, 255, 0.8);
    z-index: 5;
    text-shadow: 0 0 5px rgba(80, 180, 255, 0.8);
    transform-style: preserve-3d;
    perspective: 500px;
    opacity: 0.8;
}

.pv-reactions-branding .pv-logo {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    filter: drop-shadow(0 0 5px rgba(13, 110, 253, 0.8));
    transform: rotateY(0deg);
    animation: logoSpin 8s linear infinite;
}

.pv-reactions-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin: -0.25rem 0 1.25rem;
    color: #fff;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.pv-reactions-title::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(80, 120, 255, 0.5), 
        rgba(120, 160, 255, 0.8), 
        rgba(80, 120, 255, 0.5), 
        transparent
    );
    filter: blur(1px);
    border-radius: 50px;
}
.pv-reactions-grid {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    max-width: 700px;
    margin: 0 auto;
    transform-style: preserve-3d;
}
.pv-reaction-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 0.7rem 0.5rem;
    flex: 1;
    min-width: 0;
    background: rgba(15, 20, 35, 0.8);
    border: 1px solid rgba(50, 100, 255, 0.2);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transform-style: preserve-3d;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}
.pv-reaction-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 25%, rgba(13, 110, 253, 0.05) 25%, 
        rgba(13, 110, 253, 0.05) 50%, transparent 50%, transparent 75%, 
        rgba(13, 110, 253, 0.05) 75%);
    background-size: 8px 8px;
    opacity: 0.3;
    z-index: 0;
}

.pv-reaction-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--reaction-color, rgba(13, 110, 253, 0.15));
    opacity: 0;
    transition: all 0.5s ease;
    transform: scale(0.6);
    z-index: 0;
    border-radius: 50%;
    filter: blur(10px);
}

.pv-reaction-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 
        0 8px 20px -5px rgba(0, 0, 0, 0.4),
        0 0 12px var(--reaction-glow-color, rgba(255, 255, 255, 0.7));
}

.pv-reaction-btn:hover::after {
    opacity: 0.6;
    transform: scale(1.3);
}
.pv-reaction-btn.active {
    transform: translateY(-2px) scale(1.02);
    background-color: rgba(20, 30, 50, 0.9);
    box-shadow: 
        inset 0 0 20px var(--reaction-glow-color, rgba(255, 255, 255, 0.3)),
        0 0 15px var(--reaction-glow-color, rgba(255, 255, 255, 0.8));
    border: 1px solid var(--reaction-glow-color, rgba(255, 255, 255, 0.8));
}

.pv-reaction-btn.active::after {
    opacity: 0.8;
    transform: scale(1.1);
}
.pv-reaction-btn .pv-reaction-emoji {
    width: 42px;
    height: 42px;
    margin-bottom: 0.25rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pv-reaction-btn .pv-reaction-emoji svg {
    width: 100%;
    height: 100%;
    fill: var(--reaction-color-bright, rgba(255, 255, 255, 0.9));
    transition: all 0.3s ease;
    transform-origin: center;
    filter: drop-shadow(0 0 5px var(--reaction-glow-color, rgba(255, 255, 255, 0.6)));
}

.pv-reaction-btn:hover .pv-reaction-emoji {
    transform: scale(1.3) rotate(5deg);
    filter: drop-shadow(0 0 10px var(--reaction-glow-color, rgba(13, 110, 253, 0.6)));
    animation-play-state: paused;
}

.pv-reaction-btn:hover .pv-reaction-emoji svg {
    fill: var(--reaction-color-bright, var(--reaction-glow-color, #0d6efd));
}

.pv-reaction-btn.active .pv-reaction-emoji {
    transform: scale(1.2);
    animation: activeEmoji 1.5s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 15px var(--reaction-glow-color, rgba(13, 110, 253, 0.7)));
}

.pv-reaction-btn.active .pv-reaction-emoji svg {
    fill: var(--reaction-color-bright, var(--reaction-glow-color, #0d6efd));
}
.pv-reaction-btn.like .pv-reaction-emoji svg.pv-icon {
    --icon-primary: var(--reaction-color-bright, #0d6efd);
    --icon-secondary: rgba(255, 255, 255, 0.9);
    --icon-accent: #032a75;
}

.pv-reaction-btn.dislike .pv-reaction-emoji svg.pv-icon {
    --icon-primary: var(--reaction-color-bright, #dc3545);
    --icon-secondary: rgba(255, 255, 255, 0.9);
    --icon-accent: #6b0a17;
}

.pv-reaction-btn.heart .pv-reaction-emoji svg.pv-icon {
    --icon-primary: var(--reaction-color-bright, #e25353);
    --icon-secondary: rgba(255, 255, 255, 0.9);
    --icon-accent: #7a1818;
}

.pv-reaction-btn.laugh .pv-reaction-emoji svg.pv-icon {
    --icon-primary: var(--reaction-color-bright, #ffc107);
    --icon-secondary: rgba(255, 255, 255, 0.9);
    --icon-accent: #7d5e00;
}

.pv-reaction-btn.wow .pv-reaction-emoji svg.pv-icon {
    --icon-primary: var(--reaction-color-bright, #17a2b8);
    --icon-secondary: rgba(255, 255, 255, 0.9);
    --icon-accent: #03454f;
}

.pv-reaction-btn.sad .pv-reaction-emoji svg.pv-icon {
    --icon-primary: var(--reaction-color-bright, #6610f2);
    --icon-secondary: rgba(255, 255, 255, 0.9);
    --icon-accent: #2c057a;
}

.pv-reaction-btn.angry .pv-reaction-emoji svg.pv-icon {
    --icon-primary: var(--reaction-color-bright, #fd7e14);
    --icon-secondary: rgba(255, 255, 255, 0.9);
    --icon-accent: #873a00;
}

.pv-reaction-btn .pv-reaction-name {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0.15rem 0 0.1rem;
    color: #fff;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 5px var(--reaction-glow-color, rgba(255, 255, 255, 0.7));
}

.pv-reaction-btn .pv-reaction-count {
    font-family: 'Inter', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--reaction-glow-color, #0d6efd);
    position: relative;
    z-index: 1;
    text-shadow: 0 0 8px var(--reaction-glow-color, rgba(13, 110, 253, 0.8));
    transition: all 0.3s ease;
}

.pv-reaction-btn .pv-reaction-count.count-update {
    animation: countPulse 0.5s ease-out;
}

.pv-reaction-btn.like {
    --reaction-color: rgba(0, 110, 255, 0.3);
    --reaction-glow-color: rgba(0, 150, 255, 0.9);
    --emoji-delay: 0;
}

.pv-reaction-btn.like.active {
    border-color: #0080ff;
    box-shadow: 0 0 15px rgba(0, 140, 255, 0.7), 0 0 30px rgba(0, 140, 255, 0.4);
}

.pv-reaction-btn.dislike, .pv-reaction-btn.heart {
    --reaction-color: rgba(255, 50, 90, 0.3);
    --reaction-glow-color: rgba(255, 50, 90, 0.9);
    --emoji-delay: 0.3;
}

.pv-reaction-btn.dislike.active, .pv-reaction-btn.heart.active {
    border-color: #ff3260;
    box-shadow: 0 0 15px rgba(255, 50, 90, 0.7), 0 0 30px rgba(255, 50, 90, 0.4);
}

.pv-reaction-btn.laugh {
    --reaction-color: rgba(255, 120, 0, 0.3);
    --reaction-glow-color: rgba(255, 130, 20, 0.9);
    --emoji-delay: 0.6;
}

.pv-reaction-btn.laugh.active {
    border-color: #ff8000;
    box-shadow: 0 0 15px rgba(255, 130, 20, 0.7), 0 0 30px rgba(255, 130, 20, 0.4);
}

.pv-reaction-btn.wow {
    --reaction-color: rgba(0, 200, 220, 0.3);
    --reaction-glow-color: rgba(0, 220, 255, 0.9);
    --emoji-delay: 0.9;
}

.pv-reaction-btn.wow.active {
    border-color: #00c8e0;
    box-shadow: 0 0 15px rgba(0, 220, 255, 0.7), 0 0 30px rgba(0, 220, 255, 0.4);
}

.pv-reaction-btn.sad {
    --reaction-color: rgba(100, 80, 255, 0.3);
    --reaction-glow-color: rgba(120, 90, 255, 0.9);
    --emoji-delay: 1.2;
}

.pv-reaction-btn.sad.active {
    border-color: #7050ff;
    box-shadow: 0 0 15px rgba(120, 90, 255, 0.7), 0 0 30px rgba(120, 90, 255, 0.4);
}

.pv-reaction-btn.angry {
    --reaction-color: rgba(255, 80, 0, 0.3);
    --reaction-glow-color: rgba(255, 100, 0, 0.9);
    --emoji-delay: 1.5;
}

.pv-reaction-btn.angry.active {
    border-color: #ff6000;
    box-shadow: 0 0 15px rgba(255, 100, 0, 0.7), 0 0 30px rgba(255, 100, 0, 0.4);
}

.pv-reaction-animation {
    animation: reaction-explode 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes reaction-explode {
    0% { transform: scale(1); filter: brightness(1); }
    10% { transform: scale(0.8); filter: brightness(1.5); }
    50% { transform: scale(1.8); filter: brightness(1.8) blur(2px); }
    80% { transform: scale(1.15) rotate(5deg); filter: brightness(1.3); }
    100% { transform: scale(1); filter: brightness(1); }
}

@keyframes textShimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes floatingEmoji {
    0% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-4px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0); }
}

@keyframes activeEmoji {
    0% { transform: scale(1.1); }
    100% { transform: scale(1.3); }
}

@keyframes neonPulseX {
    0% { background-position: -100% 0; opacity: 0.7; }
    100% { background-position: 200% 0; opacity: 1; }
}

@keyframes neonPulseY {
    0% { background-position: 0 -100%; opacity: 0.7; }
    100% { background-position: 0 200%; opacity: 1; }
}

@keyframes logoSpin {
    0% { transform: rotateY(0deg) rotateX(10deg); }
    50% { transform: rotateY(180deg) rotateX(-5deg); }
    100% { transform: rotateY(360deg) rotateX(10deg); }
}

@keyframes countPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.5); filter: brightness(1.5); }
    100% { transform: scale(1); }
}

.pv-reaction-tooltip {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 20, 0.85);
    color: #0d6efd;
    border: 1px solid var(--reaction-glow-color, rgba(13, 110, 253, 0.6));
    padding: 0.35rem 1rem;
    border-radius: 2px;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 10px var(--reaction-glow-color, rgba(13, 110, 253, 0.4)),
        inset 0 0 5px var(--reaction-glow-color, rgba(13, 110, 253, 0.4));
    z-index: 10;
    text-shadow: 0 0 5px var(--reaction-glow-color, rgba(13, 110, 253, 0.6));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.pv-reaction-tooltip::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: rgba(10, 10, 20, 0.85);
    border-right: 1px solid var(--reaction-glow-color, rgba(13, 110, 253, 0.6));
    border-bottom: 1px solid var(--reaction-glow-color, rgba(13, 110, 253, 0.6));
    transform: translateX(-50%) rotate(45deg);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.pv-reaction-tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 
        1px 1px 0 var(--reaction-glow-color, rgba(13, 110, 253, 0.6)), 
        -1px -1px 0 var(--reaction-glow-color, rgba(13, 110, 253, 0.6));
    opacity: 0.7;
    mix-blend-mode: overlay;
}

.pv-reaction-btn:hover .pv-reaction-tooltip {
    opacity: 1;
    visibility: visible;
    top: -40px;
    animation: tooltipGlitch 3s infinite linear;
}

@keyframes tooltipGlitch {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translateX(-50%); }
    1%, 4%, 7% { 
        clip-path: inset(40% 0 61% 0); 
        transform: translateX(-51%) skew(1deg); 
    }
    2%, 8% { 
        clip-path: inset(10% 0 82% 0); 
        transform: translateX(-49%) skew(-1deg); 
    }
    3%, 9% { 
        clip-path: inset(32% 0 2% 0); 
        transform: translateX(-50.5%) skew(0.5deg); 
    }
    5% { 
        clip-path: inset(59% 0 43% 0); 
        transform: translateX(-52%) skew(-0.5deg); 
    }
    6% { 
        clip-path: inset(24% 0 78% 0); 
        transform: translateX(-48%); 
    }
}

.pv-reactions-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%, 
        rgba(32, 196, 255, 0) 49.9%, 
        rgba(32, 196, 255, 0.3) 50%, 
        rgba(32, 196, 255, 0) 50.1%, 
        transparent 100%
    );
    background-size: 100% 200%;
    pointer-events: none;
    animation: scanLine 4s linear infinite;
    z-index: 3;
    mix-blend-mode: overlay;
}

@keyframes scanLine {
    0% { background-position: 0 -200%; }
    100% { background-position: 0 200%; }
}

@media (max-width: 992px) {
    .pv-reactions-container {
        max-width: 90%;
    }

    .pv-reactions-grid {
        flex-wrap: wrap;
        gap: 0.6rem;
    }
    
    .pv-reaction-btn {
        padding: 0.7rem 0.5rem 0.5rem;
        flex-basis: calc(33.33% - 0.5rem);
        flex-grow: 1;
    }
    
    .pv-reaction-btn .pv-reaction-emoji {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 768px) {
    .pv-reactions-container {
        padding: 1.5rem 1rem 1.2rem;
        margin: 2.5rem auto;
        border-radius: 1.25rem;
    }
    
    .pv-reaction-btn {
        padding: 0.6rem 0.4rem 0.4rem;
    }
    
    .pv-reaction-btn .pv-reaction-emoji {
        width: 34px;
        height: 34px;
        margin-bottom: 0.2rem;
    }
    
    .pv-reaction-btn .pv-reaction-count {
        font-size: 1.1rem;
    }
    
    .pv-reactions-title {
        font-size: 1.3rem;
        margin: 0 0 1.2rem;
    }
}

@media (max-width: 576px) {
    .pv-reactions-container {
        border-radius: 1.25rem;
        padding: 1.2rem 0.8rem 1rem;
        max-width: 95%;
    }
    
    .pv-reactions-grid {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .pv-reaction-btn {
        padding: 0.5rem 0.3rem 0.4rem;
        flex-basis: calc(50% - 0.4rem);
        min-width: 0;
    }
    
    .pv-reaction-btn .pv-reaction-emoji {
        width: 30px;
        height: 30px;
    }
    
    .pv-reaction-btn .pv-reaction-name {
        font-size: 0.65rem;
        margin: 0.1rem 0;
    }
    
    .pv-reaction-btn .pv-reaction-count {
        font-size: 1rem;
    }
    
    .pv-reactions-title {
        font-size: 1.25rem;
        margin: 0 0 1rem;
    }
    
    .pv-reactions-branding {
        bottom: 8px;
        right: 10px;
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .pv-reactions-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.45rem;
    }
    
    .pv-reaction-btn {
        padding: 0.45rem 0.35rem;
    }
    
    .pv-reaction-btn .pv-reaction-emoji {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 400px) {
    .pv-reactions-container {
        border-radius: 1.2rem;
        padding: 1.5rem 0.6rem 1rem;
    }
    
    .pv-reactions-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.4rem;
        max-width: 100%;
    }
    
    .pv-reactions-title {
        font-size: 1.2rem;
    }
    
    .pv-reaction-btn {
        padding: 0.4rem 0.3rem;
    }
    
    .pv-reaction-btn .pv-reaction-emoji {
        width: 24px;
        height: 24px;
    }
    
    .pv-reaction-btn .pv-reaction-name {
        font-size: 0.55rem;
    }
    
    .pv-reaction-btn .pv-reaction-count {
        font-size: 0.8rem;
    }
}

.pv-reactions-mobile .pv-reaction-btn.touch-active {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 10px 20px -5px rgba(0, 0, 0, 0.3),
        0 0 15px var(--reaction-glow-color, rgba(13, 110, 253, 0.6));
    border: 1px solid var(--reaction-glow-color, rgba(13, 110, 253, 0.6));
    z-index: 5;
}

.pv-reactions-mobile .pv-reaction-btn.touch-active .pv-reaction-emoji {
    transform: scale(1.2);
}

.pv-reactions-mobile .pv-reaction-btn.touch-active .pv-reaction-tooltip {
    opacity: 1;
    visibility: visible;
    top: -40px;
}

@media (max-width: 768px) {
    .pv-reactions-container::before,
    .pv-reactions-container::after {
        animation-duration: 6s;
    }
    
    .pv-reaction-btn .pv-reaction-emoji {
        animation-duration: 5s; 
    }
    
    @keyframes tooltipGlitch {
        0%, 100% { clip-path: inset(0 0 0 0); transform: translateX(-50%); }
        5%, 10% { 
            clip-path: inset(40% 0 61% 0); 
            transform: translateX(-51%);
        }
        15%, 20% { 
            clip-path: inset(10% 0 82% 0); 
            transform: translateX(-49%);
        }
    }
}

@media (max-width: 900px) and (orientation: landscape) {
    .pv-reactions-container {
        padding: 1.5rem 1.2rem 1.2rem;
        margin: 2rem 0;
        min-height: auto;
    }
    
    .pv-reactions-grid {
        grid-template-columns: repeat(7, 1fr);
        gap: 0.5rem;
        max-width: 90%;
    }
    
    .pv-reaction-btn {
        padding: 0.4rem 0.3rem;
        max-height: 18vh; 
    }
    
    .pv-reaction-btn .pv-reaction-emoji {
        width: 30px;
        height: 30px;
        margin-bottom: 0.2rem;
    }
    
    .pv-reaction-btn .pv-reaction-name {
        font-size: 0.6rem;
        margin: 0.1rem 0;
    }
    
    .pv-reaction-btn .pv-reaction-count {
        font-size: 0.8rem;
    }
    
    .pv-reactions-title {
        font-size: 1.3rem;
        margin: -0.2rem 0 1rem;
    }

    @supports (-webkit-touch-callout: none) {
        .pv-reactions-container {
            padding-bottom: 2rem;
        }
    }
}

@media (max-width: 740px) and (orientation: landscape) {
    .pv-reactions-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 600px) and (orientation: landscape) {
    .pv-reactions-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .pv-reaction-btn {
        max-height: 15vh;
    }
    
    .pv-reaction-btn .pv-reaction-emoji {
        width: 28px;
        height: 28px;
    }
}

@media (max-height: 400px) and (orientation: landscape) {
    .pv-reactions-container {
        padding: 1rem 1rem 1rem;
        margin: 1.5rem 0;
    }
    
    .pv-reactions-title {
        font-size: 1.1rem;
        margin: 0 0 0.8rem;
    }
    
    .pv-reaction-btn {
        max-height: 80%;
        padding: 0.3rem 0.2rem;
    }
    
    .pv-reaction-btn .pv-reaction-emoji {
        width: 30px;
        height: 40px;
        margin-bottom: 0.1rem;
    }
    
    .pv-reaction-btn .pv-reaction-name {
        font-size: 0.55rem;
        margin: 0.05rem 0;
    }
    
    .pv-reaction-btn .pv-reaction-count {
        font-size: 0.75rem;
    }

    .pv-reactions-branding {
        opacity: 0.5;
        transform: scale(0.8);
        transform-origin: bottom right;
    }
}

.pv-reactions-mobile .pv-reaction-btn {
    user-select: none;
    -webkit-user-select: none;
}

.pv-reactions-landscape .pv-reactions-title {
    margin-top: 0;
    padding-top: 0;
}

.pv-reactions-landscape .pv-reactions-branding {
    bottom: 5px;
    right: 20px;
    font-size: 0.65rem;
}

.pv-reactions-landscape .pv-reactions-branding .pv-logo {
    width: 18px;
    height: 18px;
}

.pv-reactions-landscape .pv-reaction-btn:hover,
.pv-reactions-landscape .pv-reaction-btn.touch-active {
    transform: translateY(-4px) scale(1.03);
}

.pv-reactions-landscape .pv-reaction-btn.active {
    transform: translateY(-2px) scale(1.01);
}

.pv-reactions-compact-landscape .pv-reactions-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 0.4rem !important;
}

.pv-reactions-compact-landscape .pv-reaction-btn {
    padding: 0.35rem 0.25rem !important;
}

.pv-reactions-compact-landscape .pv-reaction-btn .pv-reaction-emoji {
    width: 26px !important;
    height: 26px !important;
}

.pv-reactions-compact-landscape .pv-reaction-btn .pv-reaction-name {
    font-size: 0.55rem !important;
}

.pv-reactions-compact-landscape .pv-reaction-btn:hover,
.pv-reactions-compact-landscape .pv-reaction-btn.touch-active {
    transform: translateY(-3px) scale(1.02) !important;
}

.pv-reactions-container {
    animation: neonEntry 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes neonEntry {
    0% { 
        opacity: 0; 
        transform: translateY(20px) scale(0.97); 
        filter: brightness(1.7) blur(8px);
    }
    60% {
        opacity: 0.8;
        filter: brightness(1.3) blur(1px);
    }
    80% {
        filter: brightness(1.1) blur(0);
        box-shadow: 0 0 30px rgba(70, 130, 255, 0.7);
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
        filter: brightness(1) blur(0);
    }
}
