:root {
    --primary-glow: #00a8c8;
    --secondary-glow: #6c5ce7;
    --text-main: #1f2937;
    --text-strong: #0f172a;
    --text-muted: #64748b;
    --glass-border: rgba(15, 23, 42, 0.14);
    --glass-border-strong: rgba(0, 168, 200, 0.46);
    --shadow-soft: 0 24px 58px rgba(15, 23, 42, 0.16);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body,
body * {
    font-family: "Microsoft JhengHei", Arial, sans-serif;
}

body {
    color: var(--text-main);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
}


.disabled-page {
    width: 100vw;
    height: 100vh;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%), linear-gradient(90deg, #c5ebf9 0%, #cacaff 100%);
    color: #0f172a;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 4px;
    text-align: center;
    align-content: center;
    padding:5%;
}