/* Custom styles for SMM TikTok Project */

/* 1. General Body and Font Styles
  2. Gradient and Button Effects
*/

/* 1. General Body and Font Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc; /* Tailwind's gray-50 */
}

/* 2. Gradient and Button Effects */
.gradient-bg {
    background: linear-gradient(135deg, #6366f1, #a855f7); /* Indigo to Purple */
}

.cta-button {
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
