/* Theme-specific styles */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.instagram-gradient {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.instagram-text-gradient {
    background: linear-gradient(45deg, #f09433 0%, #dc2743 50%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

details summary::-webkit-details-marker {
    display: none;
}

html {
    scroll-behavior: smooth;
}

input:focus {
    box-shadow: none !important;
}

.shadow-2xl {
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.12);
}

.prose ul li {
    position: relative;
    padding-left: 1.5rem;
}

.prose ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}