body {
    margin: 0;
    font-family: Cabin, Poppins, Arial, sans-serif;
    background: url('img/shayari-bg.png') center center/cover no-repeat fixed;
    color: #fff;
    position: relative;
    min-height: 100vh
}

.body-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000B2;
    z-index: 0
}

.body-content {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0 auto;
    width:100%;
}

.site-header {
    background: #17fF6533;
    padding: 10px;
    text-align: center;
    color: #fff;
    border-bottom: 1px solid #17ff65
}

.shayari-container {
    background: rgba(0, 0, 0, .7);
    padding: 20px;
    border-radius: 10px
}

.shayari-box h2 {
    font-family: Cabin;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    text-align: center;
}

.btn-age-confirm,
h3.desc-title {
    font-family: Cabin;
    font-weight: 500
}

.shayari-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
    margin: 30px 0
}

.shayari-item {
    width: 100%;
    max-width: 160px;
    height: 120px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 8px rgba(255, 255, 255, .2);
    transition: transform .3s;
    border: 2px solid #fff
}

.shayari-item:hover,
.top-category-box:hover {
    transform: scale(1.05)
}

.shayari-item a {
    text-decoration: none
}

.shayari-item img {
    min-height: 160px;
    object-fit: cover;
    border-radius: 8px
}

.shayari-item a,
.shayari-item img {
    height: 100%;
    display: block;
    width: 100%
}

h3.desc-title {
    font-size: 24px;
    line-height: 100%
}

.shayari-description {
    padding: 10px;
    color: #eee;
    background: #ffffff29;
    line-height: 1.6;
    border-radius: 10px
}

.shayari-description h3,
.shayari-description h4 {
    color: #a5d6ff
}

.highlight,
.shayari-description .highlight {
    color: #00ff6a;
    font-family: Cabin;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%
}

.shayari-description ul {
    margin: 10px 0;
    padding-left: 20px;
    color: #ddd
}

.shayari-description li {
    margin-bottom: 8px
}


/* age-selection-css */



.btn-age-confirm {
    background: linear-gradient(90deg, #17ff65 0, #17ff65 100%);
    box-shadow: 0 2px 8px rgba(0, 255, 106, .15);
    padding: 24px 30px;
    border: none;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
    width: 100%;
    margin: 20px auto;
    max-width: 500px;
    color: #000;
    font-size: 18px;
    position: relative;
    overflow: hidden;
    transition: transform .1s, box-shadow .3s
}

.custom-captcha-box,
.gender-box {
    border: 2px solid #17ff65;
    display: flex
}

.btn-age-confirm::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #17ff65, #00e04f, #17ff65);
    background-size: 200% 100%;
    z-index: 0;
    opacity: 0;
    transition: opacity .4s, background-position .4s;
    background-position: left
}

.btn-age-confirm>* {
    position: relative;
    z-index: 1
}

.btn-age-confirm:hover::before {
    opacity: 1;
    background-position: right
}

.btn-age-confirm:active {
    transform: scale(.98);
    box-shadow: 0 1px 4px rgba(0, 255, 106, .1)
}

.btn-age-icon {
    width: 24px;
    height: 24px
}

.btn-age-text {
    text-align: center;
    line-height: 100%
}

/* -------Gender Selection CSS------- */

.gender-selection-container {
    text-align: center;
    margin: 30px auto
}

.gender-selection-title {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: Cabin, sans-serif
}

.custom-captcha-checkbox,
.gender-label,
.shayari-action-text {
    font-weight: 500;
    color: #fff;
    font-family: Cabin, sans-serif
}

.gender-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap
}

.gender-box {
    background-color: #363232;
    border-radius: 20px;
    width: 220px;
    height: 190px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0 0 0 rgba(0, 255, 106, .2)
}

.gender-box:hover {
    background-color: #db2020;
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(0, 255, 106, .35)
}

.gender-box:active {
    background-color: #db2020;
    transform: scale(.97);
    box-shadow: 0 0 6px rgba(0, 255, 106, .25)
}

.gender-box.active {
    background: linear-gradient(90deg, #17ff65, #17ff65);
    box-shadow: 0 4px 16px rgba(0, 255, 106, .25)
}

.gender-icon {
    width: 88px;
    height: 94px;
    margin-bottom: 10px
}

.gender-label {
    font-size: 18px
}

/* Captcha Css */
.custom-captcha-box {
    align-items: center;
    justify-content: space-between;
    background: #000;
    border-radius: 20px;
    padding: 34px;
    max-width: 460px;
    margin: 30px auto
}

.custom-captcha-checkbox {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    font-size: 20px
}

.custom-captcha-checkbox input {
    display: none
}

.custom-captcha-checkbox .checkmark {
    width: 28px;
    height: 28px;
    border: 2px solid #17ff65;
    border-radius: 5px;
    display: inline-block;
    position: relative;
    transition: background .3s
}

.custom-captcha-checkbox input:checked+.checkmark::after {
    content: "✓";
    position: absolute;
    top: 0;
    left: 6px;
    color: #17ff65;
    font-size: 20px;
    font-weight: 700
}

.captcha-refresh-icon {
    width: 40px;
    height: 40px;
    opacity: .8
}
.ads-container{
     
        width: 100%;
    max-width: 560px;
    display: flex
;
    justify-content: center;
    align-items: center;
}
#verify-btn:disabled {
    background: #444 !important;
    cursor: not-allowed;
    opacity: .5;
    box-shadow: none;
    pointer-events: none
}

@keyframes spin360 {
    from {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

.rotate-icon.spin {
    animation: 1s linear infinite spin360
}


/* Main Screen Css */

.shayari-action-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap
}

.shayari-action-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background-color: #191919;
    border-radius: 20px;
    text-decoration: none;
    transition: .3s
}

.shayari-action-btn:hover {
    transform: scale(1.07)
}

.shayari-icon-box {
    background-color: #17ff65;
    padding: 10px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center
}

.shayari-language-box,
.top-category-box {
    background-color: #191919;
    display: flex;
    transition: transform .3s
}

.shayari-action-icon {
    width: 32px;
    height: 32px
}

.shayari-action-text {
    font-size: 18px
}

.shayari-language-section,
.top-categories-section {
    margin-top: 30px
}

.shayari-language-title {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
    font-family: Cabin, sans-serif
}

.shayari-language-box {
    border-radius: 20px;
    align-items: center;
    padding: 20px;
    margin-bottom: 20px
}

.shayari-language-box:hover {
    transform: scale(1.02)
}

.language-icon-box {
    padding: 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    border: 2px solid #00ff5a
}

.language-icon {
    width: 40px;
    height: 40px
}

.language-info {
    flex: 1
}

.language-heading {
    color: #17ff65;
    margin-bottom: 4px;
    font-family: Cabin;
    font-weight: 600;
    font-size: 22px;
    line-height: 100%
}

.language-subtext {
    color: #fff;
    font-family: Cabin;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%
}

.language-arrow {
    font-size: 30px;
    color: #fff;
    padding-left: 20px;
    flex-shrink: 0
}

.language-arrow a {
    color: #fff;
    text-decoration: none
}

.top-categories-title {
    color: #fff;
    font-size: 24px;
    font-family: Cabin, sans-serif;
    margin-bottom: 20px
}

.top-category-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0
}

.top-category-box {
    width: 100%;
    max-width: 160px;
    min-height: 160px;
    border-radius: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.top-category-icon img {
    max-width: 60px;
    min-height: 60px;
    object-fit: contain
}

.top-category-name {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-top: 8px
}

.top-category-count {
    color: #bbb;
    font-size: 14px;
    margin-top: 4px
}




/* -------- inner-shayripage -------- */

.watch-shayari-box {
    width: 520px;
    height: auto;
    border: 2px solid #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.watch-shayari-box:hover {
    transform: scale(1.03);
}

.watch-shayari-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

h2.watch-shayari-title {
    font-family: Cabin;
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    text-align: center;
    margin-bottom: 30px;
}

/* --------------------- */


/* responsive */

@media screen and (max-width: 520px) {

    .watch-shayari-box {
        width: 100%;
        max-width: 460px;
    }

    h2.watch-shayari-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .gender-selection-title {
        font-size: 22px;
    }

    .gender-box {
        width: 180px;
        height: 170px;
    }

    .gender-icon {
        width: 72px;
        height: 76px;
    }

    .gender-label {
        font-size: 16px;
    }

    .shayari-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .btn-age-confirm {
        padding: 20px;
        font-size: 16px;
    }

    .gender-box {
        width: 160px;
        height: 160px;
    }

    .custom-captcha-box {
        padding: 24px;
    }

    .custom-captcha-checkbox {
        font-size: 18px;
    }

    .custom-captcha-checkbox .checkmark {
        width: 24px;
        height: 24px;
    }

    .shayari-action-btn {
        padding: 16px;
    }

    .shayari-action-text {
        font-size: 16px;
    }

    .language-heading {
        font-size: 20px;
    }

    .language-subtext {
        font-size: 14px;
    }

    .top-category-box {
        max-width: 120px;
        min-height: 120px;
    }

    .top-category-icon img {
        max-width: 50px;
        min-height: 50px;
    }

    .top-category-name {
        font-size: 14px;
    }

    .top-category-count {
        font-size: 12px;
    }

    h3.desc-title,
    .gender-selection-title,
    .shayari-language-title,
    .top-categories-title {
        font-size: 20px;
    }


    .shayari-action-btn {
        padding: 18px;
        gap: 10px;
    }

    .shayari-action-icon {
        width: 28px;
        height: 28px;
    }

    .shayari-action-text {
        font-size: 16px;
    }

    .language-icon {
        width: 36px;
        height: 36px;
    }

    .language-heading {
        font-size: 20px;
    }

    .language-subtext {
        font-size: 14px;
    }

    .language-arrow {
        font-size: 26px;
    }

    .top-category-box {
        max-width: 140px;
        min-height: 140px;
    }

    .top-category-icon img {
        max-width: 50px;
        min-height: 50px;
    }

    .top-category-name {
        font-size: 14px;
    }

    .top-category-count {
        font-size: 12px;
    }

    .shayari-language-title,
    .top-categories-title {
        font-size: 22px;
    }
}

@media screen and (max-width: 400px) {
    .watch-shayari-box {
        max-width: 360px;
    }

    h2.watch-shayari-title {
        font-size: 20px;
        margin-bottom: 22px;
    }

    .gender-selection-title {
        font-size: 20px;
    }

    .gender-box {
        width: 150px;
        height: 150px;
    }

    .gender-icon {
        width: 60px;
        height: 64px;
    }

    .gender-label {
        font-size: 15px;
    }

    .shayari-action-btn {
        padding: 16px;
        gap: 8px;
    }

    .shayari-action-icon {
        width: 26px;
        height: 26px;
    }

    .shayari-action-text {
        font-size: 15px;
    }

    .language-icon {
        width: 32px;
        height: 32px;
    }

    .language-heading {
        font-size: 18px;
    }

    .language-subtext {
        font-size: 13px;
    }

    .language-arrow {
        font-size: 24px;
    }

    .top-category-box {
        max-width: 120px;
        min-height: 120px;
    }

    .top-category-icon img {
        max-width: 44px;
        min-height: 44px;
    }

    .top-category-name {
        font-size: 13px;
    }

    .top-category-count {
        font-size: 11px;
    }

    .shayari-language-title,
    .top-categories-title {
        font-size: 20px;
    }


    .btn-age-confirm {
        padding: 18px;
        font-size: 15px;
    }

    .gender-box {
        width: 140px;
        height: 140px;
    }

    .gender-icon {
        width: 64px;
        height: 70px;
    }

    .gender-label {
        font-size: 16px;
    }

    .custom-captcha-box {
        padding: 20px;
    }

    .custom-captcha-checkbox {
        font-size: 16px;
    }

    .shayari-action-btn {
        padding: 14px;
    }

    .shayari-action-icon {
        width: 28px;
        height: 28px;
    }

    .shayari-action-text {
        font-size: 15px;
    }

    .language-icon {
        width: 32px;
        height: 32px;
    }

    .language-heading {
        font-size: 18px;
    }

    .language-subtext {
        font-size: 13px;
    }

    .top-category-box {
        max-width: 100px;
        min-height: 100px;
    }

    .top-category-icon img {
        max-width: 40px;
        min-height: 40px;
    }

    .top-category-name {
        font-size: 13px;
    }

    .top-category-count {
        font-size: 11px;
    }

    h3.desc-title,
    .gender-selection-title,
    .shayari-language-title,
    .top-categories-title {
        font-size: 18px;
    }

    .shayari-box h2 {
        font-size: 18px;
    }
}

@media screen and (max-width: 320px) {

    .watch-shayari-box {
        max-width: 300px;
    }

    h2.watch-shayari-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .gender-selection-title {
        font-size: 18px;
    }

    .gender-box {
        width: 120px;
        height: 130px;
    }

    .gender-icon {
        width: 50px;
        height: 54px;
    }

    .gender-label {
        font-size: 14px;
    }

    .shayari-action-btn {
        padding: 14px;
        gap: 6px;
    }

    .shayari-action-icon {
        width: 24px;
        height: 24px;
    }

    .shayari-action-text {
        font-size: 14px;
    }

    .language-icon {
        width: 28px;
        height: 28px;
    }

    .language-heading {
        font-size: 16px;
    }

    .language-subtext {
        font-size: 12px;
    }

    .language-arrow {
        font-size: 22px;
        padding-left: 10px;
    }

    .top-category-box {
        max-width: 100px;
        min-height: 100px;
    }

    .top-category-icon img {
        max-width: 36px;
        min-height: 36px;
    }

    .top-category-name {
        font-size: 12px;
    }

    .top-category-count {
        font-size: 10px;
    }

    .shayari-language-title,
    .top-categories-title {
        font-size: 18px;
    }

    .shayari-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 14px;
    }

    .btn-age-confirm {
        padding: 16px;
        font-size: 14px;
    }

    .gender-box {
        width: 120px;
        height: 130px;
    }

    .gender-icon {
        width: 56px;
        height: 60px;
    }

    .gender-label {
        font-size: 14px;
    }

    .custom-captcha-box {
        padding: 16px;
    }

    .custom-captcha-checkbox {
        font-size: 14px;
        gap: 10px;
    }

    .custom-captcha-checkbox .checkmark {
        width: 20px;
        height: 20px;
    }

    .shayari-action-btn {
        padding: 12px;
        gap: 8px;
    }

    .shayari-action-text {
        font-size: 14px;
    }

    .shayari-action-icon {
        width: 24px;
        height: 24px;
    }

    .language-heading {
        font-size: 16px;
    }

    .language-subtext {
        font-size: 12px;
    }

    .top-category-box {
        max-width: 90px;
        min-height: 90px;
    }

    .top-category-icon img {
        max-width: 36px;
        min-height: 36px;
    }

    .top-category-name {
        font-size: 12px;
    }

    .top-category-count {
        font-size: 10px;
    }

    h3.desc-title,
    .gender-selection-title,
    .shayari-language-title,
    .top-categories-title {
        font-size: 16px;
    }

    .shayari-box h2 {
        font-size: 16px;
    }
}