/* Payments Page Styles */
:root {
    --primary: #ffc107;
    --primary-dark: #ffa000;
    --dark: #121212;
    --darker: #0a0a0a;
    --light: #f5f5f5;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
    --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header {
    background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: var(--shadow);
}

.page-header h1 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 10px;
    text-shadow: var(--text-shadow);
}

.page-header p {
    font-size: 18px;
    color: var(--light);
    opacity: 0.9;
}

/* Payment Support Section */
.payment-support {
    background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.payment-support h3 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 10px;
}

.payment-support p {
    font-size: 14px;
    color: #ddd;
    margin-bottom: 15px;
    line-height: 1.5;
}

.support-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: var(--primary);
    color: var(--dark);
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.support-btn i {
    margin-right: 5px;
}

.support-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Payment Intro Section */
.payment-intro {
    margin-bottom: 40px;
}

.payment-intro p {
    font-size: 16px;
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 30px;
}

.payment-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.highlight-card {
    background-color: var(--darker);
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
}

.highlight-icon i {
    font-size: 24px;
    color: var(--dark);
}

.highlight-card h3 {
    font-size: 18px;
    color: var(--light);
    margin-bottom: 10px;
}

.highlight-card p {
    font-size: 14px;
    color: #ddd;
    line-height: 1.6;
}

/* Payment Methods Section */
.payment-methods {
    margin-bottom: 40px;
}

.payment-methods h2 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.payment-methods h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.methods-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.method-card {
    background-color: var(--darker);
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.method-icon {
		display: flex;
		align-items: center;
		justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background-color: #fff;
    margin: 0 auto 15px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.method-icon i {
	color: #0a0a0a;
	font-size: 3rem;
}

.method-card h3 {
    font-size: 18px;
    color: var(--light);
    margin-bottom: 15px;
}

.method-details {
    margin-bottom: 20px;
}

.detail {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #ddd;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail span {
    color: #aaa;
}

.deposit-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary);
    color: var(--dark);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.deposit-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

/* Withdrawal Section */
.withdrawal-section {
    margin-bottom: 40px;
}

.withdrawal-section h2 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.withdrawal-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.withdrawal-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.withdrawal-content p {
    font-size: 16px;
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 25px;
}

.withdrawal-steps {
    margin-bottom: 30px;
}

.step {
    display: flex;
    margin-bottom: 20px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 16px;
    color: var(--light);
    margin-bottom: 5px;
}

.step-content p {
    font-size: 14px;
    color: #ddd;
    margin-bottom: 0;
}

.verification-note {
    background-color: rgba(255, 193, 7, 0.1);
    border-left: 3px solid var(--primary);
    padding: 15px;
    border-radius: 0 5px 5px 0;
}

.verification-note h4 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.verification-note h4 i {
    margin-right: 8px;
}

.verification-note p {
    font-size: 14px;
    color: #ddd;
    margin-bottom: 0;
}

.withdrawal-stats {
    background-color: var(--darker);
    border-radius: 10px;
    padding: 25px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stat {
    text-align: center;
    margin-bottom: 20px;
}

.stat:last-child {
    margin-bottom: 0;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #ddd;
}

/* Security Section */
.security-section {
    margin-bottom: 40px;
}

.security-section h2 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.security-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.security-card {
    background-color: var(--darker);
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.security-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.security-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
}

.security-icon i {
    font-size: 24px;
    color: var(--light);
}

.security-card h3 {
    font-size: 18px;
    color: var(--light);
    margin-bottom: 10px;
}

.security-card p {
    font-size: 14px;
    color: #ddd;
    line-height: 1.6;
}

/* Limits Section */
.limits-section {
    margin-bottom: 40px;
}

.limits-section h2 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.limits-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.limits-section > p {
    font-size: 16px;
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 25px;
}

.limits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.limit-card {
    background-color: var(--darker);
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.limit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.limit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2196f3, #0d47a1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
}

.limit-icon i {
    font-size: 24px;
    color: var(--light);
}

.limit-card h3 {
    font-size: 18px;
    color: var(--light);
    margin-bottom: 10px;
}

.limit-card p {
    font-size: 14px;
    color: #ddd;
    line-height: 1.6;
}

.set-limits-cta {
    text-align: center;
    margin-top: 20px;
}

.set-limits-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary);
    color: var(--dark);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.set-limits-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

/* FAQ Section */
.faq-section {
    margin-bottom: 40px;
}

.faq-section h2 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--darker);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    font-size: 16px;
    color: var(--light);
    margin: 0;
}

.toggle-icon {
    color: var(--primary);
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

.faq-answer p {
    font-size: 14px;
    color: #ddd;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
}

.cta-section h2 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 15px;
    text-shadow: var(--text-shadow);
}

.cta-section p {
    font-size: 16px;
    color: var(--light);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary);
    color: var(--dark);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .withdrawal-info {
        grid-template-columns: 1fr;
    }
    
    .withdrawal-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .stat {
        flex: 1;
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 30px 20px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .methods-container,
    .security-grid,
    .limits-grid {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    }
    
    .withdrawal-stats {
        flex-direction: column;
    }
    
    .stat {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
        margin-bottom: 10px;
    }
} 