/* Simple & Beautiful Popup */
.payment-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { 
        opacity: 0;
    }
    to { 
        opacity: 1;
    }
}

.payment-popup-container {
    position: relative;
    background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
    border: 3px solid;
    border-image: linear-gradient(45deg, #ffffff, #888888, #ffffff) 1;
    border-radius: 25px;
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 
        0 0 80px rgba(255, 255, 255, 0.3),
        0 20px 60px rgba(0, 0, 0, 0.8);
}

@keyframes popupSlide {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Close button */
.popup-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close-btn:hover {
    background: #ffffff;
    color: #000000;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

/* Main skull */
.main-skull {
    font-size: 6rem;
    margin-bottom: 20px;
    animation: skullFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.5));
}

@keyframes skullFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Title */
.popup-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.8),
        0 0 40px rgba(255, 255, 255, 0.4);
    animation: titlePulse 2s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% {
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 0.6),
            0 0 40px rgba(255, 255, 255, 0.3);
    }
    50% {
        text-shadow: 
            0 0 30px rgba(255, 255, 255, 1),
            0 0 60px rgba(255, 255, 255, 0.6);
    }
}

/* Payment buttons */
.payment-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.payment-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 35px;
    border-radius: 15px;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-weight: bold;
    font-size: 1.3rem;
    color: white;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.discord-btn {
    background: linear-gradient(135deg, #5865F2, #4752C4);
    box-shadow: 0 8px 30px rgba(88, 101, 242, 0.4);
}

.btn-icon {
    font-size: 2rem;
    transition: all 0.4s ease;
}

.btn-text {
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.payment-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.payment-btn:hover::before {
    width: 300px;
    height: 300px;
}

.payment-btn:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.whatsapp-btn:hover {
    box-shadow: 0 12px 50px rgba(37, 211, 102, 0.7);
}

.discord-btn:hover {
    box-shadow: 0 12px 50px rgba(88, 101, 242, 0.7);
}

.payment-btn:hover .btn-icon {
    transform: scale(1.2) rotate(360deg);
}

.payment-btn:hover .btn-text {
    letter-spacing: 4px;
}

.payment-btn:active {
    transform: translateY(-2px) scale(1.02);
}

/* Info text */
.popup-info {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.8;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: infoPulse 3s ease-in-out infinite;
}

@keyframes infoPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .payment-popup-container {
        padding: 40px 30px;
    }
    
    .popup-title {
        font-size: 1.8rem;
    }
    
    .main-skull {
        font-size: 5rem;
    }
    
    .payment-btn {
        font-size: 1.1rem;
        padding: 18px 30px;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.9);
    }
}


/* Countdown Section */
.countdown-section {
    margin: 30px 0;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(255, 100, 0, 0.05));
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 15px;
    animation: countdownGlow 2s ease-in-out infinite;
}

@keyframes countdownGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 0, 0, 0.6);
    }
}

.countdown-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: #ff0000;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
    animation: titleFlash 1s ease-in-out infinite;
}

@keyframes titleFlash {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.countdown-subtitle {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 80px;
}

.countdown-value {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    animation: numberPulse 1s ease-in-out infinite;
}

@keyframes numberPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.countdown-label {
    font-family: 'Orbitron', monospace;
    font-size: 0.7rem;
    color: #999;
    margin-top: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.countdown-complete {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: #00ff00;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
    animation: completeFlash 0.5s ease-in-out infinite;
}

@keyframes completeFlash {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Mobile responsive countdown */
@media (max-width: 480px) {
    .countdown-timer {
        gap: 10px;
    }
    
    .countdown-item {
        padding: 10px 15px;
        min-width: 60px;
    }
    
    .countdown-value {
        font-size: 1.5rem;
    }
    
    .countdown-title {
        font-size: 1.2rem;
    }
}
