/* ==========================================================================
   GLOBAL RESETS, THEME & BASE ELEMENTS
   ========================================================================== */
body * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    outline: 0;
    color: #fafafa;
    text-decoration: none;
    text-align: center;
    list-style: none;
    scroll-behavior: smooth;
}

body {
    display: flex;
    justify-content: center;
    height: 100vh;
    margin: 0;
    font-family: monospace;
    overflow: hidden;
    background: #222233;
}

a {
    cursor: pointer;
    font-style: italic;
    font-weight: bold;
    transition: color 0.2s ease, transform 0.2s ease;
}

img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    position: relative;
    top: 8px;
}

pre {
    padding: 20px;
    background: #12121f;
    border-radius: 12px;
    line-height: 1.6;
    overflow-x: auto;
    font-size: 14px;
    box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   SCROLLBAR UTILITIES
   ========================================================================== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-thumb {
    background: #4b4b7a;
    border-radius: 10px;
    transition: background 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff4e88;
}

::-webkit-scrollbar-track {
    background: transparent;
}

/* ==========================================================================
   GLOBAL UTILITIES & BUTTONS
   ========================================================================== */
.button {
    display: inline-block;
    padding: 12px 24px;
    background: #ff4e88;
    border-radius: 8px;
    font-weight: bold;
    letter-spacing: 1px;
    text-decoration: none;
    color: #fafafa;
    box-shadow: 0 4px 0 #b32d5b;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.button:hover {
    background: #e03d76;
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #b32d5b;
}

.button:active {
    transform: translateY(2px);
    box-shadow: 0 0px 0 #b32d5b;
}

/* ==========================================================================
   SHARED ANIMATIONS
   ========================================================================== */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}