* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* =========================
   DISCORD BUTTON
   ========================= */

button {
    background: transparent;
    position: relative;
    padding: 5px 15px;

    display: flex;
    align-items: center;

    font-size: 17px;
    font-weight: 600;

    text-decoration: none;
    cursor: pointer;

    border: 1px solid rgba(88, 101, 242, 1);
    border-radius: 25px;

    outline: none;
    overflow: hidden;

    color: rgba(88, 101, 242, 1);

    transition: color 0.3s 0.1s ease-out;
    text-align: center;
}

button span {
    margin: 10px;
}

button::before {
    position: absolute;

    top: 0;
    left: -5em;
    right: 0;
    bottom: 0;

    margin: auto;

    content: "";

    border-radius: 50%;

    display: block;

    width: 20em;
    height: 20em;

    text-align: center;

    transition: box-shadow 0.5s ease-out;

    z-index: -1;
}

button:hover {
    color: #fff;
    border-color: rgba(88, 101, 242, 1);
}

button:hover::before {
    box-shadow: inset 0 0 0 10em rgba(88, 101, 242, 1);
}


/* =========================
   HTML
   ========================= */

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
}


/* =========================
   BODY
   ========================= */

body {
    background: #090909;
    color: #fff;

    min-height: 100vh;

    overflow-x: hidden;
    overflow-y: auto;

    scrollbar-width: none;
    -ms-overflow-style: none;

    padding: 0 20px 60px;
}

body::-webkit-scrollbar {
    display: none;
}


/* =========================
   MAIN CONTAINER
   ========================= */

.container {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 24px;
}


/* =========================
   TITLE ROW
   ========================= */

.title-row {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    margin-top: 55px;

    position: relative;
}


/* =========================
   TYPING TITLE
   ========================= */

.typing-container {
    margin-top: 0;

    display: flex;
    justify-content: center;
}

.typing-text {
    font-family: monospace;

    font-size: clamp(28px, 5vw, 46px);

    font-weight: bold;

    white-space: nowrap;
    overflow: hidden;


    width: 15;

}


/* =========================
   POSER IMAGE
   ========================= */

.poser-image { 
   user-select: none;
  -drag: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  display: block; 
  width: 150px; 
  height: auto; 
  object-fit: contain; 
  position: relative; 
  z-index: 2; 
  margin: 0; 
  pointer-events: none; 
  transform: translateY(5px); 
  /* Vytvoří ostrý bílý obrys okolo průhledné siluety */
  filter: drop-shadow(1px 0px 0px white) 
          drop-shadow(-1px 0px 0px white) 
          drop-shadow(0px 1px 0px white) 
          drop-shadow(0px -1px 0px white);
}



/* =========================
   SUBTITLE
   ========================= */

.subtitle {
    color: #8f969f;

    font-size: 16px;

    text-align: center;

    margin-top: -8px;
}


/* =========================
   STATISTICS PANEL
   ========================= */

.stats {
    width: 100%;

    min-height: 110px;

    margin: 0 auto 35px;

    display: flex;

    align-items: center;

    padding: 18px 28px;

    background:
        linear-gradient(
            100deg,
            rgba(4, 9, 14, 0.96),
            rgba(4, 8, 11, 0.94),
            rgba(6, 12, 15, 0.96)
        );

    border: 1px solid rgba(255, 255, 255, 0.09);

    border-radius: 22px;

    box-shadow:
        0 0 30px rgba(105, 75, 190, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    position: relative;
    z-index: 1;
}


/* =========================
   INDIVIDUAL STAT
   ========================= */

.stat {
   user-select: none;
  -drag: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
    flex: 1;

    min-width: 0;

    padding: 5px 24px;
}


/* =========================
   STAT TOP
   ========================= */

.stat-top {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 7px;
}

.stat-top span {
    color: rgba(180, 178, 201, 0.62);

    font-family: Arial, sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

    white-space: nowrap;
}


/* =========================
   STAT ICON
   ========================= */

.stat-icon {
    width: 23px;
    height: 23px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: rgba(176, 150, 255, 0.85);

    background: rgba(112, 80, 190, 0.13);

    border: 1px solid rgba(145, 115, 220, 0.2);

    border-radius: 7px;

    font-size: 12px;

    box-shadow:
        0 0 12px rgba(120, 80, 220, 0.08);
}


/* =========================
   STAT VALUE
   ========================= */

.stat-value {
    color: #f4f2ff;

    font-family: Arial, sans-serif;

    font-size: 25px;

    font-weight: 800;

    letter-spacing: -0.5px;

    text-shadow:
        0 0 18px rgba(160, 140, 255, 0.15);
}


/* =========================
   PURPLE LINE
   ========================= */

.stat-value::after {
    content: "";

    display: block;

    width: 35px;
    height: 2px;

    margin-top: 8px;

    background: rgba(6, 147, 230, 0.55);

    border-radius: 10px;

    box-shadow:
        0 0 10px rgba(10, 180, 237, 0.3);
}


/* =========================
   STAT DIVIDERS
   ========================= */

.stat-divider {
    width: 1px;

    height: 55px;

    flex-shrink: 0;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(255, 255, 255, 0.11),
            transparent
        );
}


/* =========================
   FAQ SECTION
   ========================= */

.section {
    width: 100%;
}

.section-title {
    width: 100%;

    color: #fff;

    font-size: 20px;

    margin: 15px 0;

    padding: 0 4px;
}


/* =========================
   ACCORDION
   ========================= */

.accordion-box {
    width: 100%;

    background: #0c0d0e;

    border: 1px solid #1a1c1e;

    border-radius: 10px;

    margin-bottom: 12px;

    overflow: hidden;

    transition:
        border-color 0.25s ease,
        background 0.25s ease;
}

.accordion-box:hover {
    border-color: #292d31;

    background: #0e0f10;
}


/* =========================
   ACCORDION HEADER
   ========================= */

.accordion-header {
    width: 100%;

    padding: 20px;

    color: #fff;

    font-size: 15px;

    font-weight: bold;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: space-between;

    list-style: none;

    user-select: none;
}

.accordion-header::-webkit-details-marker {
    display: none;
}


/* =========================
   ACCORDION ARROW
   ========================= */

.accordion-arrow {
    width: 9px;
    height: 9px;

    flex-shrink: 0;

    border: solid #032e3a;

    border-width: 0 2px 2px 0;

    transform: rotate(45deg);

    transition: transform 0.25s ease;
}

details[open] .accordion-arrow {
    transform: rotate(-135deg);
}


/* =========================
   ACCORDION CONTENT
   ========================= */

.accordion-content {
    padding: 0 20px 20px;

    color: #9da3aa;

    font-size: 14px;

    line-height: 1.7;

    animation: accordion-open 0.2s ease;
}

.accordion-content p {
    margin-bottom: 12px;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}


/* =========================
   MAIN IMAGE
   ========================= */

.imager {
   user-select: none;
  -drag: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
    display: block;

    width: min(500px, 100%);

    height: auto;

    margin: 10px auto 20px;

    border-radius: 12px;

    object-fit: contain;
}


/* =========================
   STATUS SECTION
   ========================= */

.status-section {
    display: flex;

    flex-direction: row;

    align-items: center;

    justify-content: center;

    gap: 15px;

    width: 100%;

    margin-top: 15px;
}

.status-section .section-title {
    text-align: left;

    width: auto;

    margin: 0;
}


/* =========================
   STATUS BOX
   ========================= */

.status-box {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    width: 170px;

    padding: 13px 20px;

    background: #0c0d0e;

    border: 1px solid #1a1c1e;

    border-radius: 10px;

    color: #fff;

    font-size: 14px;

    font-weight: bold;
}


/* =========================
   ONLINE STATUS DOT
   ========================= */

.status-dot {
    width: 9px;
    height: 9px;

    background: #35d06f;

    border-radius: 50%;

    box-shadow:
        0 0 8px rgba(53, 208, 111, 0.7);

    animation: status-pulse 1.8s infinite;
}


/* =========================
   OFFLINE STATUS DOT
   ========================= */

.offlinestatus-dot {
    width: 9px;
    height: 9px;

    background: #ff4d4d;

    border-radius: 50%;

    box-shadow:
        0 0 8px rgba(255, 77, 77, 0.7);

    animation: status-pulse 1.8s infinite;
}


/* =========================
   TYPING ANIMATION
   ========================= */

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 20ch;
    }
}


/* =========================
   CARET ANIMATION
   ========================= */

@keyframes blink-caret {
    0%,
    100% {
        border-color: transparent;
    }

    50% {
        border-color: #fff;
    }
}


/* =========================
   ACCORDION ANIMATION
   ========================= */

@keyframes accordion-open {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================
   STATUS ANIMATION
   ========================= */

@keyframes status-pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.55;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 650px) {

    body {
        padding: 0 12px 40px;
    }


    /* Title */

    .title-row {
        gap: 8px;
        margin-top: 35px;
    }

    .typing-text {
        font-size: 28px;
    }

    .subtitle {
        font-size: 14px;
    }


    /* Poser */

    .poser-image {
        width: 90px;

        transform: translateY(3px);
    }


    /* Statistics */

    .stats {
        min-height: auto;

        padding: 18px 10px;

        border-radius: 18px;
    }

    .stat {
        padding: 5px 8px;
    }

    .stat-top {
        gap: 6px;
    }

    .stat-top span {
        font-size: 7px;

        letter-spacing: 0.8px;
    }

    .stat-icon {
        width: 20px;
        height: 20px;

        font-size: 10px;
    }

    .stat-value {
        font-size: 19px;
    }

    .stat-value::after {
        width: 25px;
    }

    .stat-divider {
        height: 45px;
    }


    /* FAQ */

    .accordion-header {
        padding: 17px;

        font-size: 14px;
    }

    .accordion-content {
        padding: 0 17px 17px;

        font-size: 13px;
    }

    .section-title {
        font-size: 18px;
    }


    /* Main image */

    .imager {
        width: 100%;

        max-width: 500px;
    }
}


/* =========================
   SMALL PHONES
   ========================= */

@media (max-width: 430px) {

    .title-row {
        gap: 5px;
    }

    .typing-text {
        font-size: 23px;
    }

    .poser-image {
        width: 70px;
    }


    .stats {
        padding: 15px 5px;
    }

    .stat {
        padding: 5px;
    }

    .stat-top span {
        font-size: 6px;

        letter-spacing: 0.5px;
    }

    .stat-icon {
        width: 18px;
        height: 18px;

        font-size: 9px;
    }

    .stat-value {
        font-size: 17px;
    }

    .stat-divider {
        height: 40px;
    }
}