* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
    user-select: none;
    color: #f4f4f4;
    background: #0b0c10;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255,255,255,0.020) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px),
        radial-gradient(circle at 50% 18%, rgba(255,255,255,0.035), transparent 32%),
        linear-gradient(135deg, rgba(255,255,255,0.020), transparent 32%);
    background-size: 92px 92px, 92px 92px, 100% 100%, 100% 100%;
    opacity: 0.70;
}

body.homeBody {
    height: 100vh;
    overflow: hidden;
    perspective: 1000px;
}

#bg {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    animation: canvasFade 1.2s linear forwards;
}

@keyframes canvasFade {
    to { opacity: 1; }
}

#glow,
#sideGlowLeft,
#sideGlowRight {
    position: fixed;
    pointer-events: none;
    z-index: 2;
    border-radius: 0;
}

#glow {
    width: min(64vw, 760px);
    height: min(64vw, 760px);
    left: 50%;
    top: 48%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255,255,255,0.045);
    background: transparent;
    opacity: 0;
    animation: hardFrameMove 8s ease-in-out infinite, hardFade 5.5s ease-in-out infinite;
}

#sideGlowLeft {
    width: 28vw;
    height: 1px;
    left: 0;
    top: 72%;
    background: rgba(255,255,255,0.18);
    opacity: 0;
    animation: lineSlideLeft 7s ease-in-out infinite, hardFade 5.2s ease-in-out infinite reverse;
}

#sideGlowRight {
    width: 34vw;
    height: 1px;
    right: 0;
    top: 26%;
    background: rgba(255,255,255,0.13);
    opacity: 0;
    animation: lineSlideRight 8s ease-in-out infinite, hardFade 6s ease-in-out infinite;
}

@keyframes hardFrameMove {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg) scale(0.98); }
    50% { transform: translate(-48%, -52%) rotate(2deg) scale(1.02); }
}

@keyframes lineSlideLeft {
    0%, 100% { transform: translateX(-20px); }
    50% { transform: translateX(36px); }
}

@keyframes lineSlideRight {
    0%, 100% { transform: translateX(20px); }
    50% { transform: translateX(-42px); }
}

@keyframes hardFade {
    0%, 100% { opacity: 0.10; }
    50% { opacity: 0.42; }
}

#shade {
    position: fixed;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.42), transparent 30%, transparent 70%, rgba(0,0,0,0.42)),
        linear-gradient(180deg, rgba(0,0,0,0.52), transparent 40%, rgba(0,0,0,0.50));
}

/* thin mirrored line system behind the content */
#lineSystem {
    position: fixed;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.88;
}

.runLine {
    position: absolute;
    top: -100vh;
    bottom: -100vh;
    width: 1px;
    background: rgba(255,255,255,0.13);
}

.runLine.left { left: 15%; }
.runLine.right { right: 15%; }

.runLine::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 15vw;
    height: 1px;
    background: rgba(255,255,255,0.13);
}

.runLine.left::before { right: 0; }
.runLine.right::before { left: 0; }
.runLine::after { display: none; }

.runSquare {
    position: absolute;
    top: calc(50% - 4px);
    width: 8px;
    height: 8px;
    background: #fff;
    box-shadow: 0 0 14px rgba(255,255,255,0.18);
    animation: none;
}

.runSquare.left { left: calc(15% - 4px); }
.runSquare.right { right: calc(15% - 4px); }

/* =========================================================
   TOP NAVBAR - BRUTAL MINIMAL
   ========================================================= */

#topNav {
    position: fixed;
    top: 22px;
    left: 50%;
    transform: translateX(-50%) translateY(-18px);
    width: calc(100% - 56px);
    max-width: 1220px;
    height: 70px;
    padding: 0 20px;
    border-radius: 0;
    background: rgba(8,9,13,0.78);
    border: 1px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(12px);
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    box-shadow: none;
    animation: navIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes navIn {
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

#brandLogoLink {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.12);
    transition: 0.18s linear;
}

#brandLogoLink:hover {
    border-color: white;
    background: rgba(255,255,255,0.08);
    transform: translate(-2px, -2px);
}

#navLogo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.18));
    -webkit-user-drag: none;
}

#navIcons {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 50px;
    padding: 0;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navIcon {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 0;
    color: rgba(255,255,255,0.70);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.018);
    transition: 0.18s linear;
}

.navIcon:hover,
.navIcon.active {
    background: white;
    color: black;
    border-color: white;
    transform: translate(-2px, -2px);
}

.navIcon i {
    font-size: 17px;
}

.navIcon::after {
    content: attr(data-tip);
    position: absolute;
    top: 56px;
    left: 50%;
    transform: translateX(-50%) translateY(-5px);
    background: #000;
    color: #fff;
    padding: 7px 10px;
    border-radius: 0;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: none;
    transition: 0.16s linear;
}

.navIcon:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

#socialsTop {
    display: flex;
    gap: 8px;
}

.socialTop {
    width: 38px;
    height: 38px;
    border-radius: 0;
    text-decoration: none;
    color: rgba(255,255,255,0.68);
    background: rgba(255,255,255,0.015);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.18s linear;
}

.socialTop:hover {
    color: black;
    background: white;
    border-color: white;
    transform: translate(-2px, -2px);
}

.socialTop i {
    font-size: 16px;
}

/* =========================================================
   HOME HERO - CENTERED SYMMETRY
   ========================================================= */

#homeHero {
    position: relative;
    z-index: 8;
    width: min(900px, calc(100% - 80px));
    min-height: 100vh;
    margin: 0 auto;
    padding: 110px 0 64px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
}

#homeLogoSide {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    opacity: 0;
    transform: translateY(18px);
    animation: centerIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards, hardFloat 7s ease-in-out 1.1s infinite;
}

@keyframes centerIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hardFloat {
    0%, 100% { translate: 0 0; opacity: 1; }
    50% { translate: 0 -5px; opacity: 0.92; }
}

#pic3d {
    position: relative;
    width: min(360px, 72vw);
    height: min(360px, 72vw);
    transform-style: preserve-3d;
    transition: transform 0.14s linear;
}

.picLayer {
    position: absolute;
    left: 0;
    top: 0;
    width: min(360px, 72vw);
    backface-visibility: hidden;
    -webkit-user-drag: none;
    filter:
        drop-shadow(0 0 18px rgba(255,255,255,0.13))
        drop-shadow(18px 18px 0 rgba(255,255,255,0.035));
}

.p1 { transform: translateZ(32px) scale(1.004); opacity: 1; }
.p2 { transform: translateZ(12px) scale(1.002); opacity: 0.24; }
.p3 { transform: translateZ(-6px); opacity: 0.08; }

#homeTextSide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    opacity: 0;
    transform: translateY(18px);
    animation: centerIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
}

#logo3d {
    position: relative;
    width: min(620px, 100%);
    height: 112px;
    transform-style: preserve-3d;
    transition: transform 0.15s linear;
    will-change: transform;
}

.text {
    position: absolute;
    width: 100%;
    left: 0;
    margin-left: 0;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(62px, 9vw, 104px);
    font-weight: 950;
    letter-spacing: -7px;
    line-height: 1;
    text-align: center;
    text-transform: lowercase;
}

.front {
    transform: translateZ(34px);
    opacity: 1;
    text-shadow: 10px 10px 0 rgba(255,255,255,0.035);
}

.back1 { transform: translateZ(18px); color: rgba(255,255,255,0.26); }
.back2 { transform: translateZ(5px); color: rgba(255,255,255,0.10); }

#homeSubText {
    margin-top: 0;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.64);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 6px;
    text-align: center;
    text-transform: uppercase;
}

#demoButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    padding: 17px 46px;
    border-radius: 0;
    background: white;
    color: #020202;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 3px;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid white;
    box-shadow: 8px 8px 0 rgba(255,255,255,0.08);
    transition: 0.18s linear;
}

#demoButton:hover {
    background: #0b0c10;
    color: white;
    transform: translate(-3px, -3px);
    box-shadow: 12px 12px 0 rgba(255,255,255,0.09);
}

/* =========================================================
   PAGES
   ========================================================= */

.pageWrap {
    position: relative;
    z-index: 5;
    min-height: 100vh;
    padding: 140px 20px 70px 20px;
}

.pageFade {
    opacity: 0;
    transform: translateY(14px);
    animation: pageFadeIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.delay1 { animation-delay: 0.10s; }
.delay2 { animation-delay: 0.20s; }
.delay3 { animation-delay: 0.30s; }

@keyframes pageFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.topLogo {
    width: 112px;
    display: block;
    margin: 0 auto 50px auto;
    filter: drop-shadow(8px 8px 0 rgba(255,255,255,0.035));
    animation: pageFadeIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards, hardLogoPulse 6s ease-in-out 1s infinite;
}

@keyframes hardLogoPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.82; }
}

.aboutPage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.aboutCard {
    width: 78%;
    max-width: 920px;
    margin: 0 auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    backdrop-filter: none;
    box-shadow: none;
}

.aboutText {
    color: #fff;
    font-size: clamp(25px, 4vw, 56px);
    font-weight: 950;
    line-height: 1.02;
    text-align: center;
    letter-spacing: -1.5px;
    text-transform: lowercase;
    text-shadow: 10px 10px 0 rgba(255,255,255,0.045);
}

.aboutText p {
    margin: 0;
}

/* =========================================================
   SOCIALS PAGE
   ========================================================= */

.socialsPage {
    max-width: 720px;
    margin: 0 auto;
}

.socialsHeader {
    text-align: center;
    margin: -20px 0 32px 0;
}

.socialsHeader h1 {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(36px, 6vw, 62px);
    font-weight: 950;
    letter-spacing: -2px;
    text-transform: lowercase;
    text-shadow: 8px 8px 0 rgba(255,255,255,0.035);
}

.socialsHeader p {
    margin: 12px 0 0 0;
    color: rgba(255,255,255,0.58);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.socialList {
    display: grid;
    gap: 12px;
}

.socialListItem {
    display: grid;
    grid-template-columns: 58px 1fr 34px;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    color: white;
    min-height: 76px;
    padding: 14px 18px;
    border-radius: 0;
    background: rgba(8,9,13,0.58);
    border: 1px solid rgba(255,255,255,0.20);
    box-shadow: none;
    backdrop-filter: blur(8px);
    transition: 0.18s linear;
}

.socialListItem:nth-child(1) { animation-delay: 0.12s; }
.socialListItem:nth-child(2) { animation-delay: 0.20s; }
.socialListItem:nth-child(3) { animation-delay: 0.28s; }

.socialListItem:hover {
    background: white;
    border-color: white;
    color: black;
    transform: translate(-4px, -4px);
    box-shadow: 10px 10px 0 rgba(255,255,255,0.08);
}

.socialIconBig {
    width: 58px;
    height: 58px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.16);
}

.socialListItem:hover .socialIconBig {
    border-color: black;
    background: #0b0c10;
    color: white;
}

.socialIconBig i {
    font-size: 26px;
}

.socialInfo {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.socialName {
    font-size: 18px;
    font-weight: 950;
    letter-spacing: 2px;
}

.socialDesc {
    color: rgba(255,255,255,0.50);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.socialListItem:hover .socialDesc {
    color: rgba(0,0,0,0.58);
}

.socialArrow {
    color: rgba(255,255,255,0.48);
    transition: 0.18s linear;
}

.socialListItem:hover .socialArrow {
    color: black;
    transform: translate(3px, -3px);
}

/* =========================================================
   SIMPLE / RESULT / DEMO
   ========================================================= */

.centerPage {
    min-height: calc(100vh - 210px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.simpleBox img {
    width: 112px;
    display: block;
    margin: 0 auto 35px auto;
    filter: drop-shadow(8px 8px 0 rgba(255,255,255,0.035));
}

.simpleBox h1 {
    letter-spacing: 4px;
    font-size: 42px;
    margin: 0;
    font-weight: 950;
    text-transform: uppercase;
}

.simpleBox p {
    max-width: 620px;
    color: rgba(255,255,255,0.58);
    line-height: 1.6;
    font-weight: 700;
}

.whiteButton {
    display: inline-block;
    margin-top: 25px;
    color: black;
    background: white;
    padding: 14px 30px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 950;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid white;
    transition: 0.18s linear;
}

.whiteButton:hover {
    color: white;
    background: #0b0c10;
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 rgba(255,255,255,0.08);
}

.demoWrap {
    position: relative;
    z-index: 5;
    width: 90%;
    max-width: 720px;
    margin: 0 auto;
    padding-top: 140px;
    padding-bottom: 70px;
}

.demoWrap .topLogo {
    width: 100px;
    margin-bottom: 42px;
}

.demoWrap h1 {
    text-align: center;
    font-size: clamp(34px, 5vw, 48px);
    letter-spacing: -1px;
    margin: 0 0 35px 0;
    font-weight: 950;
    text-transform: lowercase;
}

.demoWrap label {
    display: block;
    font-size: 13px;
    font-weight: 950;
    margin: 22px 0 9px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.76);
}

input,
textarea {
    width: 100%;
    border-radius: 0;
    border: 1px solid rgba(255,255,255,0.24);
    background: rgba(8,9,13,0.55);
    color: white;
    font-size: 17px;
    font-weight: 800;
    padding: 0 14px;
    outline: none;
    backdrop-filter: blur(8px);
    transition: 0.18s linear;
}

input {
    height: 54px;
}

textarea {
    height: 96px;
    padding-top: 14px;
    resize: none;
}

input:focus,
textarea:focus {
    border-color: white;
    background: rgba(255,255,255,0.045);
}

.dropBox {
    width: 100%;
    height: 118px;
    border: 1px dashed rgba(255,255,255,0.42);
    border-radius: 0;
    margin-top: 10px;
    background: rgba(8,9,13,0.54);
    backdrop-filter: blur(8px);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: rgba(255,255,255,0.62);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.45;
    text-align: center;
    cursor: pointer;
    padding: 0 18px;
    transition: 0.18s linear;
}

.dropBox:hover {
    background: white;
    color: black;
    border-color: white;
}

.hiddenFile {
    display: none;
}

.fileName {
    margin-top: 12px;
    color: rgba(255,255,255,0.56);
    font-size: 13px;
    font-weight: 750;
    line-height: 1.5;
}

.smallInfo {
    color: rgba(255,255,255,0.44);
    font-size: 12px;
    font-weight: 800;
    margin-top: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

button {
    width: 100%;
    height: 58px;
    margin-top: 34px;
    border: 1px solid white;
    border-radius: 0;
    background: white;
    color: #050505;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.18s linear;
}

button:hover {
    background: #0b0c10;
    color: white;
    transform: translate(-3px, -3px);
    box-shadow: 10px 10px 0 rgba(255,255,255,0.08);
}

button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

#errorBox {
    margin-top: 14px;
    color: #ff5454;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: none;
}

#back {
    display: block;
    margin-top: 22px;
    color: rgba(255,255,255,0.52);
    text-decoration: none;
    text-align: center;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#back:hover {
    color: white;
}

.resultBox {
    position: relative;
    z-index: 5;
    min-height: 100vh;
    padding: 140px 20px 70px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.resultInner {
    width: 90%;
    max-width: 520px;
    border: 1px solid rgba(255,255,255,0.22);
    padding: 34px;
    background: rgba(8,9,13,0.58);
}

.resultInner h1 {
    margin-top: 0;
    font-size: 42px;
    font-weight: 950;
    letter-spacing: -1px;
    text-transform: lowercase;
}

.resultInner p {
    color: rgba(255,255,255,0.68);
    line-height: 1.6;
    font-weight: 750;
}

/* =========================================================
   BOTTOM LEFT DISCORD NOTE
   ========================================================= */

#discordNote {
    position: fixed;
    left: 28px;
    bottom: 24px;
    z-index: 35;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: calc(100vw - 56px);
    padding: 10px 12px;
    border-radius: 0;
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    background: rgba(8,9,13,0.68);
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: none;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(12px);
    animation: noteIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards, notePulse 5.5s ease-in-out 1.4s infinite;
    transition: 0.18s linear;
}

#discordNote:hover {
    color: black;
    background: white;
    border-color: white;
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 rgba(255,255,255,0.08);
}

#discordNote i {
    font-size: 16px;
}

@keyframes noteIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes notePulse {
    0%, 100% { opacity: 0.70; }
    50% { opacity: 1; }
}

/* =========================================================
   VISIT COUNTER
   ========================================================= */

#visitCounter {
    position: fixed;
    right: 18px;
    bottom: 16px;
    z-index: 35;
    color: rgba(255,255,255,0.66);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 2px;
    text-transform: uppercase;
    pointer-events: none;
    opacity: 0;
    animation: visitCounterIn 0.65s ease forwards;
}

@keyframes visitCounterIn {
    to { opacity: 1; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {
    #topNav {
        width: calc(100% - 28px);
        height: 72px;
        top: 14px;
        padding: 0 12px;
    }

    #brandLogoLink {
        width: 48px;
        height: 48px;
    }

    #navLogo {
        width: 42px;
        height: 42px;
    }

    #navIcons {
        left: 50%;
        gap: 6px;
    }

    .navIcon {
        width: 36px;
        height: 36px;
    }

    #socialsTop {
        display: none;
    }

    #homeHero {
        width: calc(100% - 34px);
        min-height: 100vh;
        padding: 118px 0 48px 0;
        gap: 12px;
        text-align: center;
    }

    #pic3d {
        width: min(245px, 74vw);
        height: min(245px, 74vw);
    }

    .picLayer {
        width: min(245px, 74vw);
    }

    #homeTextSide {
        align-items: center;
    }

    #logo3d {
        height: 70px;
    }

    .text {
        font-size: 52px;
        letter-spacing: -3px;
        text-align: center;
        margin-left: 0;
    }

    #homeSubText {
        font-size: 10px;
        letter-spacing: 4px;
        margin-bottom: 24px;
    }

    #demoButton {
        padding: 15px 34px;
        font-size: 11px;
    }

    button {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .aboutCard {
        width: 92%;
    }

    .demoWrap h1 {
        font-size: 34px;
    }

    .dropBox {
        font-size: 12px;
    }

    #discordNote {
        left: 14px;
        bottom: 14px;
        font-size: 9px;
        padding: 9px 10px;
        max-width: 62vw;
    }

    #visitCounter {
        right: 12px;
        bottom: 10px;
        font-size: 9px;
        letter-spacing: 1.4px;
    }

    .socialListItem {
        grid-template-columns: 48px 1fr 24px;
        padding: 12px;
    }

    .socialIconBig {
        width: 48px;
        height: 48px;
    }

    .socialName {
        font-size: 15px;
    }
}
