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

html, body {
    min-height: 100%;
    background: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

/* ── Center ── */
.center {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 80px 0 100px;
}

/* ── Drop notice ── */
.drop {
    display: flex;
    align-items: center;
    gap: 24px;
    width: min(320px, 78vw);
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
    color: #fff;
    transition: background 0.2s, border-color 0.2s;
}

.drop:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.3);
}

.drop-cover {
    width: 80px;
    height: 80px;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

.drop-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.drop-tag {
    font-size: 0.48rem;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.32);
    text-transform: uppercase;
}

.drop-title {
    font-size: 1.1rem;
    font-weight: 200;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.drop-sub {
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.32);
    text-transform: uppercase;
}

/* ── Link list ── */
.link-list {
    display: flex;
    flex-direction: column;
    width: min(320px, 78vw);
}

.link-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border: 1px solid rgba(255,255,255,0.1);
    margin-top: -1px;
    text-decoration: none;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: background 0.2s, border-color 0.2s;
    position: relative;
    z-index: 0;
}

.link-item:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.3);
    z-index: 1;
}

.icon {
    width: 15px;
    height: 15px;
    color: rgba(255,255,255,0.32);
    flex-shrink: 0;
    transition: color 0.2s;
}

.link-item:hover .icon {
    color: #fff;
}

/* ── Easter egg watermark ── */
.watermark {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    opacity: 0.18;
    transition: opacity 0.2s;
    z-index: 10;
}

.watermark:hover {
    opacity: 0.45;
}

.watermark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Easter egg popup ── */
.egg-popup {
    position: fixed;
    bottom: 70px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: 1px solid rgba(255,255,255,0.15);
    padding: 12px 16px;
    background: #000;
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.25s, transform 0.25s;
    z-index: 10;
}

.egg-popup.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.egg-label {
    font-size: 0.45rem;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
}

.egg-date {
    font-size: 0.75rem;
    font-weight: 200;
    letter-spacing: 0.12em;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .drop-cover {
        width: 64px;
        height: 64px;
    }
}
