/* Payments Page Specific Styles */

/* Payments Hero */
.payments-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #1a0b2b 0%, #2d1b69 50%, #1a0b2b 100%);
    text-align: center;
}

.payments-hero h1 {
    font-size: 2.3rem;
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #00ffa5;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-description {
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Payment Methods */
.payment-methods {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f051a 0%, #1a0b2b 100%);
}

.payment-methods h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #00b4d8;
}

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

.method-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.method-card.featured {
    border: 2px solid #00ffa5;
    position: relative;
}

.method-card img {
    display: block;
    margin: 0 auto 1rem auto;
    max-width: 70px;
    max-height: 50px;
    object-fit: contain;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}


.method-card.featured::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #00ffa5, #06ffa5);
    color: #000000;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.method-card.crypto {
    border: 2px solid #ffd700;
}

.method-icon {
    font-size: 2.5rem;
    color: #00b4d8;
    margin-bottom: 1rem;
    text-align: center;
}

.method-card.featured .method-icon {
    color: #00ffa5;
}

.method-card.crypto .method-icon {
    color: #ffd700;
}

.method-info {
    text-align: center;
    margin-bottom: 1.5rem;
}

.method-info h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.method-info p {
    color: #cccccc;
    margin-bottom: 1rem;
}

.method-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.deposit-time {
    color: #00ffa5;
}

.withdraw-time {
    color: #ffd700;
}

.method-limits {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1rem;
}

.limit-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.limit-item:last-child {
    margin-bottom: 0;
}

.limit-item .label {
    color: #cccccc;
}

.limit-item .value {
    color: #ffd700;
    font-weight: 600;
}

/* Pro Tips */
.pro-tips {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a0b2b 0%, #0f051a 100%);
}

.pro-tips h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #ffd700;
}

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

.tip-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tip-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
}

.tip-icon {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.tip-card h3 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

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

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f051a 0%, #2d1b69 100%);
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #ff006e;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #ffffff;
    margin: 0;
}

.faq-question i {
    color: #ff006e;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
}

.faq-answer p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

/* Security Features */
.security-features {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a0b2b 0%, #0f051a 100%);
}

.security-features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #00ffa5;
}

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

.security-item {
    background: rgba(0, 255, 165, 0.05);
    border: 1px solid rgba(0, 255, 165, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.security-item:hover {
    background: rgba(0, 255, 165, 0.1);
    transform: translateY(-5px);
    border-color: rgba(0, 255, 165, 0.4);
    box-shadow: 0 15px 30px rgba(0, 255, 165, 0.1);
}

.security-icon {
    font-size: 2.5rem;
    color: #00ffa5;
    margin-bottom: 1rem;
}

.security-item h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

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

/* Payment CTA */
.payment-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f051a 0%, #1a0b2b 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    color: #00b4d8;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .payments-hero h1 {
        font-size: 2rem;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .method-card {
        padding: 1.5rem;
    }
    
    .method-stats {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .method-icon {
        font-size: 2rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem 1rem;
    }
}

/* Interactive Elements */
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Animations for method cards */
.method-card.featured {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        border-color: rgba(0, 255, 165, 0.5);
        box-shadow: 0 0 20px rgba(0, 255, 165, 0.2);
    }
    to {
        border-color: rgba(0, 255, 165, 0.8);
        box-shadow: 0 0 30px rgba(0, 255, 165, 0.4);
    }
}