/* Payments Page Styles */

.hero {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(139, 0, 0, 0.2));
}

.hero-title {
    font-size: 3rem;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: #50C878;
    font-weight: 600;
}

/* Payment Methods */
.payment-methods {
    padding: 4rem 0;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.method-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.method-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.3s ease;
    opacity: 0;
}

.method-card:hover::before {
    opacity: 1;
    animation: shine 1.5s ease-in-out;
}

.method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.method-card.featured {
    border: 2px solid #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.method-card.crypto {
    border: 2px solid #7851A9;
    box-shadow: 0 0 20px rgba(120, 81, 169, 0.3);
}

.method-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    animation: pulse 3s ease-in-out infinite;
}

.method-card.crypto .method-icon {
    background: linear-gradient(45deg, #7851A9, #9370DB);
    color: #fff;
}

.method-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.method-card h3 {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.method-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.method-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.method-stats span {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 0.5rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    flex: 1;
    min-width: 60px;
}

/* Quick Facts */
.quick-facts {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.fact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.fact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.3);
}

.fact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #50C878, #32CD32);
    color: #fff;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    animation: rotate 8s linear infinite;
}

.fact-card h3 {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.fact-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Payment Actions */
.payment-actions {
    padding: 3rem 0;
    text-align: center;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .method-stats {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .method-stats span {
        text-align: center;
        min-width: 120px;
    }
    
    .facts-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .method-card {
        padding: 1.5rem;
    }
    
    .fact-card {
        padding: 1.5rem;
    }
    
    .method-icon,
    .fact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@keyframes shine {
    0% { transform: rotate(45deg) translate(-100%, -100%); }
    100% { transform: rotate(45deg) translate(100%, 100%); }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}