/* Custom Styles for Pinterest Pin Generator */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800;900&family=Montserrat:wght@400;700;800;900&family=Playfair+Display:ital,wght@0,600;0,800;1,600&family=Poppins:wght@500;700;800&display=swap');

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #0f172a;
    color: #f8fafc;
    min-height: 100vh;
}

/* Pinterest Red Color Palette */
.brand-pinterest {
    color: #e60023;
}
.bg-brand-pinterest {
    background-color: #e60023;
}
.bg-brand-pinterest:hover {
    background-color: #ad001a;
}

/* Live Canvas Scaled Preview Container */
.canvas-preview-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 2 / 3;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.4);
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#pinCanvas {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Glass Card styling */
.glass-panel {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-panel-hover {
    transition: all 0.2s ease-in-out;
}
.glass-panel-hover:hover {
    border-color: rgba(230, 0, 35, 0.4);
    box-shadow: 0 10px 25px -5px rgba(230, 0, 35, 0.15);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #0f172a;
}
::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #475569;
}
