:root {
    --bg-dark: #050508;
    --text-main: #ffffff;
    --text-sub: rgba(255, 255, 255, 0.65);
    
    --primary: #00f0ff;
    --secondary: #7000ff;
    --accent: #00ff88;
    
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-yt: linear-gradient(135deg, #ff0000, #ff4d4d);
    --gradient-tk: linear-gradient(135deg, #00f2fe, #4facfe);
    
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Mesh Animation */
.bg-mesh {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at center, #11111a 0%, #0a0a0f 100%);
}

.blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.4;
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.blob-1 {
    top: -10%; left: -10%;
    width: 500px; height: 500px;
    background: var(--secondary);
    animation-delay: 0s;
}

.blob-2 {
    bottom: -20%; right: -10%;
    width: 600px; height: 600px;
    background: var(--primary);
    animation-delay: -5s;
}

.blob-3 {
    top: 40%; left: 50%;
    width: 400px; height: 400px;
    background: var(--accent);
    opacity: 0.2;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Typography & Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.mt-3 { margin-top: 30px; }

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Glassmorphism Classes */
.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.03);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s ease, box-shadow 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 45px rgba(0, 240, 255, 0.15), inset 0 0 30px rgba(255, 255, 255, 0.08);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.1);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 20px 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.02);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(10, 10, 15, 0.8);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-icon {
    color: var(--primary);
    filter: drop-shadow(0 0 10px rgba(0,240,255,0.5));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-main);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-outline:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.2);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-glow:hover {
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-sub);
    max-width: 600px;
    margin: 0 auto 60px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-sub);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.trust-indicators {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    margin-left: -15px;
}

.avatars img:first-child { margin-left: 0; }

.trust-indicators span {
    font-size: 14px;
    color: var(--text-sub);
    font-weight: 600;
}

/* Phone Mockup (CSS Only) */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.mockup-container {
    position: relative;
    width: 320px;
    height: 640px;
    perspective: 1000px;
}

.phone-mockup {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 40px;
    border: 8px solid #1a1a24;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 0 20px rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
    animation: levitate 6s ease-in-out infinite;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #1a1a24;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top, #11111a, #050508);
    padding: 60px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mockup-header {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 15px;
    border-radius: 16px;
    text-align: center;
    color: var(--text-sub);
    font-size: 14px;
}

.mockup-balance {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-main);
    margin-top: 5px;
}

.mockup-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 15px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mockup-card i {
    font-size: 20px;
}

.yt-card i { color: #ff0000; }
.tk-card i { color: #00f2fe; }

.mockup-spin {
    margin-top: 20px;
    height: 150px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spin-wheel-mini {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: conic-gradient(var(--primary) 0 90deg, var(--secondary) 90deg 180deg, var(--accent) 180deg 270deg, #ff007a 270deg 360deg);
    border: 4px solid #1a1a24;
    animation: spin 4s linear infinite;
}

@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes levitate {
    0%, 100% { transform: rotateY(-15deg) rotateX(5deg) translateY(0); }
    50% { transform: rotateY(-15deg) rotateX(5deg) translateY(-20px); }
}

.floating-icon {
    position: absolute;
    width: 60px; height: 60px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    box-shadow: var(--glass-shadow);
    z-index: 5;
    animation: floatIcon 4s ease-in-out infinite;
}

.yt-float {
    color: #ff0000;
    top: 20%; right: -20px;
    animation-delay: -1s;
}

.coin-float {
    color: #ffd700;
    bottom: 20%; left: -30px;
    animation-delay: -2s;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 40px 30px;
}

.card-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    margin-bottom: 24px;
    color: white;
}

.yt-icon { background: linear-gradient(135deg, #ff0000, #cc0000); }
.social-icon { background: linear-gradient(135deg, #00f2fe, #4facfe); }
.spin-icon { background: linear-gradient(135deg, #f6d365, #fda085); }
.ref-icon { background: var(--gradient-primary); }

.feature-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-sub);
    font-size: 15px;
}

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0; left: 30px;
    width: 2px; height: 100%;
    background: var(--glass-border);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-number {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.timeline-content {
    flex-grow: 1;
    padding: 30px;
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-sub);
}

/* Payments */
.payment-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-badge {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-badge i {
    font-size: 24px;
    color: var(--accent);
}

/* CTA */
.cta-box {
    padding: 80px 40px;
    background: radial-gradient(circle at center, rgba(0,240,255,0.1), transparent 70%), var(--glass-bg);
}

.cta-box h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.cta-box p {
    color: var(--text-sub);
    font-size: 18px;
}

/* Footer */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 20px;
    margin-top: 50px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-sub);
    margin-top: 15px;
}

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: var(--text-sub);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    color: var(--text-sub);
    font-size: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

/* Animations & Responsive */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.5, 0, 0, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; transition-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; transition-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; transition-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; transition-delay: 0.8s; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-actions { justify-content: center; flex-direction: column; }
    .hero-visual { margin-top: 50px; }
    .nav-links { display: none; }
    .hero-title { font-size: 48px; }
    .section-title { font-size: 36px; }
}

@media (max-width: 600px) {
    .timeline::before { left: 20px; }
    .timeline-number { width: 40px; height: 40px; font-size: 18px; }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
}

/* App Gallery */
.gallery-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0 40px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.gallery-slider::-webkit-scrollbar {
    height: 6px;
}
.gallery-slider::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
}
.gallery-slider::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.gallery-item {
    flex: 0 0 260px;
    height: 540px;
    scroll-snap-align: center;
    border-radius: 30px;
    overflow: hidden;
    padding: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
}

@media (max-width: 600px) {
    .gallery-item {
        flex: 0 0 220px;
        height: 460px;
    }
}

/* --- SPLASH SCREEN IN PHONE MOCKUP --- */
#splashScreen { 
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%); 
    display: flex; flex-direction: column; 
    justify-content: center; align-items: center; 
    z-index: 10; overflow: hidden;
}
.bg-pattern { position: absolute; width: 100%; height: 100%; top: 0; left: 0; overflow: hidden; z-index: 1; pointer-events: none; }
.social-icon-bg { position: absolute; font-size: 55px; opacity: 0.10; animation: floatAnim 8s ease-in-out infinite; filter: drop-shadow(0 0 5px rgba(0,0,0,0.3)); }
.yt-color { color: #FF0000; top: 12%; left: 8%; animation-delay: 0s; font-size: 70px; } 
.fb-color { color: #1877F2; top: 18%; right: 10%; animation-delay: 2s; font-size: 60px; } 
.tt-color { color: #ffffff; text-shadow: 2px 2px 0px #00f2ea, -2px -2px 0px #ff0050; bottom: 15%; left: 12%; animation-delay: 3s; font-size: 65px; } 
.in-color { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; bottom: 20%; right: 15%; animation-delay: 1.5s; font-size: 75px; } 
@keyframes floatAnim { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-25px) rotate(8deg); } }
.content-wrapper { z-index: 10; text-align: center; display: flex; flex-direction: column; align-items: center; width: 85%; max-width: 400px; }
.logo-container { width: 100px; height: 100px; background: #ffffff; border-radius: 25px; padding: 0; margin-bottom: 25px; border: 2px solid rgba(255, 255, 255, 0.2); box-shadow: 0 20px 40px rgba(0,0,0,0.5); overflow: hidden; display: flex; justify-content: center; align-items: center; animation: popIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.app-logo { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand-name { font-size: 20px; font-weight: 700; color: #ffffff; margin: 0; margin-bottom: 5px; letter-spacing: 0.5px; text-shadow: 0 2px 10px rgba(0,0,0,0.5); font-family: var(--font-main); text-transform: uppercase;}
.tagline { font-size: 11px; color: #a0a0a0; font-weight: 400; margin-bottom: 40px; letter-spacing: 1px; font-family: var(--font-main); }
.loader-container { width: 120px; height: 4px; background-color: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; position: relative; }
.loader-bar { position: absolute; top: 0; left: 0; height: 100%; width: 30%; background-color: #ffffff; box-shadow: 0 0 10px rgba(255, 255, 255, 0.5); border-radius: 4px; animation: slide 1.5s infinite ease-in-out; }
@keyframes popIn { from { transform: scale(0.5); opacity: 0; } to { transform: scale(1); opacity: 1; } } 
@keyframes slide { 0% { left: -30%; } 100% { left: 100%; } }

.payment-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.2);
}

/* App Logo Styles */
.main-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.logo:hover .main-logo-img {
    transform: rotate(5deg) scale(1.1);
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.review-card {
    padding: 30px;
    text-align: left;
}
.stars {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 15px;
}
.review-card p {
    font-size: 16px;
    color: var(--text-sub);
    font-style: italic;
    margin-bottom: 20px;
}
.review-card h4 {
    color: var(--primary);
    font-weight: 700;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.faq-item {
    padding: 25px 30px;
}
.faq-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-main);
}
.faq-item p {
    color: var(--text-sub);
    font-size: 16px;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
}
.pricing-card {
    padding: 40px 30px;
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
}
.pricing-card.popular {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.2);
}
.pricing-card.popular:hover {
    transform: translateY(-8px) scale(1.05);
}
.popular-badge {
    position: absolute;
    top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--gradient-primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px; font-weight: 700; color: white;
    letter-spacing: 1px; text-transform: uppercase;
}
.plan-header {
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 20px; margin-bottom: 20px;
}
.plan-header h3 { font-size: 22px; color: var(--text-main); margin-bottom: 10px; }
.plan-header .price { font-size: 16px; color: var(--text-sub); }
.plan-header .price span { font-size: 36px; font-weight: 800; color: var(--primary); }
.plan-features { list-style: none; margin-bottom: 30px; flex-grow: 1; padding: 0; }
.plan-features li { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; color: var(--text-main); font-size: 15px; }
.plan-features li i { color: var(--accent); font-size: 18px; width: 20px; text-align: center; }
@media (max-width: 900px) { .pricing-card.popular { transform: scale(1); } .pricing-card.popular:hover { transform: translateY(-8px) scale(1); } }

/* Payment Proofs */
.proofs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}
.proof-card {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.proof-img-placeholder {
    width: 100%;
    height: 300px;
    background: rgba(0,0,0,0.2);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-sub);
    border: 1px dashed rgba(255,255,255,0.1);
}
.proof-img-placeholder i { font-size: 40px; margin-bottom: 10px; color: rgba(255,255,255,0.1); }
.proof-details { text-align: center; }
.proof-details h4 { font-size: 24px; color: var(--accent); margin-bottom: 5px; }
.proof-details p { color: var(--text-sub); font-size: 13px; margin-top: 5px; }
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; color: white; }
.badge.easypaisa { background: #4caf50; }
.badge.jazzcash { background: #f44336; }
.badge.bank { background: #2196f3; }
.admin-note { padding: 30px; margin-top: 50px; border-color: rgba(0,240,255,0.3); }
