@import url("layout.css");
@import url("components.css");
@import url("pages.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-dark: #0f2b46;
    --blue-darat: #1d4ed8;
    --blue-laut: #0ea5e9;
    --text-dark: #1e293b;
    --text-light: #f8fafc;
    --transition: all 0.3s ease;
}

body {
    background:
        radial-gradient(circle at 8% 25%, rgba(255, 255, 255, 0.9) 0 90px, transparent 92px),
        radial-gradient(circle at 92% 42%, rgba(255, 255, 255, 0.75) 0 110px, transparent 112px),
        linear-gradient(180deg, #effaff 0%, #dff5fb 48%, #c8ecf7 100%);
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

