.special-sub-title {
    color: var(--txt-primary);
    text-align: center;
    font-family: 'outfit';
    font-size: 20px;
    font-weight: 500;
}

.help-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInScale {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.help-container {
    /* width: 90%; */
    max-width: 732px;
    /* background: var(--primary-bg); */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    max-height: 100%;
    /* font-family: "Nunito Sans", sans-serif; */
    overflow-x: hidden;
    padding: 0px 13px 0px 13px;
    background-color: var(--bg-primary);
    animation: slideInScale 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.help-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 47px;
    padding-bottom: 23px;
}

.help-title {
    font-size: 1.8rem;
    font-weight: 700;
    width: 100%;
    width: 100%;
    margin: 0;
    text-transform: none;
    text-align: center;
    color: var(--txt-primary);
}

.help-container .close-btn {
    position: absolute;
    right: 28px;
    top: 44px;
    background: none;
    border: none;
    font-size: 1.6rem;
    /* color: #222; */
    cursor: pointer;
    z-index: 2;
}

.help-content {
    padding: 0px 18px 0px 18px;
    /* padding-top: 23px; */
}

.help-content-img {
    width: 20px;
    position: absolutev;
}

.help-content p {
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.6;
    text-transform: none;
    font-family: Poppins;
    color: var(--txt-primary);
    font-size: 16px;
}

.help-content .divider {
    border-top: 0.1px solid #636363;
    margin-left: -45px;
    width: 115%;
    /* background-color: #636363; */
}

.help-content .divider-line {
    width: 114%;
    margin-left: -45px;
}

.star {
    /* color: #f5c518; */
    font-size: 1.2rem;
}

.examples {
    margin-top: 20px;
}

.example-row,
.example-column {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.example-column {
    flex-direction: column;
    align-items: center;
}

.example-corner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.example-row span,
.example-column span,
.example-corner span {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f9f9f9;
}

/* .example-row .correct,
.example-column .correct,
.example-corner .correct {
    background: #4caf50;
    color: #fff;
}

.example-row .misplaced,
.example-column .misplaced,
.example-corner .misplaced {
    background: #ffc107;
    color: #fff;
} */

.special-title {
    /* font-size: 1.2rem; */
    /* font-weight: bold; */
    /* margin-bottom: 10px; */
    /* text-transform: none; */
    text-align: center;
     color: var(--txt-primary);
    text-align: center;
    font-family: Outfit;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    /* line-height: normal; */
    letter-spacing: 2.24px;
    text-transform: uppercase;
}

.special-description {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--txt-primary);
}



.example-grid {
    display: grid;
    grid-template-columns: repeat(5, 40px);
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.example-grid .example-row {
    display: flex;
    gap: 10px;
}

.example-row span,
.example-grid span {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f9f9f9;
}

/* .example-row .correct,
.example-grid .correct {
    background: #4caf50;
    color: #fff;
}

.example-row .misplaced,
.example-grid .misplaced {
    background: #ffc107;
    color: #fff;
} */


/* Grid for the Funky Dingo Situation */
/* Grid for the Funky Dingo Situation */
.example-grid {
    display: grid;
    grid-template-columns: repeat(5, 40px);
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.example-row span {
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f9f9f9;
}

/* .example-row .correct {
    background: #4caf50;
    color: #fff;
}

.example-row .misplaced {
    background: #ffc107;
    color: #fff;
} */

/* Credits Section */
.credits {
    font-size: 0.9rem;
    color: var(--txt-primary);
    text-align: center;
    margin-top: 20px;
    text-transform: none
}

.credits .creator {
    font-weight: 700;
    color: var(--txt-primary);
    text-transform: none
}

.footer-note {
    font-size: 0.8rem;
    color: var(--txt-primary);
    text-align: center;
    margin-top: 10px;
    text-transform: none
}

.privacy-link {
    color: #007bff;
    text-decoration: none;
    text-transform: none
}

.privacy-link:hover {
    text-decoration: underline;
    text-transform: none
}

.help-container::-webkit-scrollbar {
    width: 0px;

}

.close-btn {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .help-content p {
        font-size: 14px;
    }
}


@media (max-width: 480px) {
    .help-content .divider-line {
        width: 122%;
        /* margin-left: -45px; */
    }
}