:root { --primary: #6366f1; --dark: #0f172a; --slate: #64748b; --success: #10b981; }
body { font-family: 'Inter', sans-serif; background: #f8fafc; margin: 0; }

#user-button { position: fixed; top: 15px; right: 15px; z-index: 1000; }
header { text-align: center; padding: 60px 20px 20px; }
.credit-badge { background: #e0e7ff; color: var(--primary); padding: 8px 20px; border-radius: 50px; font-weight: 800; display: inline-block; }

.search-box { max-width: 600px; margin: 20px auto; display: flex; gap: 10px; padding: 0 20px; }
input { flex: 1; padding: 15px; border: 2px solid #e2e8f0; border-radius: 12px; font-size: 1rem; outline: none; }
#search-btn { background: var(--primary); color: white; border: none; padding: 0 25px; border-radius: 12px; font-weight: bold; cursor: pointer; }

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; padding: 20px; max-width: 1200px; margin: 0 auto; }
.card { background: white; padding: 25px; border-radius: 20px; border: 1px solid #e2e8f0; }

.social-links { display: flex; gap: 10px; margin: 15px 0; }
.social-btn { flex: 1; padding: 10px; border-radius: 8px; text-align: center; text-decoration: none; color: white; font-size: 0.8rem; font-weight: 600; }
.yt { background: #ff0000; }
.ig { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }

.email-container { background: #f1f5f9; border-radius: 10px; padding: 10px; display: flex; justify-content: space-between; align-items: center; }
.copy-btn { background: white; border: 1px solid #cbd5e1; padding: 5px 10px; border-radius: 6px; cursor: pointer; font-size: 0.7rem; }

/* Modal & QR */
.modal { display: none; position: fixed; inset: 0; background: rgba(15, 23, 42, 0.8); z-index: 2000; align-items: center; justify-content: center; }
.modal-content { background: white; padding: 30px; border-radius: 24px; text-align: center; width: 90%; max-width: 400px; }
#qr-container img { width: 180px; height: 180px; margin: 15px auto; border: 8px solid white; border-radius: 12px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.main-pay-btn { background: var(--success); color: white; width: 100%; padding: 16px; border-radius: 12px; font-size: 1.1rem; font-weight: bold; border: none; cursor: pointer; }

.loader { border: 4px solid #f3f3f3; border-top: 4px solid var(--primary); border-radius: 50%; width: 40px; height: 40px; animation: spin 1s linear infinite; margin: 15px auto; }
@keyframes spin { 100% { transform: rotate(360deg); } }
.cancel-link { background: none; border: none; color: var(--slate); margin-top: 20px; text-decoration: underline; cursor: pointer; }