:root {
    --bg-dark: #0b0e12;
    --bg-glow: #1a1f25;
    --accent: #b0e2ff;
    --glass: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.2);
    --text-primary: #f0f4f7;
    --text-secondary: #b0bac2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", "SF Pro Display", system-ui, sans-serif;
}

body {
    background: radial-gradient(circle at 30% 40%, #182028, var(--bg-dark));
    color: var(--text-primary);
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

a {
    color: var(--accent); 
    text-decoration: none; 
    font-weight: 500;
    gap: 7px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background light orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    mix-blend-mode: lighten;
    animation: drift 20s infinite alternate ease-in-out;
}

.orb:nth-child(1) {
    width: 300px;
    height: 300px;
    background: #80d0ff;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.orb:nth-child(2) {
    width: 400px;
    height: 400px;
    background: #ffe580;
    bottom: 10%;
    right: 15%;
    animation-delay: 4s;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, -60px) scale(1.2); }
}

.container {
    position: relative;
    z-index: 10;
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 60px 80px;
    text-align: center;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.logo {
    width: 140px;
    height: 140px;
    background: url("sheep.png") no-repeat center/contain;
    filter: drop-shadow(0 0 25px rgba(255,255,255,0.25));
    margin: 0 auto 25px;
    transition: transform 0.8s ease;
}

.container:hover .logo {
    transform: rotate(-10deg) scale(1.05);
    filter: drop-shadow(0 0 40px rgba(176, 226, 255, 0.6));
}

h1 {
    font-size: 2.2rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
    background: linear-gradient(to right, #b0e2ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.line {
    height: 1px;
    width: 60%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: 20px auto;
}

footer {
    position: absolute;
    bottom: 20px;
    text-align: center;
    width: 100%;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

/* Subtle sparkle animation overlay */
.sparkle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.spark {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: sparkle 3s linear infinite;
}

@keyframes sparkle {
    0% { transform: translateY(100vh) scale(0.8); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(-10vh) scale(1.2); opacity: 0; }
}