.pyramid-loader {
    width: 80px;
    height: 80px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate 4s linear infinite;
    margin: 0 auto 30px;
}

.pyramid-face {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 80px solid;
    transform-origin: 50% 100%;
}

.front {
    border-bottom-color: rgba(59, 130, 246, 0.8);
    transform: translateZ(40px) rotateX(30deg);
}

.back {
    border-bottom-color: rgba(139, 92, 246, 0.8);
    transform: translateZ(-40px) rotateY(180deg) rotateX(30deg);
}

.right {
    border-bottom-color: rgba(16, 185, 129, 0.8);
    transform: translateX(40px) rotateY(90deg) rotateX(30deg);
}

.left {
    border-bottom-color: rgba(236, 72, 153, 0.8);
    transform: translateX(-40px) rotateY(-90deg) rotateX(30deg);
}

@keyframes rotate {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.loader-text {
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    text-align: center;
}

.progress-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #3b82f6;
    animation: pulse 1.5s infinite ease-in-out;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
    background-color: #8b5cf6;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
    background-color: #10b981;
}

@keyframes pulse {
    0%, 100% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}
