* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Baloo 2", sans-serif;
}
body {
    background: #ffffff;
}
.container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    box-sizing: border-box;
}
.header {
    width: 100%;
    background: #fff;
    .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}
.header-brand-nav {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    justify-content: space-between;
}
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo img {
    height: 55px;
    width: 131px;
    object-fit: contain;
    @media (max-width: 767px) {
        width: 110px;
    }
}
.nav {
    ul {
        list-style: none;
        display: flex;
        gap: 60px;
    }
}
.nav ul li a {
    text-decoration: none;
    color: #000;
    font-size: 20px;
    font-weight: 600;
    transition: 0.3s;
    font-family: "Content", system-ui;
}
.nav ul li a:hover {
    color: #ff2f7d;
}
.nav ul li a.active {
    color: #ff2f7d;
}
.search img {
    width: 28px;
    cursor: pointer;
    transition: 0.3s;
    @media (max-width: 767px) {
        width: 24px;
    }
}
.search img:hover {
    transform: scale(1.1);
}
.menu-toggle {
    display: none;
    font-size: 32px;
    margin-top: -7px;
    font-weight: lighter;
    cursor: pointer;
    color: #ff3f83;
}
@media (max-width: 992px) {
    .nav ul {
        gap: 20px;
    }
}
@media (max-width: 982px) {
    .nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #f5f5f5;
        display: none;
        padding: 20px 0;
    }
    .nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .menu-toggle {
        display: block;
    }
    .search {
        margin-left: auto;
        margin-right: 15px;
    }
}
@media (max-width: 982px) {
    .nav {
        position: absolute;
        top: 63px;
        left: 0px;
        width: 100%;
        background: #f5f5f5;
        display: none;
        padding: 20px 0;
    }
    .nav.active {
        display: block;
        z-index: 9999;
    }
    .nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .menu-toggle {
        display: block;
    }
    .search {
        margin-left: auto;
        margin-right: 15px;
    }
}
.hero {
    min-height: 60vh;
    background: url("https://resource.iaris.net/articles/6380f7d7ea9c41e3824d9b32f54ea0fe.png") no-repeat center/cover;
    position: relative;
    z-index: 1;
}
.hero-container {
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: url("https://resource.iaris.net/articles/43df0d94e80873f9f9e32e2323891123.png") no-repeat center/cover;
    padding: 80px 0;
}
.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.hero-left {
    flex: 1;
    color: #fff;
    @media (max-width: 767px) {
        width: 100%;
    }
}
.hero-left h1 {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    @media (min-width: 768px) and (max-width: 991px) {
        font-size: 35px;
    }
}
.hero-left h1 span {
    background: linear-gradient(to right, #f648ff, #1df7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-left p {
    font-size: 20px;
    color: #d1d5db;
    line-height: 1.6;
    max-width: 520px;
    margin-bottom: 30px;
    @media (max-width: 767px) {
       max-width: none;
    }
}
.search-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    form{
        @media (min-width: 768px) and (max-width: 991px) {
            display: flex;
            align-items: center;
            gap: 15px;
        }
    }
}
.search-wrapper input {
    flex: 1;
    min-width: 335px;
    max-width: 480px;
    height: 50px;
    background: #3D445D;
    border: 2px solid #8C8C8C;
    border-radius: 50px;
    padding: 0 20px;
    color: #fff;
    outline: none;
    font-size: 20px;
    @media (min-width: 768px) and (max-width: 991px) {
        min-width: unset;
    }
}
.search-wrapper input::placeholder {
    color: #bfc3d9;
    font-size: 20px;
}

.search-wrapper button {
    height: 50px;
    padding: 0 30px;
    border-radius: 50px;
    border: none;
    background: #ff3d7f;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    transition: 0.3s ease;
    &:hover{
        background: #b70d47;
        transition: 0.3s ease;
    }
}
.popular {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    @media screen and (max-width: 982px) {
        flex-wrap: nowrap;
        margin-top: 20px;
    }
}

.tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    .active {
        background-color: #fe3d7f;
    }
    @media screen and (max-width: 982px) {
        gap: 5px;
    }
}

.tags a {
    padding: 6px 18px;
    border-radius: 20px;
    background: #3b3f63;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
    @media screen and (max-width: 982px) {
        font-size: 12px;
        padding: 3px 12px;
    }
    &:hover{
        background: #ff3d7f;
        transition: 0.3s ease;
    }
}
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}
.hero-right img {
    max-width: 520px;
    width: 100%;
    height: auto;
}
/* Tablet */
@media (max-width: 767px) {
    .hero-container {
        padding: 60px 0;
    }
    .hero .container {
        flex-direction: column;
        text-align: center;
        width: 95%;
    }
    .hero-left h1 {
        text-align: left;
        font-size: 34px !important;
        margin-bottom: 10px;
    }
    .hero-left p {
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }
    .hero-right {
        display: none;
    }
    .search-wrapper {
        justify-content: center;
        form{
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 103px;
            gap: 10px;
        }
        input {
            padding: 5px 20px;
            min-width: auto;
            height: 42px;
        }
        button {
            padding: 5px 20px;
            height: fit-content !important;
            font-size: 20px;
            text-transform: capitalize;
        }
    }
    .search-wrapper input::placeholder {
        color: #bfc3d9;
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    .hero {
        min-height: 46vh;
    }
    .hero-container {
        padding: 20px 0 45px;
        align-items: baseline;
        min-height: 46vh;
    }
    .hero-left p {
        font-size: 16px;
    }
    .search-wrapper {
        flex-direction: column;
        width: 100%;
    }
    .search-wrapper input {
        width: 100%;
        max-width: 100%;
    }
    .search-wrapper button {
        width: 100%;
        margin-top: 0px;
        height: 42px !important;
        font-size: 16px;
    }
}
.popular-section {
    padding: 50px 20px 20px;
    padding-bottom: 20px;
    background: #F4F4F8;
    margin-top: -30px;
    position: relative;
    z-index: 0;
    @media (max-width: 767px) {
        margin-top: -16px;
        padding: 30px 0px 20px;

    }
}
.involveme_embed {
    overflow: hidden !important;
}
.iframe-div-part {
    @media (max-width: 982px) {
        grid-template-columns: 1fr !important;
    }
}
.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}
.section-title span {
    color: #ff3d7f;
}
.latest-title {
    color: #f8d400;
    span {
        color: black;
    }
}
.you-may-like-title {
    span {
        color: black;
    }
}
.quiz-home-search-empty {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin: 24px auto 8px;
    max-width: 480px;
}
.quiz-home-search-reset {
    text-align: center;
    margin-bottom: 24px;
}
.quiz-home-search-reset a {
    font-weight: 700;
    color: #fe3d7f;
}
.quiz-section-empty {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin: 32px auto;
    max-width: 480px;
}
.bottom-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 23px;
    margin-bottom: 30px;
}
.card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 480px;
    height: auto;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.5s ease;
    &:hover{
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
        transition: all 0.5s ease;
    }
    @media (max-width: 767px) {
        height: 200px;
        height: auto;
        border-radius: 10px;
    }
}
.card-top {
    /* flex: 0 0 62%; */
    position: relative;
    height: 50%;
    height: auto;
    cursor: pointer;
}
.bottom-row .card-top {
    position: relative;
    height: 50%;
    height: auto;
    img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    @media (max-width: 982px) {
        flex: 0 0 45%;
    }
}
.card-bottom {
    padding: 22px;
    @media (max-width: 767px) {
        padding: 15px 10px;
    }
}
.pink .card-top {
    background: linear-gradient(180deg, #ff4f8b, #a11d4f);
}
.green .card-top {
    background: linear-gradient(180deg, #7cc043, #4f7f2b);
}
.love .card-top,
.fandom .card-top {
    background: linear-gradient(180deg, #d88be1, #8f4c73);
}
.yellow .card-top {
    background: linear-gradient(180deg, #f5d000, #a88b00);
}
.blue .card-top {
    background: linear-gradient(180deg, #2e3f74, #1b2248);
}
.badge {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 0px 10px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 14px;
    color: #fff;
    text-transform: uppercase;
    @media (max-width: 767px) {
        font-size: 11px;
        border-radius: 5px;
        padding: 1px 5px;
        top: 6px;
        left: 6px;
        display: none;
    }
}
.pink-badge {
    background: #ff3d7f;
}
.love-badge {
    background: #b0003a;
}
.yellow-badge {
    background: #ffb400;
    color: #000;
}
.purple-badge {
    background: #5a3eb1;
}
.category {
    font-size: 15px;
    font-weight: 600;
    color: #ff3d7f;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-transform: uppercase;
    @media screen and (max-width: 767px) {
        font-size: 12px;
    }
}
.card h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    margin:0px 0px 10px;
    display: -webkit-box;
    overflow: hidden;
    cursor: pointer;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #111;
    @media screen and (max-width: 982px) {
        font-size: 14px;
        line-height: 1.2;
        -webkit-line-clamp: 2;
        margin: 3px 0 6px;
    }
}
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.card-footer a {
    color: #ff3d7f;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    @media screen and (max-width: 982px) {
        font-size: 10px;
        border-radius: 100px;
        padding: 1px 8px;
        background: #ff3d7f;
        color: #fff;
        border: 0px;
    }
}
.card-footer span {
    font-size: 13px;
    color: #b5b5b5;
    display: none;
}
.ad-box {
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: clip;
    overflow-x: hidden;
    img {
        display: block;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
}

/* GAM top / inline slots: stop wide creatives (970×90 etc.) from causing horizontal scroll */
#div-gpt-ad-1775579746695-0,
div[id^="div-gpt-ad-"] {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    overflow: hidden;
}

#div-gpt-ad-1775579746695-0 iframe,
div[id^="div-gpt-ad-"] iframe {
    max-width: 100% !important;
}

#div-gpt-ad-1775579746695-0 > div,
div[id^="div-gpt-ad-"] > div {
    max-width: 100% !important;
}
@media (max-width: 1024px) {
    .popular-section {
        .bottom-row {
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }
    }
}
@media (max-width: 767px) {
    .popular-section {
        .bottom-row {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
    }
}
.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    @media (max-width: 767px) {
        font-size: 28px;
        margin-bottom: 5px;
    }
}
.orange {
    color: #f4a62a;
}
.latest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 23px;
    padding-bottom: 45px;
    @media (max-width: 982px) {
        gap: 15px;
    }
}
.latest-section {
    background: #F4F4F8;
}
.latest-section .card {
    height: 480px;
     height: auto;
    @media (max-width: 767px) {
        height: 200px;
         height: auto;
    }
    .card-top {
        position: relative;
        height: 50%;
        height: auto;
        img {
            width: 100% !important;
            height: 100% !important;
            object-fit: cover !important;
        }
        @media (max-width: 982px) {
            flex: 0 0 50%;
        }
    }
}
.new-badge {
    background: #55c271;
    color: #fff;
}
@media (max-width: 1024px) {
    .container {
        width: 95%;
    }
    .latest-grid {
        grid-gap: 15px;
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 767px) {
    .container {
        width: 95%;
    }
    .latest-grid {
        grid-gap: 15px;
        grid-template-columns: repeat(2, 1fr);
    }
}
.see-more-wrapper {
    display: flex;
    justify-content: center;
    margin: 60px 0;
}
.see-more-btn {
    display: inline-block;
    padding: 18px 60px;
    border-radius: 50px;
    background: linear-gradient(90deg, #ff3d7f 0%, #ff6a00 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 26px;
    @media (max-width: 982px) {
        font-size: 20px;
        padding: 14px 50px;
    }
}
.see-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 90, 0, 0.3);
}
.footer {
    background: #1e2746;
    color: #ffffff;
    padding: 40px 20px 20px;
    @media (max-width: 767px) {
        padding: 15px 15px 30px;
    }
}
.footer-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    align-items: start;
    @media (max-width: 767px) {
        gap: 15px;
    }
}
.footer-logo {
    width: 140px;
    margin-bottom: 20px;
    @media (max-width: 767px) {
        margin-bottom: 10px;
    }
}
.footer-col h3 {
    font-size: 29px;
    font-weight: 700;
    margin-bottom: 8px;
    @media (max-width: 767px) {
        margin-bottom: 0px;
        font-size: 22px;
    }
}
.footer-col p {
    font-size: 19px;
    color: #c7cde4;
    line-height: 26px;
}
.footer-col:nth-child(4) p {
    font-size: 12px;
    width: 80%;
    line-height: 1.4;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 3px;
}
.footer-col ul li a {
    text-decoration: none;
    color: #c7cde4;
    font-size: 12px;
    transition: 0.3s;
}
.footer-col ul li a:hover {
    color: #ff6a00;
}
.subscribe-input {
    width: 100%;
    padding:8px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #fff;
    margin-top: 15px;
    outline: none;
    font-size: 13px;
    background-color: #3d445d;
}
.subscribe-input::placeholder {
    color: #b0b7d3;
    font-size: 13px;
}
.subscribe-btn {
    width: 100%;
    margin-top: 7px;
    padding: 8px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(90deg, #ff3d7f 0%, #ff6a00 100%);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}
.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 100, 0, 0.3);
}
.footer-bottom {
    max-width: 1100px;
    margin: 50px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.832);
    text-align: center;
    font-size: 13px;
    color: #ffffff;
    @media (max-width: 767px) {
        margin: 20px auto 0;
    }
}
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}
.quiz-detail-section {
    padding: 35px 0;
    background: #e6e6ea;
}
.large-ad {
    text-align: center;
    letter-spacing: 8px;
    color: #9c9c9c;
    font-size: 18px;
    padding-bottom: 25px;
}
.quiz-detail-section .large-ad {
    padding-bottom: 25px;
}
.quiz-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    position: relative;
    align-items: start;
}
.quiz-main-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    text-align: center;
    @media (max-width: 982px) {
        padding: 10px;
        padding-bottom: 30px;
    }
}
.quiz-image {
    height: 360px;
    background: #c7c0c0;
    border-radius: 16px;
    margin-bottom: 25px;
}
.quiz-main-card h2 {
    font-size: 26px;
    width: 80%;
    margin: auto;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 26px;
    @media (max-width: 982px) {
        width: 90%;
    }
}
.quiz-main-card p {
    font-size: 16px;
    color: #555;
    width: 70%;
    margin: auto;
    margin-bottom: 30px;
    @media (max-width: 982px) {
        width: 90%;
    }
}
.start-btn {
    padding: 13px 60px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(90deg, #ff3d7f, #ff6a00);
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: flex !important;
    align-items: center !important;
    margin: auto;
    span {
        display: block;
        margin-top: 5px;
        margin-right: 8px;
    }
    @media (max-width: 982px) {
        font-size: 25px !important;
        display: block;
        width: fit-content !important;
        margin: auto;
        padding: 7px 45px;
    }
}
.start-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 90, 0, 0.3);
}
.quiz-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    top: 10px;
    align-items: center;
    @media (max-width: 982px) {
        height: auto;
        position: static;
    }
}
.sidebar-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    width: 100%;
    text-align: center;
}
.sidebar-card-1 {
    padding: 25px;
    img {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
}
.sidebar-card h3 {
    font-size: 21px;
    font-weight: 700;
}
.sidebar-card hr {
    margin: 15px 0 20px;
    border: none;
    border-top: 1px solid #ddd;
}
.suggest-item {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 18px;
}
.thumb {
    width: 110px;
    height: 70px;
    background: #c7c7c7;
    border-radius: 12px;
    line-height: 21px;
}
.suggest-item p {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}
.facebook-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: #3b82f6;
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 18px;
    display: block;
    text-align: center;
    text-decoration: none;
}
.x-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: #000;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    font-size: 18px;
    display: block;
    text-align: center;
    text-decoration: none;
}
@media (max-width: 992px) {
    .quiz-layout {
        grid-template-columns: 1fr;
    }

    .quiz-main-card {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .quiz-main-card h2 {
        font-size: 22px;
    }

    .quiz-main-card p {
        font-size: 15px;
    }

    .start-btn {
        width: 100%;
    }
}
.quiz-question-section {
    background-color: white;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    border-radius: 20px;
}
.question-container {
    width: 100%;
}
.progress-bar {
    height: 9px;
    background: #dcdcdc;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}
.progress-fill {
    width: 0%; /* 1 of 4 */
    height: 100%;
    background: linear-gradient(90deg, #ff3d7f, #ff6a00);
    border-radius: 10px;
}
.progress-fill-question-2 {
    width: 40%;
}
.progress-fill-question-3 {
    width: 65%;
}
.progress-fill-question-4 {
    width: 100%;
}
.question-count {
    font-size: 20px;
    color: #888;
    margin-bottom: 20px;
    font-weight: 600;
    @media (max-width: 982px) {
        font-size: 16px;
    }
}
.question-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 25px;
    margin-top: 40px;
    @media (max-width: 982px) {
        font-size: 23px !important;
    }
}
.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 40px;
}
.options-grid-1 {
    grid-template-columns: 1fr;
}
.option-btn {
    padding: 14px;
    border-radius: 10px;
    border: none;
    background: #dcdcdc;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    font-size: 21px;
    @media (max-width: 982px) {
        font-size: 16px;
        padding: 10px 14px;
    }
}
.option-btn:hover {
    background: #cfcfcf;
}
.option-btn.active {
    background: #ff3d4f;
    color: #fff;
}
.option-btn.full {
    grid-column: span 2;
}
.quiz-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 170px;
    @media (max-width: 982px) {
        gap: 10px;
        margin-top: 40px;
    }
}
.nav-btn {
    padding: 7px 55px;
    border-radius: 30px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    font-size: 24px;
    background: linear-gradient(90deg, #ff3d7f, #ff6a00);
    color: #fff;
    transition: 0.3s;
    @media (max-width: 982px) {
        font-size: 19px;
    }
}
.nav-btn:hover {
    transform: translateY(-2px);
}
@media (max-width: 480px) {
    .question-title {
        font-size: 18px;
    }
}
.result-container {
    text-align: center;
    max-width: 500px;
}
.result-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ff3d7f, #ff6a00);
    display: flex;
    align-items: center;
    justify-content: center;
}
.flower {
    font-size: 50px;
    color: #fff;
}
.result-container h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}
.sub-text {
    color: #ff3d7f;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 15px;
}
.description {
    font-size: 12px;
    width: 80%;
    margin: auto;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
}
.result-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.btn {
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
    min-width: 160px;
}
.primary {
    background: linear-gradient(90deg, #ff3d7f, #ff6a00);
    border: none;
    color: #fff;
}

.outline {
    background: transparent;
    border: 2px solid #ff670a;
    color: #ff670a;
}

.outline:hover {
    color: #fff;
    background: linear-gradient(90deg, #ff3d7f, #ff6a00);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 90, 0, 0.3);
}
@media (max-width: 480px) {
    .row {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .result-container h2 {
        font-size: 20px;
    }
}
.terms-sec-page,
.privacy-sec-page,
.about-sec-page {
    .container {
        section {
            margin-bottom: 27px !important;
        }
    }
}
.about-sec-page {
    .about-content {
        margin: 20px 0;
        .about-heading {
            font-size: 40px;
            font-weight: 600;
        }
        h3 {
            margin-top: 18px;
            font-size: 28px;
        }
        p {
            margin: 20px 0;
        }
        h6 {
            margin-top: 20px;
            font-size: 20px;
        }
        ul {
            list-style-position: inside;
            margin: 10px;
        }
    }
}
.disney-hero {
    background: linear-gradient(to right, #febfd6, #ff72a4);
    padding: 60px 0 70px;
    position: relative;
}
.disney-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #000;
    text-align: center;
}

.disney-hero p {
    font-size: 18px;
    color: #222;
    text-align: center;
}
.love-hero {
    background: linear-gradient(to right, #f42f58, #f94f3d);

    h1 {
        color: white !important;
    }
    p {
        color: white !important;
    }
}
.fandom-hero {
    background: linear-gradient(135deg, #febfd6 0%, #ff72a4 50%, #d88be1 100%);
    h1 {
        color: #1a1a1a !important;
    }
    p {
        color: #222 !important;
    }
}
.about-hero {
    background: linear-gradient(to right, #f42f58, #f94f3d);
    background: linear-gradient(to right, #24b58d, #39d38c);
    h1 {
        color: white !important;
    }
    p {
        color: white !important;
    }
}
.fun-hero {
    background: linear-gradient(to right, #24b58d, #39d38c);

    h1 {
        color: white !important;
    }
    p {
        color: white !important;
    }
}
.disney-content {
    background: #F4F4F8;
    padding-bottom: 20px;
    .ad-box {
        margin: 0 auto 0px;
        padding: 25px 0px;
        border-radius: 14px;
        text-align: center;
        letter-spacing: 8px;
        color: #9c9c9c;
        font-size: 18px;
    }
}
.filter-pills {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    @media (max-width: 982px) {
        gap: 3px;
    }
}
.pill {
    padding: 10px 25px;
    border-radius: 30px;
    border: none;
    background: #3b3f63;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    @media (max-width: 982px) {
        padding: 3px 15px;
    }
}
.pill.active {
    background: linear-gradient(90deg, #ff3d7f, #ff6a00);
}
.pill:hover {
    opacity: 0.9;
}
@media (max-width: 992px) {
    .disney-hero h1 {
        font-size: 36px;
    }
    .disney-hero p {
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    .disney-hero {
        padding: 20px 0 20px;
    }
    .disney-hero h1 {
        font-size: 28px;
        margin-bottom: 0px;
    }
    .ad-box {
        font-size: 14px;
        letter-spacing: 4px;
        padding-bottom: 0px;
    }
    .pill {
        font-size: 14px;
    }
}
.searchmain {
    width: 100%;
    position: absolute;
    background: #f5f5f5;
    border-top: 2px solid #ff3d7f;
    max-width: 1200px;
    width: 100%;
    margin: auto;
    left: 0;
    right: 0;
    padding: 70px 20px;
    z-index: 999;
    display: none;
    .close-search {
        position: absolute;
        right: 20px;
        top: 20px;
        font-size: 32px;
        cursor: pointer;
        &:hover {
            color: #ff3d7f;
        }
    }
    .search-wrapper {
        flex-direction: column;
        position: relative;
        margin: auto;
        max-width: 550px;
        .search-box {
            display: grid;
            width: 100%;
            h2 {
                text-align: center;
                margin-bottom: 15px;
                font-size: 36px;
            }
            form {
                width: 100%;
                display: flex;
                gap: 5px;
                @media (max-width: 982px) {
                    flex-direction: column;
                }
                input {
                    min-width: auto;
                    max-width: none;
                    width: 100%;
                }
                button {
                    text-transform: uppercase;
                    font-size: 18px;
                }
            }
        }
        .popular {
            margin-top: 10px;
            @media (max-width: 982px) {
                display: flex;
                flex-direction: column;
            }
            span {
                font-size: 18px;
            }
            .tags {
                gap: 5px;
                a {
                    font-size: 14px;
                    padding: 3px 18px;
                }
            }
        }
    }
}
.adheading{
    width: 100%;
    display: block;
    text-align: center;
    font-size: 12px;
    color: #333;
    margin-bottom: 5px;
    letter-spacing: normal;
}
.mobile{
    display: none;
}
@media (max-width: 767px) {
    .desktop{
        display: none;
    }
    .mobile{
        display: block;
    }
}
.ad-container {
    width: 100%;
    text-align: center;
}
.ad-container > div {
    margin: 0 auto;
}

.quiz-sidebar {
    .adheading {
        text-align: left;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 10px;
        color: #111;
    }
    .right-quizzes {
        .card {
            margin-bottom: 25px;
            a {
                text-decoration: none;
                .content {
                    padding: 15px;
                    text-align: left;
                    h3 {
                        font-size: 18px;
                        margin-bottom: 0;
                    }
                    span {
                        color: #ff3d7f;
                        font-weight: 600;
                        font-size: 14px;
                    }
                }
            }
        }
    }
}
