@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Outfit:wght@300;400;500;700&display=swap');

:root {
    --bg-color: #0b0d11;
    --color-p: #7b68ee;
    --color-o: #e78970;
    --text-color: #ffffff;
    --text-muted: #a1aab3;
}

body {
    font-family: "Outfit", sans-serif;
    margin: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-color);
    /* Animated glowing gradients behind */
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(123, 104, 238, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(231, 137, 112, 0.12) 0%, transparent 40%);
    background-size: 200% 200%;
    color: var(--text-color);
    animation: bgMovement 20s ease-in-out infinite alternate;
}

@keyframes bgMovement {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

.hero {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: 4rem 5rem;
    
    /* Entry animation */
    animation: fadeAndScaleIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: scale(0.95) translateY(20px);
}

.hero .logo-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    animation: float 6s ease-in-out infinite;
    will-change: transform;
}

.hero .logo-group .logo {
    width: 500px;
    max-width: 80vw;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.4));
    user-select: none;
}

.hero .logo-group .author {
    font-family: 'Comfortaa', sans-serif;
    margin: 0;
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.6;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

.hero .content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero .content p {
    margin: 0;
    line-height: 1.5;
}

.hero .content p:nth-child(1) {
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--text-color);
    /* Subtle metallic gradient on text */
    background: linear-gradient(135deg, #ffffff 0%, #b3b3b3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.hero .content p:nth-child(2) {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* Animations */
@keyframes float {
    0%   { transform: translate3d(0, 0px, 0); }
    50%  { transform: translate3d(0, -12px, 0); }
    100% { transform: translate3d(0, 0px, 0); }
}

@keyframes fadeAndScaleIn {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(30px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes borderCycle {
    0% { border-color: var(--color-p); }
    100% { border-color: var(--color-o); }
}

@keyframes iconCycle {
    0% { color: var(--color-p); }
    100% { color: var(--color-o); }
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    margin-top: 1.5rem;
    animation: fadeAndScaleIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(10px);
}

.social-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: grid;
    grid-template-columns: 18px 1fr;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    
    /* Beautiful Glassmorphism Box Layer */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-p);
    animation: borderCycle 20s ease-in-out infinite alternate;
    outline: none;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-links a span {
    text-align: center;
}

.social-links a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.15);
}

.social-links a iconify-icon {
    font-size: 18px;
    color: var(--color-p);
    animation: iconCycle 20s ease-in-out infinite alternate;
    transition: transform 0.3s ease;
}

.social-links a:hover iconify-icon {
    transform: scale(1.1);
}