@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

@tailwind base;
@tailwind components;
@tailwind utilities;

.grid-pattern {
    background-size: 40px 40px;
    background-image: linear-gradient(to right, rgba(2, 132, 199, 0.1) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(2, 132, 199, 0.1) 1px, transparent 1px);
}

.terminal-mockup {
    background-color: #082f49;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    border: 1px solid #0c4a6e;
}

.terminal-header {
    background-color: #0c4a6e;
    padding: 0.5rem 1rem;
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid #075985;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red { background-color: #ef4444; }
.dot-yellow { background-color: #eab308; }
.dot-green { background-color: #22c55e; }

.terminal-body {
    padding: 1.5rem;
    font-family: 'Roboto Mono', monospace;
    color: #bae6fd;
    font-size: 0.875rem;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}