/* Payments Page Styles for Oklv Casino */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b35;
    --secondary-color: #4ecdc4;
    --accent-color: #45b7d1;
    --gold-color: #ffd700;
    --purple-color: #8a2be2;
    --green-color: #28a745;
    --red-color: #dc3545;
    --dark-bg: #0a0a0a;
    --card-bg: #1a1a2e;
    --text-primary: #ffffff;
    --text-secondary: #b0b3b8;
    --gradient-primary: linear-gradient(135deg, #ff6b35, #f7931e);
    --gradient-secondary: linear-gradient(135deg, #4ecdc4, #45b7d1);
    --gradient-purple: linear-gradient(135deg, #8a2be2, #9932cc);
    --gradient-gold: linear-gradient(135deg, #ffd700, #ffed4e);
    --shadow-glow: 0 0 20px rgba(255, 107, 53, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 10px !important;
	flex-direction: column !important;
	padding: 30px 0 !important;
}

/* Ticker */
.ticker-wrap {
	background: var(--gradient-primary);
	padding: 10px 0;
	overflow: hidden;
	position: sticky;
	top: 0;
	z-index: 100;
}

.ticker {
    display: flex;
    animation: scroll 60s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    padding: 0 50px;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Header */
.header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
    margin-top: 42px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 24px;
    color: var(--primary-color);
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 25px;
    transition: var(--transition);
    position: relative;
}

.nav a:hover,
.nav a.active {
    background: var(--gradient-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 95px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 95px);
    background: var(--card-bg);
    z-index: 999;
    transition: left 0.3s ease;
    padding: 20px;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav ul li {
    margin-bottom: 20px;
}

.mobile-nav ul li a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    transition: background-color 0.3s;
}

.mobile-nav ul li a:hover {
    background: rgba(255, 107, 53, 0.1);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
}

.btn-tertiary {
    background: var(--gradient-purple);
    color: white;
}

.btn-login {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-login:hover {
    background: var(--accent-color);
    color: white;
}

.btn-register {
    background: var(--gradient-primary);
    color: white;
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.fab-btn span {
    position: absolute;
    right: 70px;
    background: var(--card-bg);
    padding: 10px 15px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
    font-size: 14px;
    font-weight: 600;
}

.fab-btn:hover span {
    opacity: 1;
    transform: translateX(0);
}

.fab-register {
    background: var(--gradient-primary);
    color: white;
}

.fab-play {
    background: var(--gradient-secondary);
    color: white;
}

.fab-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Pulse animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 107, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
}

/* Footer */
.footer {
    background: var(--card-bg);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-weight: 800;
    font-size: 24px;
    color: var(--primary-color);
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(78, 205, 196, 0.1)),
                radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.page-title .subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title i {
    color: var(--primary-color);
}

/* Payment Methods */
.payment-methods {
    padding: 20px 0;
    background: var(--dark-bg);
}


.methods-grid {
    display: grid;
		width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.method-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: var(--transition);
    position: relative;
}

.method-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.method-card.featured {
    border-color: var(--gold-color);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
}

.method-card.recommended {
    border-color: var(--green-color);
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(40, 167, 69, 0.05));
}

.method-card.crypto {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(78, 205, 196, 0.05));
}

.recommended-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--green-color);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
}

.method-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
}

.method-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 20px 0;
}

.method-features span {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.btn-method {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.btn-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

/* Pro Tips */
.pro-tips {
    padding: 80px 0;
    background: var(--card-bg);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.tip-card {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 20px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.tip-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

/* Payment Process */
.payment-process {
    padding: 80px 0;
    background: var(--dark-bg);
}

.process-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.process-tab {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.process-tab.active,
.process-tab:hover {
    background: var(--gradient-primary);
    color: white;
}

.process-tab-content {
    display: none;
}

.process-tab-content.active {
    display: block;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--card-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.faq-card {
    background: var(--dark-bg);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    overflow: hidden;
    transition: var(--transition);
}

.faq-card:hover {
    border-color: var(--primary-color);
}

.faq-question {
    padding: 20px;
    background: rgba(255, 107, 53, 0.1);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 107, 53, 0.2);
}

.faq-question h4 {
    margin: 0;
    color: var(--text-primary);
}

.faq-answer {
    padding: 20px;
    display: none;
}

.faq-card.active .faq-answer {
    display: block;
}

.faq-card.active .faq-question i {
    transform: rotate(180deg);
}

/* Security Section */
.security-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.security-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(40, 167, 69, 0.1);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--green-color);
}

.security-icon {
    width: 100px;
    height: 100px;
    background: var(--green-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
}

.security-features {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.security-feature {
    background: var(--green-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .process-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .process-tab {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .security-content {
        flex-direction: column;
        text-align: center;
    }
    
    .security-features {
        justify-content: center;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .tip-card {
        padding: 20px;
    }
    
    .process-step {
        padding: 20px 15px;
    }
    
    .security-content {
        padding: 20px;
    }
}