/* ========================================
   RADIO LOTUS - APP BASE CSS
   Core Styles & Design System
   ======================================== */

/* RESET & BASE */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    background: radial-gradient(ellipse at top, #1e1b4b 0%, #0f172a 50%, #020617 100%);
    background-attachment: fixed;
    color: #f8fafc;
    line-height: 1.6;
    min-height: 100vh;
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Buttons reset */
button {
    font-family: inherit;
    cursor: pointer;
}

/* Selection */
::selection {
    background: rgba(99, 102, 241, 0.3);
    color: #f8fafc;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.5);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #6366f1, #ec4899);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #818cf8, #f472b6);
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

@media (min-width: 768px) {
    .container {
        padding-inline: 2rem;
    }
}

/* Focus styles */
:focus-visible {
    outline: 2px solid #6366f1;
    outline-offset: 2px;
}

