/* SMM SaaS Platform Frontend Glassmorphism Theme */

.smm-portal-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #f3f4f6;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    min-height: 100vh;
    padding: 20px;
    border-radius: 12px;
}

.smm-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 24px;
}

.smm-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #38bdf8;
    text-decoration: none;
}

.smm-nav a {
    color: #cbd5e1;
    text-decoration: none;
    margin-left: 16px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.smm-nav a:hover {
    color: #38bdf8;
}

.smm-btn-balance {
    background: rgba(56, 189, 248, 0.2);
    color: #38bdf8 !important;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(56, 189, 248, 0.4);
}

.smm-glass-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.smm-hero-section {
    text-align: center;
    padding: 60px 20px;
}

.smm-hero-section h1 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 16px;
}

.smm-hero-section p {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.smm-features-grid, .smm-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.smm-form-container, .smm-auth-container {
    max-width: 520px;
    margin: 40px auto;
}

.smm-form-group {
    margin-bottom: 20px;
}

.smm-form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #e2e8f0;
}

.smm-form-group input, .smm-form-group select, .smm-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    box-sizing: border-box;
}

.smm-input-readonly {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #38bdf8 !important;
    font-weight: 700;
}

.smm-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.1s ease, background 0.2s ease;
}

.smm-btn.primary {
    background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
    color: #fff;
}

.smm-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
}

.smm-btn.block {
    width: 100%;
    text-align: center;
}

.smm-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}

.smm-table th, .smm-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.smm-table th {
    color: #94a3b8;
    font-weight: 600;
}

.smm-status-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}

.smm-status-badge.completed { background: rgba(16, 185, 129, 0.2); color: #34d399; }
.smm-status-badge.processing, .smm-status-badge.inprogress { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.smm-status-badge.pending { background: rgba(245, 158, 11, 0.2); color: #fbbf24; }
.smm-status-badge.canceled, .smm-status-badge.failed { background: rgba(239, 68, 68, 0.2); color: #f87171; }
.smm-status-badge.partial { background: rgba(168, 85, 247, 0.2); color: #c084fc; }

.smm-alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-weight: 500;
}
.smm-alert.error { background: rgba(239, 68, 68, 0.2); border: 1px solid #ef4444; color: #fca5a5; }
.smm-alert.success { background: rgba(16, 185, 129, 0.2); border: 1px solid #10b981; color: #6ee7b7; }

.smm-footer {
    text-align: center;
    padding: 30px 0 10px 0;
    color: #64748b;
    font-size: 0.9rem;
}
.smm-footer a { color: #94a3b8; text-decoration: none; }
