:root {
    /* LMNTiX Brand Colors */
    --background: #FFFFFF;
    --foreground: #1A3A5E; /* Dark Navy */
    --primary: #1A3A5E; /* Dark Navy */
    --secondary: #44546A; /* Slate */
    --accent: #00A19D; /* Teal */
    --destructive: #FF6B35; /* Orange */
    --muted: #F5F7FA; /* Soft Neutral */
    --border: #E5E8EB; /* Light Slate */
    
    /* Scrollbar colors */
    --scrollbar-track: #f8f9fa;
    --scrollbar-thumb: #00A19D; /* Teal */
}

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

html {
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--background);
    color: var(--foreground);
    height: 100vh;
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: background-color 0.3s ease;
}

.container {
    text-align: center;
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    animation: fade-in 0.5s ease-out;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(-1rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1rem;
    animation: float-up 3s ease-in-out infinite;
}

@keyframes float-up {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

p {
    font-size: 1.125rem;
    color: var(--secondary);
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
}

small {
    font-size: 0.875rem;
    color: var(--secondary);
    opacity: 0.8;
    margin-top: 1rem;
    display: block;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 100px;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 161, 157, 0.4); /* Teal #00A19D */
    border-radius: 100px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 161, 157, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 1.5rem;
    }
    
    .logo {
        width: 100px;
        height: 100px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 1rem;
    }
    
    .logo {
        width: 80px;
        height: 80px;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    p {
        font-size: 0.9375rem;
    }
    
    small {
        font-size: 0.8125rem;
    }
}
