/* Hytale Server List - Tailwind CSS Theme */
/* Pre development použite Tailwind CDN v templates */

/* Custom CSS Variables */
:root {
    --primary: #6366F1;
    --primary-dark: #4F46E5;
    --bg-dark: #0F172A;
    --surface-dark: #1E293B;
    --border-dark: #334155;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-dark);
    color: #F1F5F9;
    line-height: 1.6;
}

/* Utility Classes */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}
