/* Enhanced .love-form */
.love-form {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-sizing: border-box;
    position: relative;
}

.love-form:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
}

/* Form Group */
.form-group {
    margin-bottom: 20px;
}

/* Label */
label {
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
    color: #4CAF50;
}

/* Input */
input {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    border: none;
    border-bottom: 2px solid #4CAF50;
    border-radius: 5px;
    background-color: #f8f8f8;
    transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

input:focus {
    border-color: #e91e63;
    background-color: #fff;
}

/* Button */
button {
    background-color: #e91e63;
    color: white;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

button:hover {
    background-color: #c2185b;
    transform: translateY(-5px);
}

/* Row */
.row {
    margin-bottom: 20px;
}

/* Headings */
h1, h2 {
    margin-top: 20px;
    color: #e91e63;
}

/* Heart */
.heart {
    color: red;
    font-size: 48px;
    margin-right: 5px;
}

/* Back Button */
.back-button {
    display: inline-block;
    margin: 20px auto;
    background-color: #e91e63;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.3s;
    text-align: center;
}

.back-button:hover {
    background-color: #c2185b;
    transform: translateY(-5px);
}

.back-button,
.back-button:hover,
.back-button:active,
.back-button:focus {
    background-color: #e91e63 !important;
    color: #fff !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Social Links */
.social-links {
    margin-top: 20px;
    text-align: center;
}

.social-link {
    display: inline-block;
    margin: 0 10px;
    padding: 8px 16px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.3s;
}

.social-link:hover {
    background-color: #2980b9;
    transform: scale(1.1);
}

/* Result */
#result {
    margin-top: 20px;
    text-align: center;
}

.big-heart {
    position: relative;
    margin-top: 20px;
}

.big-heart .heart {
    font-size: 72px;
    color: red;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Love Score */
.love-score {
    font-size: 24px;
    color: #333;
}

/* Container */
.container {
    text-align: center;
}

/* Pro Feature */
.pro-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: gold;
    color: #fff;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}
