/* Payments Page Specific Styles */

.payment-methods {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f051d 0%, #1a0b2e 50%, #2d1b3d 100%);
}

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

.method-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.method-card.featured {
    border: 2px solid #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 53, 0.1));
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.5);
}

.method-card img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffd700);
}

.method-info {
    padding: 25px;
}

.method-info h3 {
    font-family: 'Orbitron', monospace;
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.method-info p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.5;
}

.method-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #ccc;
}

.detail i {
    color: #ffd700;
    font-size: 1rem;
}

.method-btn {
    display: inline-block;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.method-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.5);
}

/* Quick Facts Section */
.quick-facts {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b3d 100%);
}

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

.fact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.fact-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.fact-icon {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #fff;
}

.fact-content h3 {
    font-family: 'Orbitron', monospace;
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.fact-value {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.fact-content p {
    color: #ccc;
    line-height: 1.5;
}

/* Deposit Guide Section */
.deposit-guide {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d1b3d 0%, #0f051d 100%);
}

.guide-tabs {
    max-width: 800px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.05);
    color: #ccc;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.tab-btn.active,
.tab-btn:hover {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    border-color: rgba(255, 107, 53, 0.5);
    transform: translateY(-2px);
}

.tab-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step {
    display: flex;
    align-items: center;
    gap: 20px;
}

.step-number {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-family: 'Orbitron', monospace;
    color: #ffd700;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.step-content p {
    color: #ccc;
    line-height: 1.5;
}

/* Withdrawal Proof Section */
.withdrawal-proof {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0b2e 0%, #0f051d 100%);
}

.proof-ticker {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    overflow: hidden;
}

.proof-items {
    display: flex;
    animation: proofScroll 20s linear infinite;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 20px;
    white-space: nowrap;
    margin-right: 50px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 25px;
    border-radius: 25px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.proof-item .amount {
    color: #ff6b35;
    font-weight: 900;
    font-size: 1.2rem;
}

.proof-item .method {
    background: linear-gradient(45deg, #1c7ed6, #37b24d);
    color: #fff;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.proof-item .time {
    color: #37b24d;
    font-weight: 700;
}

.proof-item .location {
    color: #ffd700;
    font-weight: 600;
}

@keyframes proofScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Security Features Section */
.security-features {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f051d 0%, #2d1b3d 100%);
}

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

.security-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(37, 180, 77, 0.3);
    transition: all 0.3s ease;
}

.security-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(37, 180, 77, 0.5);
    box-shadow: 0 15px 30px rgba(37, 180, 77, 0.2);
}

.security-card i {
    font-size: 3rem;
    color: #37b24d;
    margin-bottom: 20px;
}

.security-card h4 {
    font-family: 'Orbitron', monospace;
    color: #37b24d;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

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

/* Payment Buttons Section */
.payment-buttons {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a0b2e 0%, #0f051d 100%);
}

.buttons-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.payment-action-btn {
    display: block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.payment-action-btn.primary {
    background: linear-gradient(45deg, #ffd700, #ffcc02);
    color: #000;
    border-color: #ffd700;
}

.payment-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.payment-action-btn.primary:hover {
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

/* Limits Table Section */
.limits-table {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d1b3d 0%, #1a0b2e 100%);
}

.table-wrapper {
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.limits {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Roboto', sans-serif;
}

.limits th,
.limits td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.limits thead {
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), rgba(255, 107, 53, 0.2));
}

.limits th {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: #ffd700;
    font-size: 0.9rem;
}

.limits td {
    color: #ccc;
    font-weight: 500;
}

.limits tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.limits tbody tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.02);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-buttons {
        gap: 10px;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .table-wrapper {
        padding: 10px;
    }
    
    .limits th,
    .limits td {
        padding: 10px 5px;
        font-size: 0.8rem;
    }
    
    .buttons-grid {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .method-card {
        margin: 0 10px;
    }
    
    .fact-card,
    .security-card {
        margin: 0 10px;
    }
    
    .tab-content {
        padding: 20px;
    }
    
    .proof-item {
        flex-direction: column;
        gap: 10px;
        margin-right: 30px;
    }
    
    .limits th,
    .limits td {
        padding: 8px 3px;
        font-size: 0.7rem;
    }
}