/**
 * Plugin Name: PixelcraftDev Elementor Addon
 * Author: Supapong Sakulkoo (K.Auu)
 * License: Commercial - Proprietary
 * Copyright: (c) 2026 PixelcraftDev. All rights reserved.
 */
/* Gaming Circle Counter — neon glow + flex center */
.pc-gaming-circle-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: 'Kanit', 'Prompt', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.pc-gaming-circle {
    --pc-circle-bg: #00427c;
    --pc-glow-color: rgba(0, 123, 255, 0.5);
    --pc-text-color: #ffffff;
    position: relative;
    width: 100%;
    max-width: 200px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    border-radius: 50%;
    background-color: var(--pc-circle-bg);
    background-clip: padding-box;
    box-shadow:
        0 0 4px rgba(255, 255, 255, 0.12) inset,
        0 0 22px var(--pc-glow-color),
        0 0 44px var(--pc-glow-color);
}

/* Fill off: transparent fill, border & glow still from Elementor / defaults */
.pc-gaming-circle.pcd-gcc--no-fill {
    background-color: transparent !important;
    background-image: none !important;
}

@supports not (aspect-ratio: 1 / 1) {
    .pc-gaming-circle {
        height: 0;
        padding-bottom: 100%;
    }
    .pc-gaming-circle .pc-circle-inner {
        position: absolute;
        inset: 0;
    }
}

.pc-gaming-circle .pc-circle-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12%;
    box-sizing: border-box;
}

.pc-counter-value {
    display: block;
    color: var(--pc-text-color);
    font-weight: 600;
    font-size: clamp(1.5rem, 8vw, 2.75rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.pc-unit-text {
    display: block;
    margin-top: 0.15em;
    color: var(--pc-text-color);
    font-weight: 400;
    font-size: clamp(0.85rem, 4vw, 1.1rem);
    line-height: 1.2;
    opacity: 0.95;
}

.pc-gaming-circle-label {
    margin-top: 0.75rem;
    font-family: 'Kanit', 'Prompt', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.3;
}
