/* SocialMonnie - Main Stylesheet */

/* ============ ROOT VARIABLES ============ */
:root {
    --brand: #16A34A;
    --brand-light: #DCFCE7;
    --brand-dark: #15803D;
    --brand-50: #f0fdf4;
    --brand-100: #dcfce7;
    --brand-200: #bbf7d0;
    --brand-600: #16a34a;
    --brand-700: #15803d;
    --brand-800: #166534;
    
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    --white: #ffffff;
    --black: #000000;
    --red: #ef4444;
    --red-light: #fef2f2;
    --orange: #f97316;
    --orange-light: #fff7ed;
    --blue: #3b82f6;
    --blue-light: #eff6ff;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.04);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.03);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 10px 10px -5px rgba(0,0,0,0.02);
    
    --font: 'Nunito', sans-serif;
}

/* ============ RESET & BASE ============ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--white);
    color: var(--gray-800);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
button { font-family: var(--font); cursor: pointer; border: none; outline: none; }
input, select, textarea { font-family: var(--font); outline: none; }
img { max-width: 100%; display: block; }

/* ============ WALLET CARD ============ */
.wallet-card {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 50%, #0d5c2e 100%);
    border-radius: var(--radius-xl);
    padding: 24px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.wallet-card::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    top: -100px;
    right: -80px;
    animation: orbFloat 6s ease-in-out infinite;
}

.wallet-card::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    bottom: -60px;
    left: -40px;
    animation: orbFloat 8s ease-in-out infinite reverse;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -20px) scale(1.1); }
    66% { transform: translate(-10px, 15px) scale(0.95); }
}

.wallet-card .card-content {
    position: relative;
    z-index: 1;
}

.wallet-card .balance-label {
    font-size: 13px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.wallet-card .balance-amount {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.wallet-card .balance-amount.hidden {
    font-size: 28px;
    letter-spacing: 4px;
}

.wallet-card .toggle-balance {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.wallet-card .toggle-balance:hover {
    background: rgba(255,255,255,0.3);
}

.wallet-card .card-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.wallet-card .card-action-btn {
    flex: 1;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 10px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s;
    backdrop-filter: blur(10px);
}

.wallet-card .card-action-btn:hover {
    background: rgba(255,255,255,0.25);
}

/* ============ FLOATING BOTTOM NAV ============ */
.bottom-nav {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: var(--radius-full);
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
    z-index: 1000;
    max-width: 95vw;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.bottom-nav::-webkit-scrollbar { display: none; }

.bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    color: var(--gray-400);
    font-size: 11px;
    font-weight: 600;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    min-width: 56px;
}

.bottom-nav .nav-item i {
    font-size: 22px;
    transition: all 0.25s;
}

.bottom-nav .nav-item.active {
    color: var(--brand);
    background: var(--brand-50);
}

.bottom-nav .nav-item.active i {
    transform: scale(1.1);
}

/* Center FAB */
.bottom-nav .nav-fab {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -20px 4px 0;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.4);
    font-size: 24px;
    transition: all 0.2s;
}

.bottom-nav .nav-fab:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.5);
}

/* ============ PROGRESS BAR ============ */
.progress-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    margin-bottom: 16px;
}

.progress-card .progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.progress-card .progress-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-800);
}

.progress-card .progress-percent {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand);
}

.progress-card .progress-track {
    width: 100%;
    height: 8px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-card .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--brand), var(--brand-dark));
    border-radius: var(--radius-full);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-card .progress-next {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--brand-50);
    color: var(--brand);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: 12px;
    font-weight: 700;
    transition: all 0.2s;
}

.progress-card .progress-next:hover {
    background: var(--brand-100);
}

.progress-card.completed {
    border-color: var(--brand-200);
    background: var(--brand-50);
}

.progress-card.completed .progress-title {
    color: var(--brand);
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: white;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.45);
}

.btn-secondary {
    background: var(--gray-100);
    color: var(--gray-700);
}

.btn-secondary:hover {
    background: var(--gray-200);
}

.btn-outline {
    background: transparent;
    color: var(--brand);
    border: 2px solid var(--brand);
}

.btn-outline:hover {
    background: var(--brand-50);
}

.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 15px; }
.btn-full { width: 100%; }

/* ============ FORM ELEMENTS ============ */
.form-group { margin-bottom: 20px; }
.form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 6px;
}
.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--gray-800);
    transition: all 0.2s;
    background: white;
}
.form-input:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-100);
}
.form-input::placeholder { color: var(--gray-400); }

.form-select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 14px;
    background: white;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 256 256'%3E%3Cpath fill='%236b7280' d='M213.66 101.66l-80 80a8 8 0 0 1-11.32 0l-80-80A8 8 0 0 1 53.66 90.34L128 164.69l74.34-74.35a8 8 0 0 1 11.32 11.32z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

/* ============ CARDS ============ */
.card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: all 0.2s;
}

.card:hover {
    box-shadow: var(--shadow-md);
}

/* ============ TASK CARDS ============ */
.task-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 16px;
    margin-bottom: 12px;
    transition: all 0.2s;
}

.task-card:hover {
    border-color: var(--brand-200);
    box-shadow: var(--shadow-md);
}

.task-card .task-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.task-card .task-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: var(--brand-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    font-size: 20px;
}

.task-card .task-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-800);
}

.task-card .task-platform {
    font-size: 12px;
    color: var(--gray-500);
}

.task-card .task-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--brand);
}

.task-card .task-action {
    margin-top: 12px;
}

/* ============ STAT CARDS ============ */
.stat-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
}

.stat-card .stat-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--gray-800);
}

.stat-card .stat-label {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 4px;
}

/* ============ ALERTS ============ */
.alert {
    padding: 14px 16px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.alert-success { background: var(--brand-50); color: var(--brand-dark); border: 1px solid var(--brand-200); }
.alert-error { background: var(--red-light); color: #b91c1c; border: 1px solid #fecaca; }
.alert-warning { background: var(--orange-light); color: #c2410c; border: 1px solid #fed7aa; }
.alert-info { background: var(--blue-light); color: #1d4ed8; border: 1px solid #bfdbfe; }

/* ============ MODAL ============ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: var(--radius-xl);
    padding: 28px;
    max-width: 440px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.modal-desc {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 20px;
    line-height: 1.5;
}

/* ============ ACTIVATION MODAL ============ */
.activation-modal .activation-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--brand);
    text-align: center;
    margin: 16px 0;
}

.activation-modal .benefits-list {
    list-style: none;
    margin: 16px 0;
}

.activation-modal .benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-600);
}

.activation-modal .benefits-list li i {
    color: var(--brand);
    font-size: 18px;
}

/* ============ BADGES ============ */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.badge-success { background: var(--brand-100); color: var(--brand-dark); }
.badge-pending { background: var(--orange-light); color: var(--orange); }
.badge-danger { background: var(--red-light); color: var(--red); }
.badge-info { background: var(--blue-light); color: var(--blue); }

/* ============ EMPTY STATE ============ */
.empty-state {
    text-align: center;
    padding: 48px 20px;
}

.empty-state i {
    font-size: 64px;
    color: var(--gray-300);
    margin-bottom: 16px;
}

.empty-state h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.empty-state p {
    font-size: 14px;
    color: var(--gray-500);
}

/* ============ LAYOUT ============ */
.app-container {
    max-width: 480px;
    margin: 0 auto;
    min-height: 100vh;
    padding-bottom: 100px;
    position: relative;
}

.page-header {
    padding: 20px 20px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-header .page-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--gray-900);
}

.page-content {
    padding: 0 20px 20px;
}

.currency-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--brand-50);
    color: var(--brand);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    border: 1px solid var(--brand-200);
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 4px; }

/* ============ ANIMATIONS ============ */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

/* ============ RESPONSIVE ============ */
@media (min-width: 768px) {
    .app-container {
        max-width: 600px;
    }
    
    .bottom-nav {
        max-width: 500px;
    }
}

@media (min-width: 1024px) {
    .app-container {
        max-width: 800px;
    }
}

/* ============ LIVE TICKER ============ */
.ticker-wrapper {
    overflow: hidden;
    background: var(--brand-50);
    border-top: 1px solid var(--brand-200);
    border-bottom: 1px solid var(--brand-200);
    padding: 10px 0;
}

.ticker-track {
    display: flex;
    gap: 40px;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-600);
    flex-shrink: 0;
}

.ticker-item .ticker-name {
    font-weight: 700;
    color: var(--gray-800);
}

.ticker-item .ticker-amount {
    font-weight: 800;
    color: var(--brand);
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============ HOMEPAGE STYLES ============ */
.hero-section {
    padding: 60px 20px 40px;
    text-align: center;
}

.hero-section h1 {
    font-size: 36px;
    font-weight: 900;
    color: var(--gray-900);
    line-height: 1.15;
    margin-bottom: 16px;
}

.hero-section h1 span {
    color: var(--brand);
}

.hero-section p {
    font-size: 16px;
    color: var(--gray-500);
    max-width: 400px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
}

/* Phone mockup */
.phone-mockup {
    max-width: 300px;
    margin: 0 auto;
    position: relative;
}

.phone-mockup img {
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    border: 8px solid var(--gray-900);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 20px;
    margin-bottom: 40px;
}

.feature-item {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    transition: all 0.2s;
}

.feature-item:hover {
    border-color: var(--brand-200);
    box-shadow: var(--shadow-md);
}

.feature-item i {
    font-size: 32px;
    color: var(--brand);
    margin-bottom: 10px;
}

.feature-item h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 6px;
}

.feature-item p {
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.4;
}

/* Steps Section */
.steps-section {
    padding: 40px 20px;
}

.steps-section h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 28px;
    color: var(--gray-900);
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--brand);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.step-content p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 40px 24px;
    text-align: center;
    color: white;
    margin: 0 20px 40px;
}

.cta-section h2 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-section p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
}

/* Auth Pages */
.auth-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 20px;
    max-width: 440px;
    margin: 0 auto;
}

.auth-logo {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo img {
    height: 56px;
    margin: 0 auto;
}

.auth-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.auth-subtitle {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 28px;
}

.role-select {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.role-option {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.role-option:hover {
    border-color: var(--brand-200);
}

.role-option.selected {
    border-color: var(--brand);
    background: var(--brand-50);
}

.role-option i {
    font-size: 32px;
    color: var(--gray-400);
    margin-bottom: 8px;
    display: block;
}

.role-option.selected i {
    color: var(--brand);
}

.role-option .role-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-700);
}

.role-option .role-desc {
    font-size: 11px;
    color: var(--gray-500);
    margin-top: 4px;
}

/* Dashboard header */
.dashboard-header {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-header .greeting {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-800);
}

.dashboard-header .greeting span {
    display: block;
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 500;
}

/* Desktop sidebar */
@media (min-width: 1024px) {
    .desktop-layout {
        display: flex;
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .desktop-sidebar {
        width: 260px;
        min-height: 100vh;
        border-right: 1px solid var(--gray-200);
        padding: 24px 0;
        position: sticky;
        top: 0;
    }
    
    .desktop-main {
        flex: 1;
        max-width: 800px;
    }
    
    .bottom-nav {
        display: none;
    }
    
    .app-container {
        padding-bottom: 20px;
        max-width: none;
    }
}

/* Section title */
.section-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-title a {
    font-size: 12px;
    color: var(--brand);
    font-weight: 700;
}

/* Platform icon colors */
.platform-x { color: #000; }
.platform-instagram { color: #e4405f; }
.platform-tiktok { color: #000; }
.platform-youtube { color: #ff0000; }
.platform-facebook { color: #1877f2; }
.platform-telegram { color: #0088cc; }
.platform-whatsapp { color: #25d366; }
.platform-spotify { color: #1db954; }
.platform-linkedin { color: #0a66c2; }
.platform-snapchat { color: #fffc00; }

/* Toast notification */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--gray-800);
    color: white;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow-xl);
    z-index: 3000;
    transform: translateX(120%);
    transition: transform 0.3s ease-out;
}

.toast.show {
    transform: translateX(0);
}

/* Loading spinner */
.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-200);
    border-top-color: var(--brand);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* File upload zone */
.upload-zone {
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.upload-zone:hover {
    border-color: var(--brand);
    background: var(--brand-50);
}

.upload-zone i {
    font-size: 36px;
    color: var(--gray-400);
    margin-bottom: 8px;
}

/* Divider */
.divider {
    height: 1px;
    background: var(--gray-200);
    margin: 20px 0;
}

/* Social link item */
.social-link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    margin-bottom: 8px;
}

.social-link-item i {
    font-size: 24px;
}

.social-link-item .social-info {
    flex: 1;
}

.social-link-item .social-info .name {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-800);
}

.social-link-item .social-info .handle {
    font-size: 12px;
    color: var(--gray-500);
}

/* Table styles */
.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th {
    text-align: left;
    padding: 12px;
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--gray-200);
}

.data-table td {
    padding: 12px;
    font-size: 13px;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

/* Copy button */
.copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 8px 14px;
    border-radius: var(--radius-md);
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s;
}

.copy-btn:hover {
    background: var(--gray-200);
}
