/*@import "tailwindcss";*/

:root {
    --bg-main: #090a0f;
    --bg-card: rgba(17, 19, 26, 0.85);
    --bg-card-hover: rgba(23, 26, 36, 0.95);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(190, 18, 60, 0.35);
    --ruby-accent: #be123c;
    --ruby-glow: rgba(190, 18, 60, 0.4);
    --text-primary: #f4f4f5;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

/* Typography classes */
.font-serif-brand {
    font-family: 'Cormorant Garamond', 'Cinzel', Georgia, serif;
}

/* Subtle background grid */
.bg-grid-ambient {
    background-size: 44px 44px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
}

/* Gradient line divider replicating the logo accurately */
.logo-divider {
    background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.75) 0%,
            rgba(254, 205, 211, 0.85) 15%,
            #be123c 42%,
            #9f1239 50%,
            #be123c 58%,
            rgba(254, 205, 211, 0.85) 85%,
            rgba(255, 255, 255, 0.75) 100%
    );
    box-shadow: 0 0 14px rgba(190, 18, 60, 0.45);
}

/* Micro card styling */
.glass-card {
    background-color: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.14);
}

/* Interactive button effects */
.btn-action {
    transition: all 0.2s ease;
}

.btn-action:active {
    transform: scale(0.98);
}

/* Notification toast */
#toast {
    transition: opacity 0.3s ease, transform 0.3s ease;
}
