body,
html {
    min-height: 100vh;
    background: #071220;
    padding: 0;
    margin: 0;
    color: #fff;
    scroll-behavior: smooth;
    overflow-x: clip;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    background: #071220;
    color: white;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

.uk-text-white {
    color: white;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37, #80611d);
    padding: 14px 26px;
    border-radius: 8px;
    color: #070b12;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 18px 40px rgba(212, 175, 55, .18);
}

.btn-primary:hover {
    transform: translateY(-2px);
    color: #070b12;
}

.btn-link {
    color: #efe7d5;
    text-decoration: none;
    font-weight: 600;
}