.dnp-spline-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: transparent;
}

.dnp-spline-container iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
}

.dnp-spline-container canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

.dnp-spline-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #666;
    font-size: 14px;
    z-index: 1;
}

.dnp-spline-loading.hidden {
    display: none;
}

.dnp-spline-error {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #d63638;
    font-size: 14px;
    padding: 20px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dnp-spline-container {
        height: 400px;
    }
}

