﻿/* ===== Reset & Normalize ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    width: 100%;
}

body {
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-overflow-scrolling: touch;
    background: linear-gradient(135deg, #8B3F9A 0%, #6E35A1 50%, #5B2C75 100%);
    background-attachment: fixed;
    color: #FFFFFF;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
    background: transparent;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

::selection {
    background: var(--lacquer-gold, #A8814E);
    color: var(--porcelain, #FBFAF8);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--porcelain, #FBFAF8);
}
::-webkit-scrollbar-thumb {
    background: var(--rose-mist, #C9A6A3);
    border-radius: 10px;
    border: 2px solid var(--porcelain, #FBFAF8);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--lacquer-gold, #A8814E);
}

