/* Kopen Page Loading Screen Styles */
.kopen-loading-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    padding: 20px;
    font-family: 'Space Grotesk', sans-serif;
}

.kopen-loading-content {
    text-align: center;
    max-width: 500px;
}

.kopen-spinner {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    position: relative;
}

.kopen-spinner-ring {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(240, 201, 108, 0.1);
    border-top-color: #f0c96c;
    border-radius: 50%;
    animation: kopen-spin 1s linear infinite;
}

@keyframes kopen-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.kopen-loading-title {
    font-size: 32px;
    font-weight: 700;
    color: #f0c96c;
    margin-bottom: 15px;
    animation: kopen-pulse 2s ease-in-out infinite;
}

.kopen-loading-subtitle {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 30px;
}

.kopen-loading-dots {
    display: inline-flex;
    gap: 8px;
}

.kopen-dot {
    width: 10px;
    height: 10px;
    background-color: #f0c96c;
    border-radius: 50%;
    animation: kopen-bounce 1.4s ease-in-out infinite;
}

.kopen-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.kopen-dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes kopen-bounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

@keyframes kopen-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.kopen-whatsapp-icon {
    font-size: 60px;
    color: #25D366;
    margin-bottom: 20px;
    animation: kopen-float 3s ease-in-out infinite;
}

@keyframes kopen-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .kopen-loading-title {
        font-size: 26px;
    }
    
    .kopen-loading-subtitle {
        font-size: 16px;
    }
    
    .kopen-spinner {
        width: 60px;
        height: 60px;
    }
    
    .kopen-spinner-ring {
        width: 60px;
        height: 60px;
    }
    
    .kopen-whatsapp-icon {
        font-size: 50px;
    }
}
