.angie-3d-viewer-container-c1695591 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    box-sizing: border-box;
}

.angie-3d-viewer-wrapper-c1695591 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 500px;
    background-color: #2e3b4e; /* Dark background to match the image */
    border-radius: 8px;
    overflow: hidden;
}

.angie-3d-viewer-wrapper-c1695591 model-viewer {
    width: 100%;
    height: 100%;
    background-color: transparent;
    --poster-color: transparent;
}

/* Load Button & Pulse Effect matching the image */
.angie-3d-load-btn-c1695591 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.angie-3d-play-wrapper-c1695591 {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.angie-3d-play-icon-c1695591 {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.angie-3d-play-icon-c1695591 svg {
    width: 24px;
    height: 24px;
    fill: #111827;
    margin-left: 4px; /* visual center for play icon */
    transition: all 0.3s ease;
}

.angie-3d-load-text-c1695591 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    font-family: inherit;
    transition: all 0.3s ease;
}

.angie-pulse-ring,
.angie-pulse-ring-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: angie-pulse-ring 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.angie-pulse-ring-2 {
    animation-delay: 1s;
}

@keyframes angie-pulse-ring {
    0% {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

.angie-3d-load-btn-c1695591:hover {
    transform: translate(-50%, -50%) scale(1.02);
}

.angie-3d-viewer-controls-c1695591 {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 30px;
    padding: 10px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
    border: 1px solid #eaeaea;
    z-index: 10;
}

.angie-3d-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: #334155;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 16px;
    transition: color 0.2s ease;
}

.angie-3d-btn:hover {
    color: #2563eb;
}

.angie-3d-btn svg {
    width: 18px;
    height: 18px;
}

.angie-3d-divider {
    width: 1px;
    height: 24px;
    background-color: #e2e8f0;
    margin: 0 10px;
}

/* Fullscreen mode styles */
model-viewer:-webkit-full-screen {
    width: 100%;
    height: 100%;
}
model-viewer:-moz-full-screen {
    width: 100%;
    height: 100%;
}
model-viewer:fullscreen {
    width: 100%;
    height: 100%;
}