/* Payments Page Specific Styles */
body {
    padding-top: 100px;
}

/* Payments Hero */
.payments-hero {
    padding: 60px 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
}

.payments-hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #00ff88, #00d2ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.payments-hero h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffd700;
}

/* Payment Methods */
.payment-methods {
    padding: 60px 0;
}

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

.method-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 136, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.method-card:hover {
    transform: translateY(-10px);
    border-color: #00ff88;
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
}

.method-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.method-content {
    padding: 25px;
    text-align: center;
}

.method-content i {
    font-size: 2.5rem;
    color: #00ff88;
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

.method-content h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffd700;
}

.method-content p {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.method-features {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.method-features span {
    background: linear-gradient(45deg, #6c5ce7, #a855f7);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Payment Facts */
.payment-facts {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(26, 26, 46, 0.5));
}

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

.fact-card {
    background: rgba(0, 255, 136, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(0, 255, 136, 0.3);
    transition: all 0.4s ease;
}

.fact-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 255, 136, 0.2);
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.3);
}

.fact-card i {
    font-size: 2.5rem;
    color: #00ff88;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.fact-card:nth-child(2) i {
    animation-delay: 0.5s;
}

.fact-card:nth-child(3) i {
    animation-delay: 1s;
}

.fact-card:nth-child(4) i {
    animation-delay: 1.5s;
}

.fact-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffd700;
}

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

/* Payment Process */
.payment-process {
    padding: 60px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 2px solid rgba(108, 92, 231, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.step:hover {
    transform: translateY(-10px);
    border-color: #6c5ce7;
    box-shadow: 0 20px 40px rgba(108, 92, 231, 0.3);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #6c5ce7, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: white;
    font-size: 18px;
}

.step img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.step h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffd700;
}

.step p {
    color: #cccccc;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    text-align: center;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

/* Responsive Design for Payments */
@media (max-width: 1024px) {
    .payments-hero h1 {
        font-size: 2.2rem;
    }
    
    .payments-hero h2 {
        font-size: 1.3rem;
    }
    
    .methods-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .method-card {
        margin-bottom: 20px;
    }
    
    .method-content {
        padding: 20px;
    }
    
    .facts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .fact-card {
        padding: 25px 20px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .step {
        padding: 25px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .payments-hero h1 {
        font-size: 1.8rem;
    }
    
    .payments-hero h2 {
        font-size: 1.1rem;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .method-card img {
        height: 120px;
    }
    
    .method-content {
        padding: 15px;
    }
    
    .method-content i {
        font-size: 2rem;
    }
    
    .method-content h3 {
        font-size: 1.2rem;
    }
    
    .facts-grid {
        grid-template-columns: 1fr;
    }
    
    .fact-card {
        padding: 20px 15px;
    }
    
    .step {
        padding: 20px 15px;
    }
    
    .step img {
        height: 100px;
    }
}