* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {

    --primary-color: #0080ff;

    --secondary-color: #ff5733;

    --text-color: #ffffff;

    --background-color: #000000;

}



body {

    height: 100vh;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    background-color: var(--background-color);

    color: var(--text-color);

    font-family: 'Roboto', sans-serif;

}



#background-video {

    position: fixed;

    top: 0;

    left: 0;

    min-width: 100%;

    min-height: 100%;

    width: auto;

    height: auto;

    object-fit: cover;

    z-index: -1; /* Place video in background */

}



.content-box {

    padding: 25px 40px; /* Padding vertical réduit */

    background-color: rgba(10, 10, 10, 0.5); /* Fond plus sombre et semi-transparent */

    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37); /* Ombre portée plus douce */

    backdrop-filter: blur(12px); /* Flou plus prononcé */

    -webkit-backdrop-filter: blur(12px); /* Pour la compatibilité avec Safari */

    border-radius: 20px;

    border: 1px solid rgba(255, 255, 255, 0.18); /* Bordure subtile */

    text-align: center;

    max-width: 80%;

    position: relative;

    z-index: 1;

    transition: all 0.3s ease;

}



.content-box:hover {

    background-color: rgba(10, 10, 10, 0.6); /* Léger changement au survol */

}



#age-question {

    font-size: 2.5rem;

    font-weight: bold;

    margin-bottom: 1rem; /* Marge inférieure réduite */

    text-transform: uppercase;

}

#input-area {
    display: flex;
    align-items: center;
    background-color: rgba(30, 30, 30, 0.6);
    border-radius: 50px; /* Forme de pilule */
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 4px;
    margin-top: 15px; /* Marge supérieure réduite */
    transition: all 0.3s ease;
    width: 90%;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

#prank-input {
    flex-grow: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 12px 22px;
    font-size: 1rem;
    color: var(--text-color);
    min-width: 0; /* Empêche le dépassement dans le conteneur */
}

#prank-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

#prank-button {
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    padding: 12px 28px;
    margin: 0;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
}

#prank-button:hover {
    background-color: #0058a0;
}

#prank-button i {
    margin-right: 8px;
}

#copied-text {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 8px 8px 8px 24px;
    border: 1px solid rgba(0, 128, 255, 0.4);
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    margin: 20px 0 15px;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.7), rgba(10, 10, 10, 0.7));
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    color: #fff;
    text-align: left;
    box-sizing: border-box;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

#copied-text:hover {
    border-color: rgba(0, 128, 255, 0.6);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

#second-text {
    /* Styles pour #second-text si nécessaire */
    display: none;
}

#prank-url {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 8px;
}

#inline-copy-button {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    padding: 10px 12px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

#inline-copy-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

#guilded-link {
    font-size: 12px; /* Adjust font size to your preferences */
    color: #888; /* Text color */
    cursor: pointer; /* Change cursor on hover */
    margin-top: 15px; /* Add space above link */
}



#privacy-policy-button {

    position: fixed;

    bottom: 60px;

    left: 50%;

    transform: translateX(-50%);

    padding: 6px 12px;

    background-color: transparent;

    color: #fff;

    border: 1px solid rgba(255, 255, 255, 0.8);

    border-radius: 5px;

    font-size: 12px;

    cursor: pointer;

    transition: background-color 0.3s, color 0.3s, border-color 0.3s;

    text-decoration: none;

    z-index: 1001;

}



#privacy-policy-button:hover {

    background-color: rgba(255, 255, 255, 0.2);

    border-color: rgba(255, 255, 255, 0.2);

}



#shadowBox {

    background-color: rgb(0, 0, 0);

    background-color: rgba(0, 0, 0, 0.2);

    border: 3px solid;

}



.rainbow {

    text-align: center;

    font-size: 18px;

    font-family: Calibri;

    letter-spacing: 3px;

    animation: colorRotate 6s linear 0s infinite;

    font-weight: bold;

    text-transform: uppercase;

}



@keyframes colorRotate {

    from {

        color: #6666ff;

    }

    10% {

        color: #0099ff;

    }

    50% {

        color: #00ff00;

    }

    75% {

        color: #ff3399;

    }

    100% {

        color: #6666ff;

    }

}



#st-banner {

    margin-top: 20px;

    margin-left: auto;

    margin-right: auto;

    max-width: 600px;

    width: 90%;

    height: auto;

    display: block;

    border-radius: 10px;

    cursor: pointer;

    transition: transform 0.2s ease, opacity 0.2s ease;

}



#st-banner:hover {

    transform: scale(1.02);

    opacity: 0.9;

}




/*

#st-button {

    padding: 15px 30px;

    background: #1a1a1a;

    color: #ffffff;

    border: 2px solid #ffffff;

    border-radius: 50px;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

    transition: all 0.2s ease;

    margin-top: 20px;

}



#st-button:hover {

    background: #ffffff;

    color: #1a1a1a;

}



#st-button i {

    margin-right: 8px;

}

*/



#gift-button {

    padding: 15px 30px;

    background: linear-gradient(45deg, #2ecc71, #27ae60);

    color: #fff;

    border: none;

    border-radius: 50px;

    font-size: 20px;

    font-weight: bold;

    cursor: pointer;

    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);

    position: relative;

    overflow: hidden;

    transition: all 0.3s ease;

    margin-top: 20px; /* Add top margin by default */

}



#gift-button:after {

    content: '';

    position: absolute;

    top: -50%;

    left: -50%;

    width: 200%;

    height: 200%;

    background: rgba(255, 255, 255, 0.2);

    transform: rotate(45deg);

    transition: all 0.3s ease;

}



#gift-button:hover {

    transform: translateY(-3px);

    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.6);

}



#gift-button:hover:after {

    left: 100%;

}



.duck-image {

    width: 100px; /* Adjust size as needed */

    height: auto;

    margin-bottom: 20px; /* Space between image and text */

}



.language-selector {

    position: fixed !important;

    top: 15px !important;

    right: 15px !important;

    display: flex;

    align-items: center;

    gap: 4px;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(10px);

    -webkit-backdrop-filter: blur(10px);

    padding: 6px 10px;

    border-radius: 20px;

    border: 1px solid rgba(255, 255, 255, 0.15);

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

    transition: all 0.3s ease;

}



.language-flag {

    width: 24px;

    height: 24px;

    border-radius: 50%;

    cursor: pointer;

    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    border: 1px solid transparent;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

    position: relative;

    overflow: hidden;

    box-sizing: border-box;

}



.language-flag::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);

    transform: translateX(-100%);

    transition: transform 0.6s ease;

}



.language-flag:hover {

    transform: scale(1.05) rotate(2deg) !important;

}



.language-flag:hover::before {

    transform: translateX(100%);

}



.language-flag:active {

    transform: scale(1.02);

}



.language-more {

    width: 24px;

    height: 24px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.15);

    border: 1px solid rgba(255, 255, 255, 0.3);

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: all 0.3s ease;

    position: relative;

    box-sizing: border-box;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

    flex-shrink: 0;

}



.language-more:hover {

    background: rgba(255, 255, 255, 0.25);

    transform: scale(1.1) rotate(90deg);

    border-color: rgba(255, 255, 255, 0.6);

}



.language-more i {

    font-size: 12px;

    color: white;

}



.language-dropdown {

    position: absolute;

    top: 100%;

    right: -10px;

    margin-top: 8px;

    background: rgba(28, 28, 30, 0.95);

    backdrop-filter: blur(20px);

    -webkit-backdrop-filter: blur(20px);

    border-radius: 12px;

    border: 1px solid rgba(255, 255, 255, 0.15);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);

    min-width: 140px;

    max-height: 350px;

    overflow-y: auto;

    opacity: 0;

    visibility: hidden;

    transform: translateY(-10px);

    transition: all 0.3s ease;

    z-index: 10000;

}



/* Custom styles for scrollbar */

.language-dropdown::-webkit-scrollbar {

    width: 8px;

}



.language-dropdown::-webkit-scrollbar-track {

    background: rgba(255, 255, 255, 0.1);

    border-radius: 4px;

    margin: 8px 0;

}



.language-dropdown::-webkit-scrollbar-thumb {

    background: rgba(255, 255, 255, 0.3);

    border-radius: 4px;

    transition: background 0.2s ease;

}



.language-dropdown::-webkit-scrollbar-thumb:hover {

    background: rgba(255, 255, 255, 0.5);

}



.language-dropdown::-webkit-scrollbar-thumb:active {

    background: rgba(255, 255, 255, 0.7);

}



/* For Firefox */

.language-dropdown {

    scrollbar-width: thin;

    scrollbar-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.1);

}



.language-dropdown.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}



.dropdown-header {

    padding: 14px 18px;

    font-size: 14px;

    font-weight: 600;

    color: #8e8e93;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    text-transform: uppercase;

    letter-spacing: 0.5px;

    background: rgba(255, 255, 255, 0.05);

}



.dropdown-item {

    display: flex;

    align-items: center;

    padding: 12px 16px;

    font-size: 14px;

    color: #f2f2f7;

    cursor: pointer;

    transition: all 0.2s ease;

    gap: 12px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.05);

}



.dropdown-item:last-child {

    border-bottom: none;

}



.dropdown-item:hover {

    background: rgba(255, 255, 255, 0.15);

    transform: translateX(2px);

}



.dropdown-item img {

    width: 18px;

    height: 18px;

    border-radius: 50%;

    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);

}



@media (max-width: 768px) {

    .content-box {

        width: 90%;

        max-width: 90%;

        padding: 25px 20px;

    }



    #age-question {

        font-size: 2rem;

    }



    #prank-input {

        width: 100%; /* Ajuste la largeur pour s'adapter au conteneur */

    }



    .duck-image {

        width: 80px;

        height: 80px;

    }



    #copied-text, #second-text {

        width: 100%; /* Same width as buttons on mobile */

        margin: 10px 0; /* Same margin as buttons */

        padding: 12px;

        font-size: 16px;

        box-sizing: border-box; /* Include padding and border in width calculation */

    }



    .language-selector {

        top: 8px;

        right: 8px;

        padding: 4px 6px;

        gap: 3px;

    }



    .language-flag {

        width: 20px;

        height: 20px;

    }



    .language-flag:hover {

        transform: scale(1.05) rotate(2deg) !important;

    }



    #privacy-policy-button {

        font-size: 12px;

        padding: 6px 12px;

        bottom: 60px;

    }



    #background-video {

        object-fit: cover;

        width: 100vw;

        height: 100vh;

    }



    #st-button {

        font-size: 14px;

        padding: 12px 24px;

        margin-top: 15px;

    }



    #gift-button {

        position: fixed;

        top: 20px; /* Position en haut de l'écran */

        left: 50%;

        transform: translateX(-50%);

        z-index: 1000; /* Assurez-vous qu'il est au-dessus des autres éléments */

        font-size: 16px; /* Réduisez la taille de la police pour les petits écrans */

        padding: 10px 20px; /* Réduisez le padding pour les petits écrans */

    }



    .content-box {

        margin-top: 0px; /* Plus de marge car le positionnement est géré par le body */

    }



    .cookie-banner {

        bottom: 10px;

        right: 10px;

        left: 10px;

        max-width: none;

        font-size: 12px;

        padding: 14px 16px;

        gap: 12px;

    }



    .language-more {

        width: 20px;

        height: 20px;

    }



    .language-dropdown {

        min-width: 160px;

    }



    .disclaimer-banner {

        display: none;

    }

}



#share-button {

    display: block;

    width: 100%;

    margin-top: 20px;

    padding: 20px 30px;

    background: linear-gradient(45deg, #FFD700, #FFA500);

    color: #000;

    border: none;

    border-radius: 50px;

    font-size: 24px;

    font-weight: bold;

    text-transform: uppercase;

    cursor: pointer;

    transition: all 0.3s ease;

    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);

    position: relative;

    overflow: hidden;

}



#share-button:before {

    content: '';

    position: absolute;

    top: -50%;

    left: -50%;

    width: 200%;

    height: 200%;

    background: rgba(255, 255, 255, 0.2);

    transform: rotate(45deg);

    transition: all 0.3s ease;

}



#share-button:hover {

    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);

}



#share-button:hover:before {

    left: 100%;

}



#share-button i {

    margin-right: 15px;

    font-size: 28px;

}



#share-button span {

    position: relative;

    z-index: 1;

}



.button-container {

    display: flex;

    flex-direction: column;

    gap: 5px; /* Espacement réduit */

    margin-top: 15px;

}



.action-button {

    width: 100%; /* Ajusté pour prendre toute la largeur */

    height: 60px;

    padding: 0 15px;

    background: linear-gradient(45deg, #FFD700, #FFA500);

    color: #000;

    border: none;

    border-radius: 30px;

    font-size: 16px !important;

    font-weight: bold !important;

    text-transform: uppercase;

    cursor: pointer;

    transition: all 0.3s ease;

    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

    font-family: Arial, sans-serif !important;

    line-height: 1.5 !important;

    letter-spacing: normal !important;

}



.action-button:before {

    content: '';

    position: absolute;

    top: -50%;

    left: -50%;

    width: 200%;

    height: 200%;

    background: rgba(255, 255, 255, 0.2);

    transform: rotate(45deg);

    transition: all 0.3s ease;

}



.action-button:hover {

    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);

}



.action-button:hover:before {

    left: 100%;

}



.action-button i {

    margin-right: 8px;

    font-size: 18px !important;

}



.action-button span {

    position: relative;

    z-index: 1;

    font-size: inherit !important;

    font-weight: inherit !important;

    font-family: inherit !important;

}



@media (max-width: 480px) {

    .action-button {

        font-size: 14px !important;

    }

    

    .action-button i {

        margin-right: 5px;

        font-size: 16px !important;

    }

}



#background-image {

    display: none;

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    z-index: -1;

}



@media (max-width: 768px) {

    #background-video {

        display: none;

    }



    #background-image {

        display: block;

    }



    body {

        background-image: url('https://i.pinimg.com/736x/2b/23/47/2b2347e1084480d433823688b14c0fd0.jpg');

        background-size: cover;

        background-position: center;

        background-repeat: no-repeat;

        background-attachment: fixed;

        justify-content: flex-start; /* Change le centrage vertical */

        padding-top: 15vh; /* Ajuste la position du contenu */

    }

}



/* Message de notification */

.notification-message {

    position: fixed;

    top: 20px;

    right: 20px;

    background: linear-gradient(45deg, #4CAF50, #45a049);

    color: white;

    padding: 15px 25px;

    border-radius: 10px;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);

    font-size: 16px;

    font-weight: bold;

    z-index: 10000;

    opacity: 0;

    transform: translateX(300px);

    transition: all 0.3s ease;

    max-width: 300px;

    word-wrap: break-word;

}



.notification-message.show {

    opacity: 1;

    transform: translateX(0);

}



.notification-message i {

    margin-right: 8px;

    font-size: 18px;

}



@media (max-width: 768px) {

    .notification-message {

        top: 10px;

        right: 10px;

        left: 10px;

        max-width: none;

        text-align: center;

        transform: translateY(-100px);

    }

    

    .notification-message.show {

        transform: translateY(0);

    }

}



/* Animation pour le bouton copy */

.action-button.copying {

    background: linear-gradient(45deg, #4CAF50, #45a049) !important;

    transition: all 0.2s ease;

}



.action-button.copying i,
#inline-copy-button.copying i {
    animation: copySuccess 0.5s ease-in-out;
}

@keyframes copySuccess {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(1); }
}



/* Animation de pulse pour le bouton */

@keyframes pulseButton {

    0% {

        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);

    }

    50% {

        box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6);

    }

    100% {

        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);

    }

}



.action-button.pulse,
#inline-copy-button.pulse {
    animation: pulseButton 0.6s ease;
}



/* Bandeau cookies ultra discret */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(28, 28, 30, 0.95);
    color: #f2f2f7;
    padding: 16px 20px;
    border-radius: 16px;
    font-size: 13px;
    max-width: 420px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
    display: none;
    align-items: center;
    gap: 16px;
}

.cookie-banner:hover {
    background: rgba(28, 28, 30, 0.98);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.cookie-banner.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.cookie-banner span {
    flex: 1;
    line-height: 1.3;
}

.cookie-banner a {
    color: #007aff;
    text-decoration: none;
    font-weight: 500;
}

.cookie-banner a:hover {
    color: #0051d5;
}

.cookie-banner button {
    background: #007aff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s ease;
    font-weight: 600;
    min-width: 50px;
}

.cookie-banner button:hover {
    background: #0051d5;
}

/* Nouveau bloc pour le disclaimer et le contact */
.disclaimer-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding-bottom: 5px;
}

.disclaimer-banner, .contact-banner {
    background-color: rgba(0, 0, 0, 0.7);
    color: #aaa;
    font-size: 12px;
    padding: 8px 15px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-align: center;
    max-width: 90%;
    box-sizing: border-box; /* Pour inclure padding dans la largeur */
}

.disclaimer-banner a, .contact-banner a {
    color: #aaa;
    text-decoration: none;
    white-space: nowrap;
    font-size: inherit;
}

.disclaimer-banner a:hover, .contact-banner a:hover {
    color: #fff;
}


/* Affiliate Banner */
.affiliate-banner {
    position: fixed;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    z-index: 999;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.affiliate-banner:hover {
    transform: translateY(-50%) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.affiliate-banner img {
    display: block;
    width: 160px;
    height: 600px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.affiliate-banner:hover img {
    filter: brightness(1.1);
}

/* Hide banner on mobile/tablets */
@media (max-width: 1200px) {
    .affiliate-banner {
        display: none;
    }
}

/* Adjust for smaller desktop screens */
@media (max-width: 1024px) and (min-width: 769px) {
    .affiliate-banner {
        right: 5px;
    }
    
    .affiliate-banner img {
        width: 120px;
        height: 450px;
    }
} 
#prank-button .icon-arrow {
    display: none;
}

/* Small screens: show arrow only, hide text and link icon */
@media (max-width: 480px) {
    #prank-button .claim-text,
    #prank-button .icon-link {
        display: none;
    }
    #prank-button .icon-arrow {
        display: inline-block;
    }
    #prank-button {
        padding: 12px 16px; /* ajustement pour la largeur réduite */
    }
} 
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap');

#kawaii-button {
    margin-top: 15px;
    padding: 8px 20px;
    font-family: 'Fredoka One', cursive;
    font-weight: 600;
    font-size: 0.9rem;
    color: #b33c57;
    background: #fce4ec;
    border: 2px solid #f8bbd0;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 75%;
    box-sizing: border-box;
    text-align: center;
}

#kawaii-button:hover {
    background: #f8bbd0;
    border-color: #f48fb1;
    color: #880e4f;
    box-shadow: 0 0 10px #f8bbd0;
}

#kawaii-button .fa-heart {
    margin-right: 8px;
    display: inline-block;
    transition: transform 0.3s ease;
}

#kawaii-button:hover .fa-heart {
    transform: scale(1.2);
}

#kawaii-button:active {
    transform: scale(0.98);
}

@media (max-width: 768px) {
    #kawaii-button {
        font-family: 'Roboto', sans-serif;
        padding: 6px 14px;
        font-size: 0.75rem;
        letter-spacing: 0.8px;
        max-width: 85%;
        font-weight: bold;
    }

    #kawaii-button .fa-heart {
        font-size: 0.7rem;
        margin-right: 5px;
    }
} 
@media (max-width: 768px) {
    .disclaimer-banner, .contact-banner {
        font-size: 9px;
        padding: 6px 10px;
        line-height: 1.2;
    }
}

@media (max-width: 380px) {
    .disclaimer-banner, .contact-banner {
        font-size: 7px;
        padding: 5px 8px;
    }
} 