* {
    cursor: none !important;
    box-sizing: border-box;
}

:root {
    --orange: #ff6600;
    --pink: #ff00ff;
    --violet: #7a00ff;
    --green: #00ff66;
    --red: #ff0033;
    --gray-card: rgba(30, 30, 30, 0.9);
}

body {
    margin: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Courier New', monospace;
    background: linear-gradient(45deg, var(--orange), var(--pink), var(--violet), var(--green));
    background-size: 300% 300%;
    animation: slowGradient 20s ease infinite;
    padding: clamp(20px, 3vh, 60px) clamp(10px, 3vw, 40px) clamp(100px, 10vh, 140px);
    overflow: hidden;
}

main {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card {
    width: 100%;
    max-width: 800px; 
    height: 100%;
    padding: clamp(20px, 5vh, 60px);
    background: var(--gray-card);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 20px 20px 0px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    align-items: center;
    position: relative;
    animation: subtleJitter 10s infinite;
}

.card::before {
    content: " ";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%), 
                linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
    z-index: 2;
}

.card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 3;
}

h1 {
    font-size: clamp(3rem, 7vw, 7rem);
    margin: 0.15em 0;
    background: linear-gradient(to right, var(--orange), var(--green), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    animation: colorFlow 5s linear infinite;
    letter-spacing: -2px;
    text-align: center;
    line-height: 0.85;
}

.links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(10px, 2vh, 20px);
    width: 100%;
    max-width: 600px;
}

.link {
    padding: clamp(15px, 2.5vh, 30px);
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    border: 1px solid rgba(255,255,255,0.2);
    transition: 0.2s ease-in-out;
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: clamp(0.9rem, 1.5vw, 1.8rem);
}

.link:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}

.sc:hover { box-shadow: 0 0 20px var(--orange); }
.bc:hover { box-shadow: 0 0 20px var(--pink); }
.yt:hover { box-shadow: 0 0 20px var(--red); }
.gm:hover { box-shadow: 0 0 20px var(--green); }

.tag-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    z-index: 3;
}

.tag {
    font-size: clamp(0.9rem, 1.4vw, 1.8rem);
    color: var(--green);
    letter-spacing: 2px;
    font-weight: bold;
    text-align: center;
}

#status-line {
    transition: opacity 0.5s ease, color 0.5s ease;
    text-shadow: 0 0 5px currentColor;
}

#current-date { 
    opacity: 0.7; 
    font-size: clamp(0.7rem, 1.1vw, 1.4rem); 
}

.footer-text {
    font-size: clamp(10px, 1.2vw, 18px);
    color: #666;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    z-index: 3;
    padding-top: 15px;
    letter-spacing: 1px;
}

.cursor-wrapper div {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 100000;
    border-radius: 50%;
}

#cursor-main {
    width: 10px; height: 10px;
    background: var(--green);
    box-shadow: 0 0 15px var(--green);
}

.cursor-dot { width: 6px; height: 6px; background: var(--pink); opacity: 0.6; }

body.link-hover #cursor-main {
    background: white;
    transform: scale(1.5);
    box-shadow: 0 0 20px var(--pink);
}

.floating-object {
    position: fixed;
    top: 0;
    left: 0;
    font-size: var(--size, 50px);
    z-index: 9999;
    pointer-events: none;
    will-change: transform;
    text-shadow: 0 0 10px var(--green);
    transform: translate3d(50vw, 50vh, 0);
    transition: filter 0.3s ease;
    pointer-events: auto;
}

.sound-btn {
    position: fixed;
    top: 20px; right: 20px;
    background: var(--gray-card);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 10px;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.secret-overlay {
    position: fixed; inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex; justify-content: center; align-items: center;
    z-index: 100000; opacity: 0; pointer-events: none;
    transition: opacity 0.2s ease;
}

.secret-overlay.active { opacity: 1; pointer-events: all; }
.secret-overlay img {
    max-width: 85%; max-height: 85%;
    transform: scale(1);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.secret-overlay.active img { transform: scale(3); }

@keyframes slowGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes colorFlow { 100% { filter: hue-rotate(360deg); } }

@keyframes subtleJitter {
    0%, 100% { transform: translate(0, 0); }
    95% { transform: translate(1px, 1px); }
}

@media (max-width: 480px) {
    .card { max-width: 100%; padding: 20px; }
    .links { grid-template-columns: 1fr; }
}

@media (pointer: fine) {
    * { cursor: none !important; }
}