@import url('https://fonts.googleapis.com/css2?family=Gloock&display=swap');

/* Reset & Base */
*,
*:after,
*:before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #000;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif;
    overflow-x: hidden;
}

/* Widget Styles */
.mlwb-entrance-animations {
    position: relative;
    color: #111;
    background-color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.5s ease;
}

.mlwb-entrance-animations-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: relative;
}

.mlwb-entrance-animations-scene {
    perspective: 1000px;
    overflow: visible;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    --mlwb-entrance-animations-scale: 1;
    transform: scale(var(--mlwb-entrance-animations-scale));
    transform-origin: center center;
    pointer-events: none;
}

.mlwb-entrance-animations-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform: scale(var(--mlwb-entrance-animations-scale, 1));
    transform-origin: center;
}

.mlwb-entrance-animations-group {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.mlwb-entrance-animations-card,
.card {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: auto;
}

.mlwb-entrance-animations-card__media,
.card__img {
    width: 80px;
    max-width: 80px;
    border-radius: 5px;
    aspect-ratio: 2/3;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    display: block;
    transform-origin: center center;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.gloock-regular {
    font-family: "Gloock", serif;
    font-weight: 400;
    font-style: normal;
}

.mlwb-entrance-animations-headings,
.headings {
    text-align: center;
    position: relative;
    z-index: 20;
    color: #000;
    text-transform: uppercase;
    pointer-events: none;
}

.mlwb-entrance-animations-headings__main,
.headings__main {
    line-height: 0.8;
    font-size: clamp(2.5rem, 1.59rem + 3.883vw, 6.25rem);
    margin: 0;
    transition: color 0.3s;
}

.mlwb-entrance-animations-headings__subtitle,
.headings_subtitle {
    line-height: 1.2;
    font-size: clamp(1rem, 0.757rem + 1.036vw, 2rem);
    margin: 20px 0 0;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}

/* GUI */
.demo-gui {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 10px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.gui-btn {
    appearance: none;
    border: none;
    background: transparent;
    color: #111;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gui-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.gui-btn.active {
    background: #111;
    color: #fff;
}