:root {
    --background-color: #0a0a0a;
    --text-color: #ffffff;
    --logo-size: min(30dvw, 30dvh);
    --hex-size: 15px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'Courier New', monospace;
    min-height: 100dvh;
    overflow: hidden;
}

.container {
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    position: relative;
}

.container::before {
    display: none;
}

header {
    text-align: center;
    font-size: 1rem;
    opacity: 0.6;
    padding-top: 1rem;
}

.description {
    font-size: 1rem;
    opacity: 1;
}

.logo-container {
    width: var(--logo-size);
    height: var(--logo-size);
    position: relative;
    mask: url(assets/viiixi.svg) center/contain no-repeat;
    -webkit-mask: url(assets/viiixi.svg) center/contain no-repeat;
}

.diamond-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hex-container {
    width: 140%;
    height: 140%;
    display: grid;
    grid-template-columns: repeat(auto-fill, calc(var(--hex-size) * 0.8));
    transform: rotate(30deg) scale(2.5);
    transform-origin: center;
    position: relative;
    left: -20%;
    top: -20%;
}

.hexagon {
    width: var(--hex-size);
    height: calc(var(--hex-size) * 0.866);
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    margin: calc(var(--hex-size) * -0.1);
}

.hexagon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.8)
    );
    mix-blend-mode: screen;
}

.logo-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
}

footer {
    font-size: 1rem;
    opacity: 0.6;
    padding-bottom: 1rem;
} 