@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@font-face {
    font-family: "Bluestar";
    src: url("./font/Bluestar-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --tdg-shell-width: 1240px;
    --tdg-header-height: 76px;
    --tdg-page-x: clamp(16px, 2.4vw, 32px);
    --tdg-card-radius: 20px;
}
.tdg_body {
    background: linear-gradient(
        180deg,
        #233f7c 0%,
        #91c5ec 77%,
        #91c5ec 77%,
        #5277a7 100%
    );
    font-family: "Montserrat", sans-serif;
}
.tdg_body:not(.tdg_body--login) {
    min-height: 100vh;
    overflow-x: hidden;
    background-attachment: fixed;
}
.tdg_body--login {
    background: linear-gradient(
        180deg,
        #233f7c 0%,
        #91c5ec 77%,
        #91c5ec 77%,
        #5277a7 100%
    );
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}
.tdg_header {
    /* background: #fff;
  min-height: 163px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    gap: 16px;
}
.tdg_body:not(.tdg_body--login) .tdg_header {
    min-height: var(--tdg-header-height);
    max-width: var(--tdg-shell-width);
    margin: 0 auto;
    padding: 12px var(--tdg-page-x) 10px;
}
.tdg_header img {
   width: 100%;
    max-width: 320px;
}
.tdg_body:not(.tdg_body--login) .tdg_header img {
    max-width: 250px;
}
.tdg_header--center {
    justify-content: center;
}
.tdg-page-back.tdg-page-back-header {
    position: static;
    left: auto;
    top: auto;
    background: #112878;
    border: 1px solid #112878;
    padding: 10px 18px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    animation: tdgBackFloat 2.8s ease-in-out infinite;
}
.tdg-page-back.tdg-page-back-header:hover {
    transform: translateY(-2px) scale(1.02);
}
.tdg-page-back.tdg-page-back-header::before {
    content: "\2190";
    font-size: 18px;
    line-height: 1;
}
.tdg-logout-form {
    margin: 0;
}
.tdg-logout-btn {
   height: 42px;
    width: 42px;
    border-radius: 50%;
    border: 1px solid #ef4444;
    background: #ef4444;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}
.tdg-logout-btn:hover {
    background: #e16539;
    color: #fff;
}
.tdg-logout-btn svg {
    width: 18px;
    height: 18px;
}
main.tdg_main-wrapper.tdg-page-enter {
    min-height: calc(100vh - var(--tdg-header-height));
    width: 100%;
    padding: 16px var(--tdg-page-x) 28px;
}
main.tdg_main-wrapper.tdg-page-enter .tdg_inner-wrapper{
  flex: 0;
  width: 100%;
}
.tdg_body:not(.tdg_body--login) main.tdg_main-wrapper > .tdg_inner-wrapper {
    width: min(100%, var(--tdg-shell-width));
    margin: 0 auto;
    padding: 22px 0;
}
.tdg_main-wrapper {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.tdg_main-auth-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}
.tdg_body:not(.tdg_body--login) .tdg_main-auth-wrapper,
.tdg_body:not(.tdg_body--login) .tdg_gallery-box,
.tdg_body:not(.tdg_body--login) .tdg-status-card {
    width: min(100%, var(--tdg-shell-width));
}
.tdg_body:not(.tdg_body--login) .tdg_gallery-box {
    max-width: 1160px;
}
.divider-line {
    height: 100%;
    width: 2px;
    background: linear-gradient(180deg, #ffffff80, transparent);
    min-height: 650px;
}
.tdg_login-content {
    color: #fff;
    font-weight: 500;
}
.tdg-quick-links {
    width: 100%;
    padding: 12px 24px;
}
.tdg-quick-links ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    gap: 16px;
}
.tdg-quick-links ul li a{
  color: #fff;
  font-weight: 600;
}
.tdg_logo-wrapper {
    width: 100%;
    display: flex;
    max-width: 1250px;
    margin: 40px auto 0;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 12px 24px;
    gap: 16px;
}
.tdg_logo-wrapper .tdg-logo-img{
  height: 80px;
  min-height: 80px;
}
.tdg_logo-wrapper .tdg-logo-img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.tdg_thankyou-heading{
    color: #fff;
    text-align: center;
    margin: 0 0 12px;
}
.tdg-page-enter {
    animation: tdgPageFadeIn 0.65s cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.tdg-transition-burst {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0;
    background:
        radial-gradient(circle at 28% 38%, rgba(220, 208, 143, 0.32), transparent 12%),
        radial-gradient(circle at 72% 30%, rgba(255, 255, 255, 0.22), transparent 10%),
        radial-gradient(circle at 52% 72%, rgba(220, 208, 143, 0.22), transparent 16%),
        rgba(7, 27, 28, 0.72);
    transform: scale(1.04);
    transition: opacity 0.18s ease;
}

.tdg-transition-burst span {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    left: 50%;
    top: 50%;
    color: #dcd08f;
    background: currentColor;
    box-shadow:
        0 -80px 0 currentColor,
        56px -56px 0 #fff,
        80px 0 0 #f9c74f,
        56px 56px 0 #fff,
        0 80px 0 currentColor,
        -56px 56px 0 #fff,
        -80px 0 0 #f9c74f,
        -56px -56px 0 #fff;
    opacity: 0;
}

.tdg-transition-cheers {
    position: absolute;
    left: 50%;
    top: 50%;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(32px, 7vw, 86px);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow:
        0 8px 28px rgba(0, 0, 0, 0.45),
        0 0 28px rgba(220, 208, 143, 0.55);
    opacity: 0;
    transform: translate(-50%, -42%) scale(0.82);
}

.tdg-transition-burst span:nth-child(1) {
    left: 26%;
    top: 32%;
}

.tdg-transition-burst span:nth-child(2) {
    left: 72%;
    top: 34%;
    color: #83e8ff;
}

.tdg-transition-burst span:nth-child(3) {
    left: 48%;
    top: 62%;
    color: #ff7b7b;
}

.tdg-transition-burst span:nth-child(4) {
    left: 82%;
    top: 70%;
}

body.tdg-is-leaving .tdg-transition-burst {
    opacity: 1;
}

body.tdg-is-leaving .tdg-transition-burst span {
    animation: tdgTransitionFirework 0.52s ease-out both;
}

body.tdg-is-leaving .tdg-transition-cheers {
    animation: tdgCheersPop 0.52s cubic-bezier(0.18, 0.82, 0.22, 1) both;
}

body.tdg-is-leaving .tdg-transition-burst span:nth-child(2) {
    animation-delay: 80ms;
}

body.tdg-is-leaving .tdg-transition-burst span:nth-child(3) {
    animation-delay: 150ms;
}

body.tdg-is-leaving .tdg-transition-burst span:nth-child(4) {
    animation-delay: 220ms;
}

body.tdg-is-leaving .tdg_header,
body.tdg-is-leaving .tdg_main-wrapper {
    animation: tdgPageExit 0.48s cubic-bezier(0.55, 0, 0.2, 1) both;
}
.tdg-page-back {
    position: fixed;
    left: 24px;
    top: 185px;
    z-index: 20;
    background: rgba(37, 37, 37, 0.48);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 999px;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(2px);
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}
.tdg-page-back:hover {
    transform: translateY(-2px);
}

.tdg-login-page::before {
    z-index: 1 !important;
}

.tdg-login-page .tdg_inner-wrapper {
    z-index: 1000;
}
/* .tdg_main-wrapper:before {
  content: "";
  background-image: url("./images/sparkles.png");
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: repeat-x;
  mix-blend-mode: overlay;
  z-index: -1;
} */
.tdg_inner-wrapper {
    flex: 1;
    padding: 40px;
}
.tdg_heading-section {
    text-align: center;
    color: #fff;
}
.tdg_heading-section h1 {
    font-size: 80px;
    line-height: 1;
    text-shadow: 0px 0px 20px #000;
}
.tdg_heading-section p {
    font-family: "Bluestar";
    font-size: 120px;
    line-height: 1;
    font-style: italic;
    text-shadow: 0px 0px 20px #000;
}
.tdg-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    max-width: 550px;
    margin: 64px auto 0;
}
.tdg-form label span {
    color: #fff;
    padding: 0 0 8px;
    display: block;
    font-weight: 600;
}
.tdg-form input {
    width: 100%;
    padding: 16px 24px;
    text-align: left;
    background: #ffffff40;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
    box-shadow: none;
    color: #fff;
    border: 1px solid #fff;
    font-family: "Montserrat", sans-serif;
}
.tdg-button {
    margin: 24px auto 0;
    background: rgb(255 255 255 / 50%);
    cursor: pointer;
    width: 100%;
    padding: 16px 24px;
    text-align: center;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
    box-shadow: none;
    color: #25427e;
    border: none;
    display: block;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    transition: 0.3s;
}
.tdg-button:hover {
    background: rgb(255 255 255 / 80%);
}
.tdg-form input::placeholder {
    color: #fff;
}
.tdg_gallery-box {
    width: 100%;
    max-width: 1250px;
    margin: auto;
}
.tdg_gallery {
    display: flex;
    gap: 14px;
    justify-content: center;
}
.tdg_gallery > * {
    padding: 2px;
    background: #fff;
    flex: 1;
    overflow: hidden;
    border: 1px solid gray;
    border-radius: var(--tdg-card-radius);
    padding: 18px;
}
.tdg_gallery > *:hover img {
    transform: scale(1.2) rotate(4deg);
    transition: 0.3s;
}
.tdg_gallery > * img {
    width: 100%;
    height: 100%;
    transition: 0.3s;
}
.tdg_gallery > .tdg-logo-gallery-item {
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #071b1c !important;
    border-color: rgba(220, 208, 143, 0.55);
}
.tdg_gallery > .tdg-logo-gallery-item img {
    height: auto;
    max-width: 88%;
    object-fit: contain;
}
.tdg_gallery-box p {
    font-size: clamp(18px, 2vw, 23px);
    color: #fff;
    text-align: center;
    margin: 26px auto;
    max-width: 980px;
    font-weight: 600;
}
.tdg_icon-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: var(--tdg-shell-width);
    margin: 42px auto 0;
    gap: 10px;
}

.tdg_icon-item {
    display: flex;
    /* width:calc(33.33% - 10px); */
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    background: white;
    /* border: 1px solid gray; */
    /* border-radius: 14px; */
    /* padding: 20px; */
    border: 1px solid gray;
    padding: 20px;
}
.tdg_icon-item:hover {
    transform: translateY(-10px);
    transition: 0.3s;
}

.tdg-card-tag {
    display: flex;
    flex-flow: column;
    text-align: center;
    align-items: center;
    text-decoration: none !important;
}
.tdg_icon-box {
    width: 180px !important;
    height: 180px;
    background: #fff;
    padding: 24px;
    width: 100%;
    /* border-radius: 52px; */
}
.tdg_icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 14px;
}
.tdg_icon-item p {
    font-size: 21px;
    line-height: 1;
    /* text-shadow: 0px 0px 20px #000; */
    color: #ffffff;
    font-weight: 600;
}
.tdg-empty {
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 24px;
    text-shadow: 0px 0px 20px #000;
    margin-top: 12px;
}
.tdg_heading-section.tdg_grid-heading h1 {
    font-size: 32px;
}
.tdg_heading-section.tdg_grid-heading p {
    font-size: 56px;
}

@keyframes tdgPuzzleIn {
    0% {
        opacity: 0;
        transform: translateY(36px) scale(0.82) rotate(-7deg);
        filter: blur(4px);
    }
    60% {
        opacity: 1;
        transform: translateY(-6px) scale(1.03) rotate(1deg);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
        filter: blur(0);
    }
}

@keyframes tdgFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}
@keyframes tdgPageFadeIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.985);
        filter: blur(3px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes tdgPageExit {
    to {
        opacity: 0;
        transform: translateY(-18px) scale(0.985);
        filter: blur(4px);
    }
}

@keyframes tdgCategoryFlipIn {
    0% {
        opacity: 0;
        transform: perspective(900px) rotateX(68deg) translateY(42px) scale(0.9);
        filter: blur(5px);
    }
    62% {
        opacity: 1;
        transform: perspective(900px) rotateX(-8deg) translateY(-7px) scale(1.025);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: perspective(900px) rotateX(0deg) translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes tdgTransitionFirework {
    0% {
        opacity: 0;
        transform: scale(0.1) rotate(0deg);
        filter: blur(0);
    }
    35% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(1.35) rotate(16deg);
        filter: blur(2px);
    }
}

@keyframes tdgCheersPop {
    0% {
        opacity: 0;
        transform: translate(-50%, -35%) scale(0.72) rotate(-4deg);
        filter: blur(4px);
    }
    55% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.04) rotate(1deg);
        filter: blur(0);
    }
    100% {
        opacity: 0.92;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        filter: blur(0);
    }
}
@keyframes tdgBackFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2px);
    }
}

.tdg-status-shell {
    width: 100%;
    padding: 24px 0 34px;
}
.tdg-status-card {
    max-width: 940px;
    margin: 24px auto 0;
    padding: 28px;
    border-radius: var(--tdg-card-radius);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(220, 208, 143, 0.45);
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    color: #fff;
}
.tdg-status-image {
    width: 100%;
    max-width: 220px;
    height: 220px;
    object-fit: contain;
}
.tdg-status-kicker {
    color: #dcd08f;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 8px;
}
.tdg-status-title {
    color: #fff;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.1;
    margin-bottom: 12px;
    text-shadow: 0 0 14px rgba(0, 0, 0, 0.35);
}
.tdg-status-text {
    color: #f5f5f5;
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 1.6;
}
.tdg-status-text a {
    color: #dcd08f;
    font-weight: 700;
}
.tdg-status-actions {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.tdg-chip-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border-radius: 999px;
    border: 1px solid rgba(220, 208, 143, 0.7);
    background: rgba(220, 208, 143, 0.15);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s ease;
}
.tdg-chip-btn:hover {
    transform: translateY(-2px);
    background: rgba(220, 208, 143, 0.28);
}

.tdg-puzzle-gallery > * {
    opacity: 0;
    animation: tdgPuzzleIn 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
    animation-delay: calc(var(--tdg-delay, 0) * 140ms + 120ms);
}

.tdg-puzzle-grid .tdg_icon-item {
    opacity: 0;
    animation: tdgCategoryFlipIn 0.85s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
    animation-delay: calc(var(--tdg-delay, 0) * 120ms + 180ms);
}

.tdg-gift-categories .custom-card.tdg-card-tag,
.tdg-gift-categories .tdg_icon-item {
    opacity: 0;
    transform-origin: center bottom;
    animation: tdgCategoryFlipIn 0.9s cubic-bezier(0.18, 0.82, 0.22, 1) forwards;
    animation-delay: calc(var(--tdg-delay, 0) * 130ms + 170ms);
}

.tdg-gift-categories .custom-card.tdg-card-tag:hover,
.tdg-gift-categories .tdg_icon-item:hover {
    transform: translateY(-6px) rotateX(0deg) scale(1.015);
}

.tdg-puzzle-cta {
    opacity: 0;
    animation: tdgPuzzleIn 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
    animation-delay: 620ms;
}

.tdg-thankyou-page .tdg_main-auth-wrapper {
    min-height: auto;
    align-items: stretch;
    gap: clamp(18px, 3vw, 34px);
}

main.tdg_main-wrapper.tdg-page-enter.tdg-thankyou-page {
    justify-content: flex-start !important;
}

.tdg-thankyou-page .tdg_inner-wrapper {
    flex: 1 !important;
    max-width: 750px;
    /* padding: clamp(20px, 3vw, 34px);
    border-radius: var(--tdg-card-radius);
    background: rgba(7, 27, 28, 0.28);
    border: 1px solid rgba(220, 208, 143, 0.24);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22); */
}

.tdg-thankyou-page .tdg_inner-wrapper img {
    max-width: 380px;
    display: block;
    margin: 0 auto 18px;
}

/* .tdg-thankyou-page .divider-line {
    min-height: auto;
} */

.tdg-login-logo-puzzle img {
    animation: tdgPuzzleIn 0.85s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.tdg-login-heading h1 {
    opacity: 0;
    animation: tdgPuzzleIn 0.75s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
    animation-delay: 160ms;
}
.tdg-login-heading p {
    opacity: 0;
    animation: tdgPuzzleIn 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
    animation-delay: 280ms;
}
.tdg-login-form label,
.tdg-login-form button {
    opacity: 0;
    animation: tdgPuzzleIn 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.tdg-login-form label:nth-of-type(1) {
    animation-delay: 420ms;
}
.tdg-login-form label:nth-of-type(2) {
    animation-delay: 540ms;
}
.tdg-login-form button {
    animation-delay: 700ms;
}
@media (max-width: 768px) {
    .tdg_header {
        min-height: auto;
        padding: 16px;
    }
    .tdg_header img {
        width: 105px;
        height: auto;
    }
    .tdg-page-back.tdg-page-back-header {
        padding: 8px 14px;
        font-size: 14px;
    }
    .tdg-logout-btn {
        width: 36px;
        height: 36px;
    }
    .tdg-page-back {
        left: 12px;
        top: 86px;
        font-size: 14px;
        padding: 7px 14px;
    }
    .tdg_heading-section h1,
    .tdg_heading-section.tdg_grid-heading h1 {
        font-size: 24px;
    }
    .tdg_heading-section p,
    .tdg_heading-section.tdg_grid-heading p {
        font-size: 40px;
    }
    .tdg_gallery {
        flex-direction: column;
    }
    .tdg_gallery-box p {
        font-size: 16px;
    }
    .tdg_icon-grid {
        flex-direction: column;
    }
    .tdg-thankyou-page .tdg_main-auth-wrapper,
    .tdg_main-auth-wrapper {
        flex-direction: column;
    }
    .tdg-thankyou-page .divider-line,
    .divider-line {
        width: 100%;
        min-height: 1px;
        height: 1px;
    }
    .tdg-status-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 20px;
    }
    .tdg-status-image {
        margin: 0 auto;
        max-width: 160px;
        height: 160px;
    }
    .tdg_icon-box {
        width: 100px;
        height: 100px;
        padding: 16px;
    }
    .tdg_icon-item p {
        font-size: 18px;
    }
    .tdg-status-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 20px;
    }
    .tdg-status-image {
        margin: 0 auto;
        max-width: 160px;
        height: 160px;
    }
    .tdg-status-title {
        font-size: 32px;
    }
    .tdg-status-text {
        font-size: 16px;
    }
    .tdg-status-actions {
        justify-content: center;
    }
}

.appreciation-box {
    padding: 0px 20px;
    padding-bottom: 10px;
    background: #00b141;
    align-items: center;
    display: flex;
    padding: 10px;
    border-radius: 8px;
    color: white !important;
}

.appreciation-title {
    color: #111827;
    font-size: 1.06rem;
    font-weight: 600;
    line-height: 1.3;
}

.gift-swiper {
    padding: 20px 10px 40px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

.gift-card {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.gift-card img {
    width: 100%;
    height: 220px !important;
    object-fit: cover;
    display: block;
}

.gift-swiper {
    width: 100% !important;
}

/* Hover effect (important for UI feel) */
.gift-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.video-fullscreen-wrapper {
    position: relative;
    width: 70%;
    height: 60vh;
    overflow: hidden;
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin: auto;
    margin-top: 40px;
}

.fullscreen-video {
    /* position: absolute; */
    top: 50%;
    left: 50%;
    /* min-width: 100%; */
    /* min-height: 100%; */
    width: auto;
    /* height: auto; */
    /* transform: translate(-50%, -50%); */
    object-fit: cover;
    background: white "";
    background: white;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    /* margin-top: 120px; */
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 2;
}

.tdg_icon-item-content p {
    font-size: 24px;
    line-height: 1;
    text-shadow: rgb(0, 0, 0) 0px 0px 20px;
    color: rgb(255, 255, 255);
    font-weight: 600;
}

.video-fullscreen-wrapper {
    position: relative;
    width: 66%;
    height: 80vh;
    overflow: hidden;
}

.fullscreen-video {
    /* position: absolute; */
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    /* pointer-events: none; */
}

/* thank you page */

.thankyou-wrapper {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: #f2f2f2; */
    overflow: hidden;
}

/* Gradient circles (background blobs) */
.thankyou-wrapper::before,
.thankyou-wrapper::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.thankyou-wrapper::before {
    width: 300px;
    height: 300px;
    background: #ff7eb3;
    top: 10%;
    left: 10%;
}

.thankyou-wrapper::after {
    width: 300px;
    height: 300px;
    /* background: #6ee7f9; */
    bottom: 10%;
    right: 10%;
}

/* Glass Card */
.thankyou-card {
    position: relative;
    width: 600px;
    padding: 50px 40px;
    border-radius: 20px;
    background: rgba(24, 24, 24, 0.42);
    border: 1px solid rgba(220, 208, 143, 0.45);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Logo */

/* Title */
.thankyou-card h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.divider span {
    flex: 1;
    height: 1px;
    background: #ccc;
}

/* Description */
.desc {
    font-size: 14px;
    color: #666;
    margin: 20px 0;
}

/* Button */
.cta-btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 25px;
    background: linear-gradient(45deg, #ff7eb3, #ff4f81);
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

/* Background wrapper */
.bubble-bg {
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* BIG SOFT BLOBS (like your image) */
.bubble-bg::before,
.bubble-bg::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    z-index: 0;
}

.bubble-bg::before {
    width: 300px;
    height: 300px;
    background: #ff7eb3;
    top: 10%;
    left: 10%;
}

.bubble-bg::after {
    width: 300px;
    height: 300px;
    background: #6ee7f9;
    bottom: 10%;
    right: 10%;
}

/* SMALL FLOATING BUBBLES */
.bubbles span {
    position: absolute;
    display: block;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    animation: float 12s infinite ease-in-out;
}

/* Different sizes & positions */
.bubbles span:nth-child(1) {
    width: 60px;
    height: 60px;
    left: 20%;
    bottom: -100px;
    animation-delay: 0s;
}
.bubbles span:nth-child(2) {
    width: 40px;
    height: 40px;
    left: 40%;
    bottom: -120px;
    animation-delay: 2s;
}
.bubbles span:nth-child(3) {
    width: 70px;
    height: 70px;
    left: 60%;
    bottom: -150px;
    animation-delay: 4s;
}
.bubbles span:nth-child(4) {
    width: 30px;
    height: 30px;
    left: 80%;
    bottom: -80px;
    animation-delay: 1s;
}
.bubbles span:nth-child(5) {
    width: 50px;
    height: 50px;
    left: 10%;
    bottom: -130px;
    animation-delay: 3s;
}

.bubbles span:nth-child(6) {
    width: 30px;
    height: 30px;
    left: 15%;
    bottom: -130px;
    animation-delay: 1s;
}

/* Animation */
@keyframes float {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-400px) scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: translateY(-800px) scale(1);
        opacity: 0;
    }
}

/* Keep card above bubbles */
.thankyou-card {
    position: relative;
    z-index: 2;
}


@media(max-width:768px){
    .tdg_main-auth-wrapper{
        flex-direction: column;
    }

    .tdg-login-page .tdg_inner-wrapper{
        width: 100% !important;
        padding: 24px !important;
    }

    .divider-line{
        display: none;
    }

    .tdg-form{
        margin: 0 !important;
    }

    .tdg-quick-links ul{
        justify-content: center;
    }

    .tdg_logo-wrapper{
        margin: 12px 0 0;
       display: grid;
       grid-template-columns: 1fr 1fr;
    }

    .tdg_logo-wrapper .tdg-logo-img {
    height: 40px;
    min-height: 40px;
}
}
