
/* Custom styles for post3.css - Πεβββόβα */
@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
    --glass: rgba(255, 255, 255, 0.05);
    --glass-blur: blur(12px);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --purple-gradient: linear-gradient(to right, #6f42c1, #007bff);
}

/* Glassmorphism base */
.glass {
    background: var(--glass);
    border: var(--glass-border);
    backdrop-filter: var(--glass-blur);
    transition: all 0.3s ease;
}

/* Custom card styles */
.glass:hover {
    backdrop-filter: var(--glass-blur) blur(16px);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Chart canvas styling */
#microChart {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    border: 1px solid rgba(255,255,255,0.05);
}

/* Input/textarea focus states */
input:focus, textarea:focus {
    outline: none !important;
    border-color: #6f42c1 !important;
    box-shadow: 0 0 0 3px rgba(111,66,193,0.2);
}

/* Button animations */
.bg-gradient-to-r {
    transition: all 0.3s ease;
}

.bg-gradient-to-r:hover {
    box-shadow: 0 0 10px rgba(103,62,255,0.4);
}

/* Form section spacing */
.network-section {
    scroll-margin-top: 80px;
}

/* Responsive card grid */
@media (max-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: 1fr !important;
    }
}

/* Footer styles */
footer a:hover {
    background: linear-gradient(90deg, #a855f7, #6366f1);
    -webkit-background-clip: text;
    color: transparent;
}
