@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Syne:wght@600;700;800&display=swap');

:root {
    --accent: #0ea5e9;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
}

.font-display {
    font-family: 'Syne', 'Inter', system-ui, sans-serif;
    font-weight: 700;
}

.section-header {
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.text-gradient {
    background: linear-gradient(135deg, #e0f2fe 0%, #7dd3fc 38%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-blue {
    box-shadow: 0 0 60px rgba(14, 165, 233, 0.08);
}

.soft-grid {
    background-image: radial-gradient(circle at 1px 1px, rgba(148, 163, 184, 0.08) 1px, transparent 0);
    background-size: 38px 38px;
}

.section-kicker {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
}

.ice-card {
    border: 1px solid rgba(55, 65, 81, 0.7);
    background: rgba(17, 24, 39, 0.62);
    border-radius: 1rem;
    transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.ice-card:hover {
    border-color: color-mix(in srgb, var(--accent) 32%, transparent);
    background: rgba(17, 24, 39, 0.86);
    transform: translateY(-2px);
}

.accent-text,
.text-sky-300,
.text-sky-400 {
    color: var(--accent) !important;
}

.accent-bg,
.bg-sky-400,
.bg-sky-500 {
    background-color: var(--accent) !important;
}

.accent-border,
.border-sky-400,
.border-sky-500 {
    border-color: var(--accent) !important;
}

.hover\:bg-sky-300:hover,
.hover\:bg-sky-600:hover {
    background-color: var(--accent) !important;
    filter: brightness(1.08);
}

.hover\:text-sky-200:hover,
.hover\:text-sky-300:hover {
    color: var(--accent) !important;
}

input[type="date"],
input[type="time"] {
    color-scheme: dark;
}

.field-card {
    border: 1px solid rgba(55, 65, 81, 0.7);
    border-radius: 16px;
    padding: 16px;
    background: rgba(17, 24, 39, 0.62);
}

.admin-panel {
    display: none;
}

.admin-panel.active {
    display: block;
}

.dashboard-input {
    background: #0f172a;
    border: 1px solid #334155;
    color: #e2e8f0;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.95rem;
}

.dashboard-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.tab-button {
    padding: 10px 18px;
    font-size: 0.875rem;
    font-weight: 500;
    border-bottom: 3px solid transparent;
}

.tab-button.active {
    border-bottom-color: var(--accent) !important;
    color: var(--accent) !important;
    font-weight: 600;
}

.preset-color {
    width: 32px;
    height: 32px;
    border-radius: 9999px;
    cursor: pointer;
    border: 2px solid #334155;
}

.preset-color.active {
    border-color: white;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.3);
}

.status-warning {
    border-color: rgba(245, 158, 11, 0.35);
    background: rgba(120, 53, 15, 0.25);
    color: #fde68a;
}

.status-success {
    border-color: rgba(16, 185, 129, 0.35);
    background: rgba(6, 78, 59, 0.25);
    color: #a7f3d0;
}

.status-error {
    border-color: rgba(239, 68, 68, 0.35);
    background: rgba(127, 29, 29, 0.25);
    color: #fecaca;
}

.save-status {
    min-height: 1.25rem;
}

