:root {
    --pc-transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.pc-card-wrapper {
    position: relative;
    display: inline-block;
    perspective: 1000px;
    width: 100%;
    height: 100%;
}

.pc-behind {
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--behind-glow-size);
    height: var(--behind-glow-size);
    background: var(--behind-glow-color);
    filter: blur(80px);
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pc-card-wrapper:hover .pc-behind {
    opacity: 1;
}

.pc-card-shell {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    transition: var(--pc-transition);
    transform-style: preserve-3d;
    cursor: pointer;
    transform: rotateX(var(--rotate-x)) rotateY(var(--rotate-y));
}

.pc-card {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--inner-gradient);
    border-radius: 24px;
    padding: 1px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.pc-inside {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    /* Transparency increased from 0.3 to 0.15 */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 23px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pc-shine {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--pointer-x) var(--pointer-y),
            rgba(255, 255, 255, 0.15) 0%,
            transparent 50%);
    z-index: 2;
    pointer-events: none;
}

.pc-glare {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 50%,
            rgba(255, 255, 255, 0.05) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.pc-card-shell.active .pc-glare {
    opacity: 1;
}

/* Content Styles */
.pc-avatar-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.pc-user-info {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 16px;
}

.pc-user-details {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pc-mini-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.pc-mini-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pc-user-text {
    text-align: left;
}

.pc-handle {
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
}

.pc-status {
    font-size: 0.75rem;
    color: #00ff88;
}

.pc-contact-btn {
    background: white;
    color: black;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.pc-contact-btn:hover {
    transform: scale(1.05);
}

.pc-details {
    padding: 2rem;
    text-align: center;
}

.pc-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(to bottom, #fff, #999);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pc-details p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0.5rem 0 0;
}

/* Pricing Overrides */
.pc-pricing-inside {
    pointer-events: none;
}

.pc-pricing-content {
    pointer-events: auto;
}

.pc-content-wrapper,
.pc-inside>div:not(.pc-shine):not(.pc-glare) {
    position: relative;
    z-index: 10;
    height: 100%;
}