/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    background-color: #D94F70;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1rem;
}

/* Logo */
.logo {
    font-family: 'Pacifico', cursive;
    font-size: clamp(3rem, 12vw, 6.5rem);
    color: #000000;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: none;
    max-width: 90vw;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid #000000;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: #000000;
}

.social-btn svg {
    width: 24px;
    height: 24px;
    fill: #000000;
    transition: fill 0.3s ease;
}

.social-btn:hover svg {
    fill: #D94F70;
}

.social-label {
    font-family: monospace;
    font-size: 10px;
    color: #000000;
    text-align: center;
    letter-spacing: 0.05em;
}

/* Social Proof Badge */
.social-proof {
    position: fixed;
    bottom: 24px;
    right: 24px;
    font-family: monospace;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0;
    animation: fadeIn 0.4s ease-out 0.5s forwards;
    cursor: pointer;
}

.social-proof:hover {
    color: rgba(0, 0, 0, 0.8);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .social-proof {
        bottom: 16px;
        right: 16px;
        font-size: 11px;
    }
}
