body {
    min-height: 100vh;
    margin: 0;
    background: #0a0e27;
    background-image: 
        radial-gradient(at 20% 30%, rgba(14, 165, 233, 0.15) 0px, transparent 50%),
        radial-gradient(at 80% 70%, rgba(139, 92, 246, 0.12) 0px, transparent 50%),
        radial-gradient(at 50% 50%, rgba(59, 130, 246, 0.08) 0px, transparent 50%);
    color: #fff;
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    font-size: 1.5em;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.01) 0px, transparent 1px, transparent 40px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.01) 0px, transparent 1px, transparent 40px);
    pointer-events: none;
    z-index: 0;
    transform: translateZ(0);
    will-change: auto;
}

a {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    transition: opacity .3s ease;
}

a:hover {
    opacity: .7;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.site-header__logo {
    width: clamp(160px, 15vw, 250px);
    height: auto;
}

.site-header__copy {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .25em;
    font-size: .6em;
    color: #9fa6ff;
}

h1 {
    margin: 0;
    font-weight: 600;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

h2 {
    margin: 0;
    font-weight: 300;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.site-main {
    width: min(100%, 1100px);
    padding: 0 1.5rem 5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.container {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.intro {
    align-items: center;
    text-align: center;
}

.lead {
    margin: 0;
    line-height: 1.5;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 400;
}

.section-title {
    text-align: center;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
}

.feature-list li {
    padding: .5rem 1.25rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: .85rem;
    font-weight: 500;
    transition: all .3s ease;
}

.feature-list li:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.form_table {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    gap: 1.5rem;
}

.form_col {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.form_row {
    width: 100%;
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.form_row.left {
    justify-content: flex-start;
}

.form_row.right {
    justify-content: flex-end;
}

.form_row.left label {
    min-width: 100px;
    text-align: right;
}

.form_row.right .checkbox-label {
    min-width: 180px;
    margin-right: 8px;
    text-align: right;
    white-space: nowrap;
    font-size: 0.8em;
    opacity: 0.9;
}

.form_row.center {
    justify-content: center;
    margin-bottom: 20px;
}

.form_row.right input[type="text"]:not(.short), .form_row.left input[type="text"]:not(.short) {
    width: 100%;
    height: 25px;
    font-size: 0.7em;
}

.builder__form input[type="text"] {
    width: 220px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    font-size: 1em;
    text-align: center;
    padding: 2px 10px;
    transition: all .3s ease;
}

.builder__form input[type="text"]:hover {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(255, 255, 255, 0.25);
}

.builder__form input[type="text"]:focus {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(14, 165, 233, 0.5);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1),
                inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.channel-input {
    width: 350px !important;
    height: 50px !important;
    font-size: 1.1em !important;
    font-weight: 500 !important;
}

.recommended-btn {
    height: 44px;
    padding: 0 24px;
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(167, 139, 250, 0.25) 100%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: #fff;
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2),
                inset 0 1px 1px rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.recommended-btn span {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.recommended-btn svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    opacity: 0.9;
}

.recommended-btn:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.35) 0%, rgba(167, 139, 250, 0.3) 100%);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35),
                0 0 40px rgba(139, 92, 246, 0.2),
                inset 0 1px 1px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.recommended-btn:hover svg {
    transform: rotate(45deg) scale(1.1);
}

.recommended-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
}

input[type="text"].short {
    width: 40px;
    height: 25px;
    font-size: 0.8em;
}

/* Checkbox label styling */
.checkbox-label {
    font-size: 0.8em;
    opacity: 0.9;
}

/* Glass toggle styling for checkboxes */
.glass-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
    cursor: pointer;
    flex-shrink: 0;
}

.glass-toggle .toggle-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.glass-toggle .toggle-track {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: visible;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3),
                0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.glass-toggle .glass-filter,
.glass-toggle .glass-overlay,
.glass-toggle .glass-specular {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 16px;
}

.glass-toggle .glass-filter {
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 1;
}

.glass-toggle .glass-overlay {
    background: rgba(255, 255, 255, 0.18);
    z-index: 2;
    transition: background 0.3s ease;
}

.glass-toggle .glass-specular {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.3);
    z-index: 3;
}

.glass-toggle .toggle-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4),
                inset 0 1px 2px rgba(255, 255, 255, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 4;
}

.glass-toggle .toggle-input:checked ~ .toggle-track {
    background: rgba(14, 207, 255, 0.2);
    border-color: rgba(14, 207, 255, 0.4);
}

.glass-toggle .toggle-input:checked ~ .toggle-track .toggle-thumb {
    transform: translateX(28px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    box-shadow: 0 3px 12px rgba(14, 207, 255, 0.4),
                inset 0 1px 2px rgba(255, 255, 255, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.2);
}

.glass-toggle .toggle-input:checked ~ .toggle-track .glass-overlay {
    background: rgba(14, 207, 255, 0.25);
}

.glass-toggle:hover .toggle-track {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.glass-toggle:hover .toggle-track .glass-overlay {
    background: rgba(255, 255, 255, 0.18);
}

.glass-toggle .toggle-input:checked:hover ~ .toggle-track {
    background: rgba(14, 207, 255, 0.25);
    border-color: rgba(14, 207, 255, 0.5);
}

.glass-toggle .toggle-input:checked:hover ~ .toggle-track .glass-overlay {
    background: rgba(14, 207, 255, 0.3);
}

#fontCustom {
    width: 180px;
    height: 25px;
    font-size: 0.7em;
}

#emoteScale {
    width: 180px !important;
    height: 25px;
    font-size: 0.7em;
    padding: 0 8px !important;
    box-sizing: border-box;
}

#customFontRow {
    width: 100%;
    display: none;
}

#customFontRow.visible {
    display: flex;
}

.glass-select-wrapper {
    position: relative;
    width: 180px;
    height: 32px;
    border-radius: 12px;
    overflow: hidden;
}

.glass-filter,
.glass-overlay,
.glass-specular {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
}

.glass-filter {
    z-index: 1;
    backdrop-filter: blur(2px);
    filter: saturate(120%) brightness(1.15);
}

.glass-overlay {
    z-index: 2;
    background: rgba(255, 255, 255, 0.25);
}

.glass-specular {
    z-index: 3;
    box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.75);
}

.glass-select-wrapper select {
    position: relative;
    z-index: 4;
    background: transparent;
    border: none;
}

.builder__form select {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
    background: transparent;
    color: #fff;
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    font-size: 0.7em;
    padding: 0px 8px;
    cursor: pointer;
    transition: all .3s ease;
    font-weight: 500;
}

.builder__form select option {
    background: #1a1a2e;
    color: #fff;
}

.hidden {
    display: none !important;
}

#fade_seconds {
    margin: 10px;
    font-size: 0.7em;
    font-weight: 200;
}

.builder__form select:focus,
.builder__form input:focus,
button:focus {
    outline: none;
}

.builder__form input[type="text"]:focus,
.builder__form select:focus {
    outline: none;
}

.glass-select-wrapper:focus-within .glass-overlay {
    background: rgba(255, 255, 255, 0.35);
}

.glass-select-wrapper:hover .glass-overlay {
    background: rgba(255, 255, 255, 0.3);
}

#botNamesContainer input[name="botNames"] {
    width: 100%;
    /*height: 25px;*/
    /*font-size: 0.7em;*/
}

/*#botNamesContainer input[name="botNames"]::placeholder {*/
/*    opacity: 0.8;*/
/*    color: red;*/
/*}*/

#botNamesContainer label {
    margin-right: 20px;
    flex-shrink: 0;
}

.builder__form {
    width: min(100%, 1050px);
    margin: 0 auto;
    padding: 2.5rem;
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px) saturate(140%);
    -webkit-backdrop-filter: blur(8px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.05),
                inset 0 1px 1px rgba(255, 255, 255, 0.1),
                0 0 80px rgba(14, 165, 233, 0.1);
    transform: translateZ(0);
    will-change: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    position: relative;
}

.builder__form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    pointer-events: none;
}

#submit_container {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.preview {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.preview .glass-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.preview .toggle-label {
    font-size: 0.8em;
    opacity: 0.9;
    white-space: nowrap;
}

.preview-card {
    width: 100%;
    padding: 1rem;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(8px) saturate(150%);
    -webkit-backdrop-filter: blur(8px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.05),
                inset 0 1px 1px rgba(255, 255, 255, 0.08);
    margin-bottom: 1.5rem;
}



.preview__label {
    font-size: .8em;
    opacity: .8;
    padding-left: 1rem;
}

#example {
    display: block;
    width: 100%;
    height: auto;
    max-height: 10em;
    margin: 0;
    padding: 1rem;
    border-radius: 12px;
    overflow: hidden;
    color: white;
    font-weight: 800;
    word-break: break-word;
    transition: background-color .3s ease-in-out;
}

#example.white {
    background-color: rgba(255, 255, 255, 0.7);
    width: calc(100% - 40px);
}

#example .user_info {
    display: inline-block;
}

#example .badge {
    vertical-align: middle;
    border-radius: 10%;
}

#example .cheer_bits {
    color: rgb(189, 98, 255);
    font-size: 0.6em;
    -webkit-text-stroke: 1px black;
}

#example .emote {
    vertical-align: middle;
}

#example .emoji {
    vertical-align: middle;
}

input[type="submit"],
input[type="button"] {
    width: 180px;
    height: 55px;
    border: 1px solid rgba(14, 165, 233, 0.4);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.3) 0%, rgba(59, 130, 246, 0.25) 100%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: #fff;
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    font-size: 1.05em;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.3),
                0 0 25px rgba(14, 165, 233, 0.2),
                0 0 40px rgba(14, 165, 233, 0.1),
                inset 0 1px 2px rgba(255, 255, 255, 0.15),
                inset 0 -1px 3px rgba(14, 165, 233, 0.25);
    position: relative;
    overflow: hidden;
}

input[type="submit"]::before,
input[type="button"]::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        transparent 35%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(14, 165, 233, 0.2) 55%,
        transparent 65%,
        transparent 100%
    );
    animation: holographic 3.5s ease-in-out infinite;
}

@keyframes holographic {
    0% {
        transform: translateX(-100%) translateY(-100%);
    }
    100% {
        transform: translateX(100%) translateY(100%);
    }
}

input[type="submit"]:hover,
input[type="button"]:hover {
    border-color: rgba(14, 165, 233, 0.5);
    box-shadow: 0 6px 16px rgba(14, 165, 233, 0.3),
                0 0 30px rgba(14, 165, 233, 0.2),
                inset 0 1px 1px rgba(255, 255, 255, 0.15),
                inset 0 -1px 2px rgba(14, 165, 233, 0.25);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.35) 0%, rgba(59, 130, 246, 0.3) 100%);
    border-color: rgba(14, 165, 233, 0.5);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.35),
                0 0 40px rgba(14, 165, 233, 0.3),
                0 0 60px rgba(14, 165, 233, 0.2),
                inset 0 1px 1px rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

input[type="submit"]:active,
input[type="button"]:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
}

#result {
    position: relative;
    width: min(100%, 950px);
    margin: 0 auto;
    padding: 25px;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px) saturate(150%);
    -webkit-backdrop-filter: blur(8px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.05),
                inset 0 1px 1px rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#url-container {
    position: relative;
    width: min(100%, 800px);
    display: flex;
    gap: 12px;
    align-items: stretch;
}

#url {
    flex: 1;
    height: 50px;
    padding: 0 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: #fff;
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    font-size: .85em;
    transition: all .3s ease;
}

#url:hover {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(255, 255, 255, 0.25);
}

#url:focus {
    outline: none;
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(14, 165, 233, 0.5);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.copy-button {
    position: relative;
    min-width: 100px;
    width: auto;
    height: 50px;
    padding: 0 28px;
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.25) 0%, rgba(59, 130, 246, 0.2) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    font-size: .9em;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2),
                inset 0 1px 1px rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.copy-button svg {
    display: none;
}

.copy-button .copied-text,
.copy-button .copy-text {
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.copy-button .copied-text {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
}

.copy-button .copy-text {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.copy-button.copied .copy-text {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
}

.copy-button.copied .copied-text {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.copy-button:hover {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.35) 0%, rgba(59, 130, 246, 0.3) 100%);
    border-color: rgba(14, 165, 233, 0.5);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.35),
                0 0 40px rgba(14, 165, 233, 0.2),
                inset 0 1px 1px rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.copy-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
}

#result p {
    text-align: center;
    font-size: 0.9em;
    margin: 1em;
}

details summary {
    text-align: center;
    font-size: 2rem;
}

footer {
    width: 100%;
    margin-top: 0.25rem;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    background: rgba(10, 14, 39, 0.7);
    backdrop-filter: blur(6px) saturate(150%);
    -webkit-backdrop-filter: blur(6px) saturate(150%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

footer p {
    font-size: .75em;
    font-weight: 300;
    margin: 0.5rem 0;
    opacity: .85;
    line-height: 1.6;
}

footer a {
    font-weight: 500;
    transition: opacity .3s ease;
}

footer a:hover {
    opacity: .6;
}

.yaseen-logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 2rem 0 0rem;
    position: relative;
    z-index: 1;
}

.logo-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: translateY(-5px);
}

.twitch-logo {
    max-width: 51px;
    height: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.twitch-logo:hover {
    opacity: 1;
}

.yaseen-logo {
    max-width: 192px;
    height: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.yaseen-logo:hover {
    opacity: 1;
}

.github-icon {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    margin-left: 4px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.github-icon:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.github-icon svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.simpler-link {
    font-weight: inherit;
}

.input-bad {
    border: 2px solid red !important;
}

.simpler-link {
    font-weight: inherit;
}

.strikethrough {
    text-decoration: line-through .1em;
}

@media (max-width: 900px) {
    .form_table {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .form_col {
        width: 100%;
        max-width: 100%;
    }

    .form_row.left,
    .form_row.right {
        justify-content: center;
        flex-wrap: wrap;
    }

    .form_row.right {
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
    }

    .form_row.right .checkbox-label {
        min-width: auto;
        text-align: right;
        margin-right: 0.5rem;
    }

    #example {
        width: 100%;
    }

    .yaseen-logo-container {
        flex-direction: column;
        gap: 1rem;
    }

    .twitch-logo {
        max-width: 60px;
    }

    .yaseen-logo {
        max-width: 200px;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 1.2em;
    }

    .site-header {
        flex-direction: column;
    }

    .preview__hint {
        display: none;
    }
}



/* Scrollbar */

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-thumb {
    background: rgb(43, 43, 43);
}

::-webkit-scrollbar-thumb:hover {
    background: rgb(77, 77, 77);
}

::-webkit-scrollbar-track {
    background: black;
}