html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Unbounded', sans-serif;
    background-color: black;
}

#reveal-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.6s ease;
}

#reveal-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

#reveal-screen.fade-out {
    opacity: 0;
}

#reveal-screen.fade-out #reveal-text {
    opacity: 0;
}

.center-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgb(25, 25, 25);
    border-radius: 10px;
    border: 2px solid #ffffff;
    padding: 40px 40px;
    color: white;
    text-align: center;
}

.crown-container {
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.crown {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0);
    color: rgb(255, 255, 255);
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.crown-container:hover .crown {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

h1 {
    margin: 0 0 10px;
    font-size: 100%;
}

h2 {
    font-size: 12px;
}

p {
    font-size: 12px;
}

.links-container {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.link-box {
    display: flex;
    align-items: center;
    background-color: #2c2c2c;
    border-radius: 8px;
    padding: 8px 12px;
    text-decoration: none;
    color: white;
    transition: background-color 0.3s ease;
    width: 90px;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
}

.link-box img {
    width: 30px;
    height: auto;
    border-radius: 10px;
}

.link-box:hover {
    background-color: #444;
}

.pin-container {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.pin {
    font-size: 12px;
}