﻿/* Complete Payment Page Styles */
        :root {
            --primary: #7B2CBF;
            --primary-dark: #5A189A;
            --secondary: #00D9FF;
            --accent: #FF006E;
            --success: #10B981;
            --dark: #0A0E27;
            --dark-light: #1A1F3A;
            --card-bg: #1e293b;
            --text: #E8E9F3;
            --text-muted: #9CA3AF;
            --border: rgba(255, 255, 255, 0.1);
        }

        [data-theme="light"] {
            --dark: #f8fafc;
            --dark-light: #e2e8f0;
            --card-bg: #ffffff;
            --text: #1e293b;
            --text-muted: #64748b;
            --border: rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--dark);
            color: var(--text);
            line-height: 1.6;
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .payment-hero {
            background: linear-gradient(135deg, #1A1F3A 0%, #0A0E27 50%, #1e1b4b 100%);
            padding: 100px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        [data-theme="light"] .payment-hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .payment-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(123,44,191,0.1)" stroke-width="0.5"/></svg>') repeat;
            background-size: 50px 50px;
            opacity: 0.5;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .security-badge-top {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(16, 185, 129, 0.2);
            padding: 8px 20px;
            border-radius: 50px;
            color: var(--success);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 30px;
            border: 1px solid var(--success);
        }

        .hero-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin: 0 auto 40px;
        }

        /* Trust Indicators */
        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }

        .trust-item {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            padding: 25px 20px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        [data-theme="light"] .trust-item {
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .trust-item i {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 15px;
        }

        .trust-item h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: white;
        }

        [data-theme="light"] .trust-item h3 {
            color: var(--text);
        }

        .trust-item p {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }

        [data-theme="light"] .trust-item p {
            color: var(--text-muted);
        }

        /* Payment Methods Section */
        .payment-methods {
            padding: 80px 0;
            background: var(--dark);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--text);
        }

        .section-subtitle {
            color: var(--text-muted);
            font-size: 1.1rem;
        }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 30px;
        }

        @media (max-width: 400px) {
            .payment-grid {
                grid-template-columns: 1fr;
            }
        }

        .payment-card {
            background: var(--card-bg);
            border-radius: 24px;
            padding: 35px 30px;
            border: 1px solid var(--border);
            position: relative;
            transition: all 0.3s ease;
        }

        .payment-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .payment-card.featured {
            border: 2px solid var(--primary);
            box-shadow: 0 0 30px rgba(123, 44, 191, 0.2);
        }

        .card-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            padding: 6px 20px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .payment-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(123, 44, 191, 0.2) 0%, rgba(0, 217, 255, 0.2) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--secondary);
            margin-bottom: 25px;
        }

        .payment-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text);
        }

        .payment-tag {
            display: inline-block;
            background: rgba(16, 185, 129, 0.15);
            color: var(--success);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .payment-features {
            list-style: none;
            margin-bottom: 25px;
        }

        .payment-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 0;
            color: var(--text-muted);
            border-bottom: 1px solid var(--border);
        }

        .payment-features li:last-child {
            border-bottom: none;
        }

        .payment-features li i {
            color: var(--success);
            font-size: 0.9rem;
        }

        /* Crypto Address */
        .crypto-address {
            background: rgba(0, 0, 0, 0.2);
            border-radius: 12px;
            padding: 15px;
            margin-bottom: 15px;
        }

        [data-theme="light"] .crypto-address {
            background: rgba(0, 0, 0, 0.05);
        }

        .crypto-label {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .crypto-input-wrapper {
            display: flex;
            gap: 8px;
        }

        .crypto-input-wrapper input {
            flex: 1;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 10px 12px;
            font-family: 'Monaco', 'Consolas', monospace;
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        [data-theme="light"] .crypto-input-wrapper input {
            background: white;
            border: 1px solid #e2e8f0;
        }

        .copy-btn {
            background: var(--primary);
            border: none;
            border-radius: 8px;
            width: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: white;
            transition: all 0.2s;
        }

        .copy-btn:hover {
            background: var(--primary-dark);
            transform: scale(1.05);
        }

        .btn {
            display: block;
            width: 100%;
            padding: 16px 24px;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 700;
            text-decoration: none;
            text-align: center;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(123, 44, 191, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(123, 44, 191, 0.5);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: var(--text);
            border: 1px solid var(--border);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        /* PayPal CTA Section */
        .paypal-cta {
            background: linear-gradient(135deg, #003087 0%, #0070BA 100%);
            padding: 80px 0;
            text-align: center;
            color: white;
        }

        .paypal-cta h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 800;
            margin-bottom: 15px;
        }

        .paypal-cta p {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 500px;
            margin: 0 auto 40px;
        }

        .paypal-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            background: #FFC439;
            color: #003087;
            padding: 20px 50px;
            border-radius: 50px;
            font-size: 1.3rem;
            font-weight: 800;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .paypal-btn:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }

        .paypal-btn i {
            font-size: 1.5rem;
        }

        /* Security Section */
        .security-section {
            padding: 80px 0;
            background: var(--dark-light);
        }

        .security-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .security-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 35px 25px;
            text-align: center;
            border: 1px solid var(--border);
        }

        .security-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: white;
        }

        .security-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text);
        }

        .security-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .security-badge-bottom {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(16, 185, 129, 0.15);
            padding: 8px 16px;
            border-radius: 20px;
            color: var(--success);
            font-size: 0.85rem;
            font-weight: 600;
            margin-top: 15px;
        }

        /* After Payment Section */
        .after-payment {
            padding: 80px 0;
            background: var(--dark);
            text-align: center;
        }

        .steps-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-top: 50px;
        }

        .step-item {
            background: var(--card-bg);
            padding: 30px 25px;
            border-radius: 20px;
            text-align: center;
            flex: 1;
            min-width: 220px;
            max-width: 280px;
            border: 1px solid var(--border);
        }

        .step-number {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: 800;
            color: white;
            margin: 0 auto 20px;
        }

        .step-item h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text);
        }

        .step-item p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .discord-final-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: #5865F2;
            color: white;
            padding: 18px 40px;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 700;
            text-decoration: none;
            margin-top: 40px;
            transition: all 0.3s;
        }

        .discord-final-btn:hover {
            background: #4752C4;
            transform: translateY(-3px);
        }

        /* Footer */
        footer {
            background: var(--card-bg);
            padding: 50px 0 30px;
            border-top: 1px solid var(--border);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 20px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section li {
            margin-bottom: 12px;
        }

        .footer-section a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-section a:hover {
            color: var(--primary);
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text);
            font-size: 1.2rem;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--border);
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .payment-hero {
                padding: 80px 0 60px;
            }

            .trust-grid {
                grid-template-columns: 1fr 1fr;
            }

            .payment-grid {
                grid-template-columns: 1fr;
            }

            .steps-container {
                flex-direction: column;
                align-items: center;
            }

            .step-item {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .trust-grid {
                grid-template-columns: 1fr;
            }

            .paypal-btn {
                padding: 16px 30px;
                font-size: 1.1rem;
            }
        }
