/* BulkCreator Subscriber Content Styles */
/* Location: /home/cdn.bulkcreator.com/public_html/subscriber/subscriber-content.css */

.subscriber-sidebar {
    width: 336px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Card Styles */
.subscriber-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease;
}

.subscriber-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-header {
    margin-bottom: 16px;
}

.card-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Stats Card */
.stats-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.stats-card .card-header h3 {
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-item {
    text-align: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

.stat-label {
    font-size: 12px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.95);
}

.streak-badge {
    margin-top: 16px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Pro Tips Card */
.tips-card {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
}

.tip-content {
    min-height: 120px;
    padding: 16px;
    background: white;
    border-radius: 8px;
    margin-bottom: 12px;
    border-left: 4px solid #667eea;
}

.tip-content p {
    margin: 0 0 12px 0;
    color: #374151;
    line-height: 1.6;
}

.tip-content p:last-child {
    margin-bottom: 0;
}

.tip-content strong {
    color: #111827;
    font-weight: 600;
}

.tip-content kbd {
    display: inline-block;
    padding: 3px 8px;
    font-size: 12px;
    font-family: monospace;
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    margin: 0 2px;
}

.tip-content .tip-category {
    display: inline-block;
    padding: 4px 10px;
    background: #dbeafe;
    color: #1e40af;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.next-tip-btn {
    width: 100%;
    padding: 10px 16px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
}

.next-tip-btn:hover {
    background: #5568d3;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(102, 126, 234, 0.3);
}

.next-tip-btn:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .subscriber-sidebar {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-item {
        padding: 16px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .subscriber-card {
        background: #1f2937;
        border-color: #374151;
    }

    .card-header h3 {
        color: #f9fafb;
    }

    .tips-card {
        background: #111827;
        border-color: #374151;
    }

    .tip-content {
        background: #1f2937;
        border-left-color: #667eea;
    }

    .tip-content p {
        color: #d1d5db;
    }

    .tip-content strong {
        color: #f9fafb;
    }

    .tip-content kbd {
        background: #374151;
        border-color: #4b5563;
        color: #f9fafb;
    }
}
