/* ========== 1. GLOBAL RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 50%, #0284c7 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

/* ========== 2. HEADER ========== */
.main-header {
    background: rgba(12, 74, 110, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #0ea5e9;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 10px;
    position: relative;
}

.logo-section {
    flex-shrink: 0;
}

.site-logo {
    max-width: 208px;
    height: auto;
    transition: all 0.3s ease;
}

.primary-navigation {
    flex: 1;
    margin: 0 30px;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    background: #0ea5e9;
    color: white;
}

.dropdown-menu {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: #0369a1;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    border-radius: 8px;
    display: none;
    list-style: none;
    z-index: 1001;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown-menu.active .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content li {
    border-bottom: 1px solid #0284c7;
}

.dropdown-content li:last-child {
    border-bottom: none;
}

.dropdown-content a {
    display: block;
    padding: 12px 16px;
    border-radius: 0;
}

.dropdown-content a:hover {
    background: rgba(14, 165, 233, 0.3);
}

.dropdown-arrow {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown-menu.active .dropdown-arrow {
    transform: rotate(180deg);
}

.auth-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-register, .btn-login {
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-register {
    background: #48bb78;
    color: white;
}

.btn-register:hover {
    background: #38a169;
    transform: translateY(-2px);
}

.btn-login {
    background: transparent;
    color: #0ea5e9;
    border: 2px solid #0ea5e9;
}

.btn-login:hover {
    background: #0ea5e9;
    color: white;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #e2e8f0;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.3s ease;
    flex-shrink: 0;
    order: 3;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile menu styles */
.nav-menu.mobile-active {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    width: 100vw;
    background: #0369a1;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    z-index: 1000;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    border-top: 2px solid #0ea5e9;
    animation: slideDown 0.3s ease;
}

.nav-menu.mobile-active li {
    width: 100%;
    margin-bottom: 5px;
}

.nav-menu.mobile-active a {
    display: block;
    width: 100%;
    padding: 15px 20px;
    border-radius: 8px;
    background: rgba(2, 132, 199, 0.5);
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.nav-menu.mobile-active a:hover {
    background: #0ea5e9;
    transform: translateX(5px);
}

.nav-menu.mobile-active .dropdown-content {
    position: static;
    display: none;
    box-shadow: none;
    background: rgba(2, 132, 199, 0.3);
    margin-top: 5px;
    margin-left: 20px;
    border-radius: 8px;
    opacity: 1;
    transform: none;
    transition: none;
}

.nav-menu.mobile-active .dropdown-menu.active .dropdown-content {
    display: block;
}

.nav-menu.mobile-active .dropdown-content a {
    padding: 10px 15px;
    font-size: 0.9rem;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-menu-overlay.active {
    display: block;
}

/* ========== 3. PAYMENT HERO SECTION ========== */
.payment-hero-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 50%, #0284c7 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-payment-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.payment-float {
    position: absolute;
    font-size: 2.5rem;
    animation: float 8s ease-in-out infinite;
    opacity: 0.6;
}

.payment-float:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.payment-float:nth-child(2) {
    top: 25%;
    right: 15%;
    animation-delay: 1.5s;
}

.payment-float:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.payment-float:nth-child(4) {
    bottom: 20%;
    right: 10%;
    animation-delay: 4.5s;
}

.payment-float:nth-child(5) {
    top: 50%;
    left: 50%;
    animation-delay: 6s;
}

.payment-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #e2e8f0;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.3rem;
    color: #cbd5e0;
    margin-bottom: 35px;
    line-height: 1.6;
}

.payment-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #0ea5e9;
    margin-bottom: 5px;
}

.stat-label {
    color: #cbd5e0;
    font-size: 0.9rem;
}

.hero-cta {
    text-align: center;
}

.btn-deposit-now {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.btn-deposit-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.4);
}

.security-note {
    color: #22c55e;
    font-weight: 600;
    margin-top: 15px;
    font-size: 1rem;
}

/* Hero Visual - Payment Preview */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-preview {
    width: 100%;
    max-width: 400px;
}

.payment-screen {
    background: linear-gradient(135deg, #1f2937, #374151);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid #0ea5e9;
    position: relative;
}

.payment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.payment-title {
    color: #e2e8f0;
    font-weight: 600;
    font-size: 1.1rem;
}

.security-badge {
    background: #22c55e;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.payment-methods-preview {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.method-option {
    flex: 1;
    background: #4b5563;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.method-option.active {
    background: #0ea5e9;
}

.method-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.method-name {
    color: #e2e8f0;
    font-size: 0.8rem;
    font-weight: 600;
}

.amount-display {
    text-align: center;
    margin-bottom: 20px;
}

.amount-label {
    color: #a0aec0;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.amount-value {
    color: #0ea5e9;
    font-size: 1.8rem;
    font-weight: 900;
}

.deposit-btn {
    width: 100%;
    background: #22c55e;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.deposit-btn:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

/* ========== 4. DEPOSIT METHODS ========== */
.deposit-methods-section {
    padding: 80px 0;
    background: rgba(3, 105, 161, 0.8);
}

.deposit-methods-section h2 {
    text-align: center;
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-description {
    text-align: center;
    color: #cbd5e0;
    font-size: 1.2rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.method-card {
    background: linear-gradient(135deg, #0284c7, #0ea5e9);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #22c55e, #16a34a);
}

.method-card:hover {
    transform: translateY(-10px);
    border-color: #22c55e;
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
}

.method-card.featured {
    border-color: #22c55e;
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.3);
}

.method-header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.method-icon-large {
    font-size: 3.5rem;
    margin-bottom: 15px;
    display: block;
}

.method-header h3 {
    color: #e2e8f0;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.popular-badge {
    background: #fbbf24;
    color: #1a202c;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    position: absolute;
    top: -10px;
    right: -10px;
}

.method-details {
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-label {
    color: #cbd5e0;
    font-weight: 500;
}

.detail-value {
    color: #e2e8f0;
    font-weight: 600;
}

.method-features {
    margin-bottom: 25px;
    text-align: left;
}

.feature {
    display: block;
    color: #22c55e;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.method-btn {
    width: 100%;
    background: #22c55e;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
}

.method-btn:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

/* ========== 5. WITHDRAWAL METHODS ========== */
.withdrawal-methods-section {
    padding: 80px 0;
    background: rgba(12, 74, 110, 0.9);
}

.withdrawal-methods-section h2 {
    text-align: center;
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

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

.withdrawal-card {
    background: linear-gradient(135deg, #0284c7, #0ea5e9);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.withdrawal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #0284c7);
}

.withdrawal-card:hover {
    transform: translateY(-10px);
    border-color: #0ea5e9;
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.2);
}

.withdrawal-card.featured {
    border-color: #22c55e;
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.3);
}

.withdrawal-header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.withdrawal-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.withdrawal-header h3 {
    color: #e2e8f0;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.fastest-badge {
    background: #22c55e;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    position: absolute;
    top: -10px;
    right: -10px;
}

.withdrawal-details {
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-value.instant {
    color: #22c55e;
    font-weight: 700;
}

.detail-value.free {
    color: #22c55e;
    font-weight: 700;
}

.withdrawal-benefits {
    text-align: left;
}

.benefit {
    display: block;
    color: #22c55e;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ========== 6. HOW TO DEPOSIT ========== */
.how-to-deposit-section {
    padding: 80px 0;
    background: rgba(3, 105, 161, 0.8);
}

.how-to-deposit-section h2 {
    text-align: center;
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.step-card {
    background: linear-gradient(135deg, #0284c7, #0ea5e9);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #22c55e, #16a34a);
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: #22c55e;
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
}

.step-number {
    background: #22c55e;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: #e2e8f0;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.step-content p {
    color: #cbd5e0;
    line-height: 1.6;
}

/* ========== 7. HOW TO WITHDRAW ========== */
.how-to-withdraw-section {
    padding: 80px 0;
    background: rgba(3, 105, 161, 0.8);
}

.how-to-withdraw-section h2 {
    text-align: center;
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

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

.withdraw-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.withdraw-content h3 {
    color: #e2e8f0;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.withdraw-content p {
    color: #cbd5e0;
    line-height: 1.6;
}

/* ========== 8. PAYMENT SECURITY ========== */
.payment-security-section {
    padding: 80px 0;
    background: rgba(12, 74, 110, 0.9);
}

.payment-security-section h2 {
    text-align: center;
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.security-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.security-info h3 {
    color: #e2e8f0;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.security-info p {
    color: #cbd5e0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.security-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.security-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.security-text h4 {
    color: #0ea5e9;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.security-text p {
    color: #cbd5e0;
    line-height: 1.6;
}

.security-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.security-badge {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.3);
    border: 4px solid white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.badge-icon {
    font-size: 4rem;
    color: white;
}

.badge-text {
    color: white;
}

.badge-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.badge-subtitle {
    font-size: 1rem;
    opacity: 0.9;
}

/* ========== 9. PAYMENT FAQ ========== */
.payment-faq-section {
    padding: 80px 0;
    background: rgba(3, 105, 161, 0.8);
}

.payment-faq-section h2 {
    text-align: center;
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

.faq-item {
    background: linear-gradient(135deg, #0284c7, #0ea5e9);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    border-color: #0ea5e9;
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.2);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(14, 165, 233, 0.1);
}

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

.faq-toggle {
    color: #0ea5e9;
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

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

/* ========== 10. PROMO CODE SECTION ========== */
.promo-code-section {
    padding: 80px 0;
    background: rgba(12, 74, 110, 0.9);
}

.promo-code-section h2 {
    text-align: center;
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.promo-code-container {
    max-width: 800px;
    margin: 0 auto;
}

.promo-code-card {
    background: linear-gradient(135deg, #0284c7, #0ea5e9);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 2px solid #0ea5e9;
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.2);
}

.promo-code-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.promo-code-header h3 {
    color: #e2e8f0;
    font-size: 1.5rem;
}

.promo-code-text {
    background: #0ea5e9;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-family: monospace;
}

.copy-btn {
    background: #22c55e;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

.promo-benefits {
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    text-align: left;
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    color: #0ea5e9;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.benefit-content p {
    color: #cbd5e0;
    line-height: 1.6;
}

.btn-claim-promo {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.btn-claim-promo:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.4);
}

/* ========== 11. FOOTER ========== */
.main-footer {
    background: #0c4a6e;
    padding: 50px 0 20px;
    border-top: 2px solid #0ea5e9;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.payment-methods {
    text-align: center;
    margin-bottom: 40px;
}

.payment-methods h3 {
    color: #e2e8f0;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-icons img {
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.payment-icons img:hover {
    filter: grayscale(0);
}

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

.footer-column h4 {
    color: #0ea5e9;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
}

.footer-column a {
    color: #a0aec0;
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #0ea5e9;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #0284c7;
    color: #718096;
}

.active-link {
    color: yellow;
}

/* ========== 12. ANIMATIONS ========== */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-5deg);
    }
    75% {
        transform: translateY(-30px) rotate(3deg);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== 13. RESPONSIVE BREAKPOINTS ========== */
@media (max-width: 1080px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }
    
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .primary-navigation {
        position: relative;
        margin: 0;
        order: 2;
    }
    
    .auth-buttons {
        flex-direction: row;
        gap: 8px;
        order: 2;
    }
    
    .mobile-menu-toggle {
        order: 3;
    }
    
    .logo-section {
        order: 1;
    }
    
    .site-logo {
        max-width: 180px;
    }
    
    .btn-register, .btn-login {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .payment-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .withdrawal-grid {
        grid-template-columns: 1fr;
    }
    
    .deposit-steps {
        grid-template-columns: 1fr;
    }
    
    .withdraw-steps {
        grid-template-columns: 1fr;
    }
    
    .security-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .site-logo {
        max-width: 150px;
    }
    
    .btn-register, .btn-login {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .auth-buttons {
        gap: 6px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .payment-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .payment-screen {
        padding: 20px;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .withdrawal-grid {
        grid-template-columns: 1fr;
    }
    
    .deposit-steps {
        grid-template-columns: 1fr;
    }
    
    .withdraw-steps {
        grid-template-columns: 1fr;
    }
    
    .security-features {
        gap: 20px;
    }
    
    .security-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .payment-icons {
        gap: 10px;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .promo-code-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .withdraw-step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 8px 10px;
    }
    
    .site-logo {
        max-width: 120px;
    }
    
    .btn-register, .btn-login {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
    
    .auth-buttons {
        gap: 4px;
    }
    
    .mobile-menu-toggle {
        font-size: 1.5rem;
        padding: 6px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .payment-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .payment-screen {
        padding: 15px;
    }
    
    .payment-methods-preview {
        flex-direction: column;
        gap: 8px;
    }
    
    .nav-menu.mobile-active {
        padding: 15px;
    }
    
    .nav-menu.mobile-active a {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    .site-logo {
        max-width: 100px;
    }
    
    .btn-register, .btn-login {
        padding: 4px 8px;
        font-size: 0.75rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .payment-screen {
        padding: 12px;
    }
    
    .mobile-menu-toggle {
        font-size: 1.3rem;
        padding: 5px;
    }
    
    .nav-menu.mobile-active {
        padding: 10px;
    }
    
    .nav-menu.mobile-active a {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}

/* Enhanced Mobile Menu Animation */
@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.nav-menu.mobile-closing {
    animation: slideUp 0.3s ease forwards;
}

/* Smooth transitions for responsive elements */
@media (prefers-reduced-motion: no-preference) {
    .site-logo,
    .btn-register,
    .btn-login,
    .auth-buttons {
        transition: all 0.3s ease;
    }
}
