.pvc-view-counter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    padding: 12px 24px;
    border-radius: 12px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    transition: all 0.3s ease;
}

/* Modern Dark Style */
.pvc-style1 {
    background: #1a1a1a;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.pvc-style1:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px -1px rgba(0, 0, 0, 0.15);
}

/* Clean Light Style */
.pvc-style2 {
    background: #ffffff;
    color: #333333;
    border: 1px solid #e5e5e5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.pvc-style2:hover {
    border-color: #d1d1d1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

/* Minimal Style */
.pvc-style3 {
    background: transparent;
    color: #555555;
    border-bottom: 2px solid #e5e5e5;
    border-radius: 0;
    padding: 8px 0;
}
.pvc-style3:hover {
    border-bottom-color: #555555;
}

/* Glass Effect Style */
.pvc-style4 {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #333333;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.pvc-style4:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* New Styles */

/* Gradient Glow Style */
.pvc-style5 {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    border: none;
}
.pvc-style5:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}
.pvc-style5 .pvc-icon {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

/* Neon Pulse Style */
.pvc-style6 {
    background: #1a1a1a;
    color: #fff;
    border: 2px solid #0ff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    animation: neonPulse 2s infinite;
}
@keyframes neonPulse {
    0% { box-shadow: 0 0 15px rgba(0, 255, 255, 0.3); }
    50% { box-shadow: 0 0 25px rgba(0, 255, 255, 0.5); }
    100% { box-shadow: 0 0 15px rgba(0, 255, 255, 0.3); }
}
.pvc-style6:hover {
    background: #2a2a2a;
    border-color: #00ffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

/* Social Media Style */
.pvc-style7 {
    background: #1da1f2;
    color: white;
    border-radius: 9999px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(29, 161, 242, 0.3);
}
.pvc-style7:hover {
    background: #1991db;
    transform: scale(1.05);
}
.pvc-style7 .pvc-icon {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px;
    border-radius: 50%;
}

/* Neumorphic Style */
.pvc-style8 {
    background: #e0e5ec;
    color: #4a5568;
    border-radius: 16px;
    box-shadow: 8px 8px 15px #a3b1c6, -8px -8px 15px #ffffff;
}
.pvc-style8:hover {
    box-shadow: 12px 12px 20px #a3b1c6, -12px -12px 20px #ffffff;
}

/* Cyberpunk Style */
.pvc-style9 {
    background: #000;
    color: #0ff;
    border: 2px solid #ff0;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 2px 2px 0px #ff0;
}
.pvc-style9:hover {
    background: #111;
    border-color: #f0f;
    text-shadow: 2px 2px 0px #f0f;
    transform: skew(-5deg);
}

/* Retro Wave Style */
.pvc-style10 {
    background: linear-gradient(45deg, #ff1493, #ff69b4);
    color: #fff;
    border: 3px solid #00ffff;
    text-shadow: 2px 2px 0px #ff00ff;
    box-shadow: 5px 5px 0px #00ffff, 
               inset -2px -2px 0px rgba(0, 0, 0, 0.3);
    transform: rotate(-2deg);
}
.pvc-style10:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 8px 8px 0px #00ffff,
               inset -3px -3px 0px rgba(0, 0, 0, 0.3);
}

.pvc-icon {
    font-size: 1.2em;
    line-height: 1;
}

.pvc-text {
    font-size: 0.95em;
    font-weight: 500;
}

/* Admin Preview Styles */
#style_preview .pvc-view-counter {
    margin: 10px 0;
}

/* New Milestone-specific styles */

/* Achievement Unlocked Style */
.pvc-milestone1 {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #fff;
    border: none;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: achievementPulse 2s infinite;
}
@keyframes achievementPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.pvc-milestone1 .pvc-icon {
    animation: spinStar 3s linear infinite;
}
@keyframes spinStar {
    100% { transform: rotate(360deg); }
}

/* Hot Post Style */
.pvc-milestone2 {
    background: linear-gradient(45deg, #FF4500, #FF0000);
    color: #fff;
    border: none;
    animation: flamePulse 1.5s ease-in-out infinite;
}
@keyframes flamePulse {
    0% { box-shadow: 0 0 20px rgba(255, 69, 0, 0.5); }
    50% { box-shadow: 0 0 30px rgba(255, 0, 0, 0.7); }
    100% { box-shadow: 0 0 20px rgba(255, 69, 0, 0.5); }
}

/* Star Post Style */
.pvc-milestone3 {
    background: linear-gradient(45deg, #4B0082, #8A2BE2);
    color: #fff;
    border: 2px solid #E6E6FA;
    animation: starShine 3s ease-in-out infinite;
}
@keyframes starShine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Trophy Post Style */
.pvc-milestone4 {
    background: linear-gradient(45deg, #DAA520, #FFD700);
    color: #fff;
    border: 3px solid #B8860B;
    animation: trophyBounce 2s ease-in-out infinite;
}
@keyframes trophyBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Power Post Style */
.pvc-milestone5 {
    background: #000;
    color: #fff;
    border: 2px solid #FFD700;
    animation: powerSurge 1.5s ease-in-out infinite;
}
@keyframes powerSurge {
    0% { box-shadow: 0 0 20px #FFD700; }
    50% { box-shadow: 0 0 40px #FFA500; }
    100% { box-shadow: 0 0 20px #FFD700; }
}
