* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.container {
    max-width: 1200px;
    width: 100%;
}

.header {
    text-align: center;
    margin-bottom: 4rem;
}

.title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(to right, #ffffff, #a0a8c8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.25rem;
    color: #8b92b0;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.button-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.dept-button {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.dept-button::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: currentColor;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dept-button:hover {
    transform: translateX(4px);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dept-button:hover::before {
    opacity: 1;
}

.dept-button.lspd {
    color: #3b82f6;
}

.dept-button.bcso {
    color: #f59e0b;
}

.dept-button.sast {
    color: #10b981;
}

.dept-button.dispatch {
    color: #8b5cf6;
}

.dept-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}

.dept-button svg {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.dept-button span {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.footer {
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .button-container {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .dept-button {
        padding: 0.875rem 1.25rem;
    }

    .dept-logo,
    .dept-button svg {
        width: 40px;
        height: 40px;
    }

    .dept-button span {
        font-size: 0.95rem;
    }
}
