body {
    margin: 0;
    padding: 0;
    font-family: 'Comic Sans MS', 'Chalkboard SE', sans-serif; /* Meme font */
    background-color: #fce4ec; /* Light pink background */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #333;
}

.container {
    width: 90%;
    max-width: 500px;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.2);
    text-align: center;
    border: 3px solid #ff80ab;
}

.mascot {
    max-width: 150px;
    border-radius: 10px;
    margin-bottom: 1rem;
}

h1 {
    color: #d81b60;
    margin-bottom: 0.5rem;
}

p {
    color: #ec407a;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 1rem;
}

input[type='url'] {
    padding: 12px;
    border: 2px solid #f8bbd0;
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

input[type='url']:focus {
    border-color: #d81b60;
}

button {
    padding: 12px;
    background-color: #ff4081;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.1s, background-color 0.3s;
}

button:hover {
    background-color: #f50057;
}

button:active {
    transform: scale(0.98);
}

.hidden {
    display: none;
}

.short-link-container {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    background: #f8bbd0;
    padding: 10px;
    border-radius: 10px;
    margin-top: 10px;
}

#shortUrl {
    color: #880e4f;
    text-decoration: none;
    font-weight: bold;
    word-break: break-all;
}

#shortUrl:hover {
    text-decoration: underline;
}

#copyBtn {
    padding: 5px 10px;
    font-size: 0.9rem;
    background-color: #d81b60;
}

/* Support Button Styles */
.footer-actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.support-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffb74d; /* Coffee color */
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s, background-color 0.2s;
    border: 2px solid #ffa726;
}

.support-btn:hover {
    background-color: #f57c00;
    transform: translateY(-2px);
}
