body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #2c2c2c;
    font-family: sans-serif;
    cursor: none;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background:
        linear-gradient(rgba(9, 9, 9, 0.5), rgba(128, 128, 128, 0.5)),
        url('/assets/background.png');
    background-size: cover;
    background-position: center;
    pointer-events: none;
    z-index: -10;
}

* {
    cursor: none !important;
}

#custom-cursor {
    position: fixed;
    width: 32px;
    height: 32px;
    pointer-events: none;
    z-index: 2147483647;
    transform: translate(-3px, -5px);
    user-select: none;
    image-rendering: pixelated;
}

#bg-video, #bg-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -10;
  pointer-events: none;
}

#bg-image {
  background: linear-gradient(rgba(9, 9, 9, 0.5), rgba(128, 128, 128, 0.5)), url('/assets/background.png');
  background-size: cover;
  background-position: center;
  display: none;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #fff;
    background-size: cover;
    background-position: center;
}

.title {
    color: rgb(75, 255, 114);
    font-size: 22px;
    text-align: center;
    text-shadow:
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000;
}

.highlight {
    color: #ffffff;
}

.highlight2 {
    color: #818af0;
}

.info {
    color: #86f74e;
    font-weight: bold;
}

button {
    position: relative;
    display: flex;
    align-items: center;
    padding: 12px 18px 12px 12px;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(145deg, #5a67d8, #4c56c8);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    overflow: hidden;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover {
    transform: translateY(-3px);
    box-shadow:
        0 8px 12px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

button:active {
    transform: translateY(1px);
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

button::before {
    content: '';
    position: absolute;
    top: -3px;
    bottom: -3px;
    left: -3px;
    right: -3px;
    background: linear-gradient(145deg, #7785cc, #5a67d8);
    border-radius: inherit;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.2, 0, 0, 1);
    z-index: 0;
}

button:hover::before {
    transform: scaleX(1);
}

button span {
    position: relative;
    z-index: 1;
    color: #fff;
    transition: color 0.15s;
}

button img {
    position: relative;
    z-index: 1;
}

button.random {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

button.random::before {
    content: '';
    position: absolute;
    top: -3px;
    bottom: -3px;
    left: -3px;
    right: -3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.2, 0, 0, 1);
    z-index: 0;
}

button.random:hover {
    transform: translateY(-3px);
    box-shadow:
        0 8px 12px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    color: #2c2c2c;
}

button.random:hover::before {
    transform: scaleX(1);
}

button.random:active {
    transform: translateY(1px);
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

button.random span,
button.random img {
    position: relative;
    z-index: 1;
    transition: color 0.2s ease;
}

input[type="text"] {
    width: 250px;
    padding: 10px 15px;
    font-size: 18px;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #fff;
    border-radius: 20px;
    outline: none;
    backdrop-filter: blur(6px);
    transition:
        background 0.4s ease,
        box-shadow 0.3s ease,
        transform 0.2s ease;
}

input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

input[type="text"]:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow:
        0 8px 12px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

input[type="text"]:focus {
    background: rgba(255, 255, 255, 0.2);
    box-shadow:
        0 0 10px rgba(255, 255, 255, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

select {
    width: 270px;
    padding: 10px 15px;
    font-size: 18px;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #fff;
    border-radius: 20px;
    outline: none;
    backdrop-filter: blur(6px);
    cursor: pointer;
    appearance: none;
    transition:
        background 0.4s ease,
        box-shadow 0.3s ease,
        transform 0.2s ease;
    background-image:
        linear-gradient(45deg, transparent 50%, #fff 50%),
        linear-gradient(135deg, #fff 50%, transparent 50%);
    background-position:
        calc(100% - 20px) calc(1em + 2px),
        calc(100% - 15px) calc(1em + 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

select:hover {
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow:
        0 8px 12px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

select:focus {
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow:
        0 0 10px rgba(255, 255, 255, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

select option {
    background: #2c2c2c;
    color: #fff;
    border: none;
}

:root {
    --link-color: #86f74e;
    --link-hover-color: #50d40f;
}

a {
    color: var(--link-color);
    text-decoration: underline;
    transition: color 0.3s;
}

a:hover {
    color: var(--link-hover-color);
}