/* ----------------------------------------------------------
   FONT IMPORTS
---------------------------------------------------------- */
@font-face {
    font-family: 'Satoshi';
    src: url('/assets/fonts/Satoshi-Light.ttf') format('truetype');
}

@font-face {
    font-family: "basiic";
    src: url("https://files.catbox.moe/jtvuhg.ttf") format("truetype");
}

@font-face {
    font-family: "spirit"; 
    src: url(/assets/fonts/pixelpoiiz.ttf) format("truetype"); 
}

/* ----------------------------------------------------------
   ROOT VARIABLES
---------------------------------------------------------- */
:root {
    --pink: #FFEAFC;
    --pink-dark: #FFB2E6;
    --bg: rgba(255, 255, 255, 0.658);
    --text: #FFB2E6;
    --gray: #ccc;
    --shadow: #ffd4f9;
}

/* ----------------------------------------------------------
   GLOBAL ELEMENTS
---------------------------------------------------------- */
body {
    margin: 0;
    padding: 0;
    background-image: url(/assets/lacebg.png);
    background-size: 200px;
    font-family: 'basiic', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin: 0;
    font-size: 12px;
    color: var(--text);
}

/* ----------------------------------------------------------
   UTILITY CLASSES
---------------------------------------------------------- */
.w-50 { width: 50%; }

.border { border: 1px solid red; }

.js-hide { display: none; }

.row { display: flex; }

.col {
    display: flex;
    flex-direction: column;
}

.items-center {
    justify-content: center;
    align-items: center;
}

.row-end {
    display: flex;
    justify-content: space-between;
}


.g-5 { gap: 5px; }
.g-10 { gap: 10px; }
.g-15 { gap: 15px; }
.p-10 {
    padding: 10px;
}

.p-20 {
    padding: 20px;
}

.g-20 {
    gap: 20px;
}

/* ----------------------------------------------------------
   TYPOGRAPHY
---------------------------------------------------------- */
.poempuppy {
    font-family: 'spirit', sans-serif;
    letter-spacing: -1px;
    color: var(--text);
    text-shadow: 0 0 10px var(--shadow);
}

/* ----------------------------------------------------------
   LAYOUT / COMPONENTS
---------------------------------------------------------- */
.box-primary {
    color: var(--text);
    overflow-y: hidden;
    background-color: var(--bg);
    border: 1px solid var(--pink-dark);
    box-shadow: 0px 0px 10px var(--shadow);
}

.box-primary--col {
    display: flex;
    flex-direction: column;
}

.box-primary--row {
    display: flex;
}

.toggles {
    position: absolute;
    top: 10px;
    right: 10px;
}


.window-box {
    display: flex;
    padding: 5px;
    background-color: var(--bg);
    border: 1px solid var(--pink-dark);
    box-shadow: 2px 2px 0 var(--gray);
}

.toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 20px;
    gap: 2px;
    padding: 2px 5px;
    background-color: var(--pink);
    border: 1px solid var(--pink-dark);
    border-bottom: none;
    box-shadow: 2px 2px 0 var(--gray);
}

.tool-btn {
    display: flex;
    width: 5px;
    height: 5px;
    padding: 5px;
    font-size: 10px;
    color: var(--text);
    background-color: var(--bg);
    border: 1px solid var(--gray);
}

.toolbar-txt {
    font-family: 'basiic', sans-serif;
    font-size: 10px;
    color: var(--text);
}

.toolbar-btn-group {
    display: flex;
    gap: 2px; 
}

.drop-grid {
    display: grid;
    grid-template-columns: repeat(6, 2fr);
    gap: 10px;
    padding: 5px;
}

.drop-item {
    width: 25px;
    height: 25px;
}

/* ----------------------------------------------------------
   INPUTS
---------------------------------------------------------- */
input {
    appearance: none;
    width: 465px;
    height: 3px;
    background-color: var(--pink);
    border-radius: 8px;
}

input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 12px;
    height: 12px;
    cursor: pointer;
    border-radius: 50%;
    background: var(--pink-dark);
    border: none;
}

/* ----------------------------------------------------------
   ANIMATIONS
---------------------------------------------------------- */
.scroll {
    display: flex;
    gap: 3px;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}


