/* Olā&moi Custom Styles */
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 50%, #fcd34d 100%);
    color: #1a1a1a;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* From Uiverse.io by LilaRest */
.olaetmoi-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 15px 25px 15px 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 700;
    color: #1a1a1a;
    font-family: system-ui, -apple-system, sans-serif;
    transition: all 300ms ease-in-out;
    text-decoration: none;
    position: relative;
    border: 2px solid rgba(0, 0, 0, 0.1);
    outline: none;
}

.olaetmoi-button:first-child:hover {
    background-color: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.olaetmoi-button:last-child:hover {
    background-color: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.olaetmoi-button svg {
    margin-right: 8px;
    fill: currentColor;
    transition: all 300ms ease-in-out;
    width: 20px;
    height: 20px;
}

.olaetmoi-button .filled {
    position: absolute;
    opacity: 0;
    top: 15px;
    left: 20px;
}

@keyframes beatingHeart {
    0% {
        transform: scale(1);
    }
    15% {
        transform: scale(1.15);
    }
    30% {
        transform: scale(1);
    }
    45% {
        transform: scale(1.15);
    }
    60% {
        transform: scale(1);
    }
}

.olaetmoi-button:hover .empty {
    opacity: 0;
}

.olaetmoi-button:hover .filled {
    opacity: 1;
    animation: beatingHeart 1.2s infinite;
}

.olaetmoi-button:hover svg {
    fill: currentColor;
}