/* Payments Page Specific Styles */

/* Payments Hero */
.payments-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.payments-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 60% 40%, rgba(76, 175, 80, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.payments-hero .container {
    position: relative;
    z-index: 2;
}

.payments-hero .hero-title {
    background: linear-gradient(135deg, #4caf50, #8bc34a, #2196f3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

/* Payment Methods */
.payment-methods {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f0f23 100%);
}

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

.payment-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(76, 175, 80, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.payment-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #4caf50, #2196f3, #e91e63, #9c27b0);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payment-card:hover::before {
    opacity: 1;
    animation: borderGlow 2s linear infinite;
}

.payment-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.3);
}

.payment-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 35px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #4caf50, #2196f3);
}

.payment-info h3 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.payment-info p {
    color: #b0b0b0;
    margin-bottom: 25px;
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

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

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

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

.fact-card i {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 20px;
    display: block;
}

.fact-card h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.fact-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #4caf50;
    display: block;
}

/* Payment Actions */
.payment-actions {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

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

.action-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 40px 30px;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.deposit-btn {
    border-image: linear-gradient(135deg, #4caf50, #8bc34a) 1;
}

.deposit-btn:hover {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(139, 195, 74, 0.2));
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(76, 175, 80, 0.3);
}

.withdraw-btn {
    border-image: linear-gradient(135deg, #2196f3, #21cbf3) 1;
}

.withdraw-btn:hover {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.2), rgba(33, 203, 243, 0.2));
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(33, 150, 243, 0.3);
}

.play-btn {
    border-image: linear-gradient(135deg, #e91e63, #9c27b0) 1;
}

.play-btn:hover {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.2), rgba(156, 39, 176, 0.2));
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(233, 30, 99, 0.3);
}

.action-btn i {
    font-size: 2.5rem;
}

/* Responsive Design for Payments */
@media (max-width: 768px) {
    .methods-grid,
    .facts-grid,
    .actions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .payment-card,
    .fact-card {
        padding: 25px;
    }
    
    .action-btn {
        padding: 30px 25px;
        font-size: 1.1rem;
    }
    
    .action-btn i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .payment-card img {
        height: 100px;
    }
    
    .payment-info h3 {
        font-size: 1.2rem;
    }
    
    .fact-card i {
        font-size: 2.5rem;
    }
    
    .fact-value {
        font-size: 1.3rem;
    }
}