@charset "UTF-8";

/* Global Font Definitions */
@font-face {
    font-family: "Dax-ExtraBold";
    src: url("../../assets/Dax-ExtraBold.eot");
    /* IE9*/
    src: url("../../assets/Dax-ExtraBold.eot?#iefix") format("embedded-opentype"), url("../../assets/Dax-ExtraBold.woff2") format("woff2"), url("../../assets/Dax-ExtraBold.woff") format("woff"), url("../../assets/Dax-ExtraBold.ttf") format("truetype"), url("../../assets/Dax-ExtraBold.svg#Dax-ExtraBold") format("svg");
    /* iOS 4.1- */
}

.dax-extrabold {
    font-family: "Dax-ExtraBold" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0.2px;
    -moz-osx-font-smoothing: grayscale;
}

/*
 * Hello Kitty Full Quiz Stylesheet
 * Version: 1.0
 * Description: Scoped styles for the Hello Kitty quiz component, now integrated
 * into the main stylesheet under the .hello-kitty-promo class.
 */

/* Base styles for the main quiz container */
.hello-kitty-promo {
    font-family: 'Noto Sans', sans-serif;
    background: #fff5f9;
    padding: 20px 0;
    /* Adds some vertical spacing */
}

/* Scoped header styles within the quiz */
.hello-kitty-promo header img {
    width: 100%;
    max-height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
}

/* Scoped container for the quiz content area */
.hello-kitty-promo .container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    text-align: center;
}

/* Scoped heading styles */
.hello-kitty-promo h1 {
    color: #e60073;
}

/* Logic for showing/hiding quiz sections */
.hello-kitty-promo .question,
.hello-kitty-promo .result,
.hello-kitty-promo #quizStart {
    display: none;
}

.hello-kitty-promo .question.active,
.hello-kitty-promo #quizStart.active,
.hello-kitty-promo .result.active {
    display: block;
}

/* Styles for the answer labels */
.hello-kitty-promo label {
    display: block;
    background: #fff;
    margin: 10px auto;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    max-width: 500px;
    transition: background-color 0.3s ease;
    /* Smooth hover effect */
    border: 1px solid #f06ea9;
}

.hello-kitty-promo label:hover {
    background: #ffeaf3;
}

/* Styles for buttons */
.hello-kitty-promo .btn {
    padding: 12px 24px;
    background: #f06ea9;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
    /* Smooth hover effect */
}

.hello-kitty-promo .btn:hover {
    background: #e35d98;
}

/* Styles for the final result banner image */
.hello-kitty-promo .result-banner {
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
    display: block;
    border-radius: 12px;
}

/* Scoped footer for the quiz component */
.hello-kitty-promo footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #666;
    margin-top: 20px;
    border-top: 1px solid #fde0ef;
    /* Adds a subtle separator line */
}
