@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    font-family: 'Urbanist', sans-serif;
}

body {
    background: url('images/Locked\ Screen\ 17.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Urbanist', sans-serif;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.floating-image-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 220px;
    height: 408px;
    overflow: hidden;
    z-index: 5;
    pointer-events: none;
    display: none;
}


@media (min-width: 1025px) {
    .floating-image-top {
        display: block;
    }
}

.floating-image-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Navbar */
.navbar {
    position: sticky !important;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    /* background: rgba(200, 200, 200, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
    backdrop-filter: blur(10px);
    /* applies blur behind */
    -webkit-backdrop-filter: blur(10px);
    /* Safari support */

}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 4rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 24px;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-links li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #ffffff;
}

.login-mobile-view {
    display: none;
}

.nav-part2 {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-part2 .fa-search {
    font-size: 20px;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-part2 .fa-search:hover {
    color: #00ff7f;
}

.login-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 28px;
    font-size: 16px;
    font-weight: 500;
    color: white;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.login-btn i {
    transition: color 0.3s ease;
}

.login-btn:hover {
    background-color: #00ff7f;
    color: black;
}

.login-btn:hover i {
    color: black;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    height: 2px;
    width: 25px;
    background: white;
    border-radius: 5px;
}

@media (min-width: 1440px) {
    .navbar .container {
        padding: 0 6rem;
    }

    .nav-links li a {
        font-size: 17px;
    }

    .login-btn {
        font-size: 17px;
        padding: 12px 30px;
    }
}

@media (max-width: 1219px) {
    .navbar .container {
        padding: 0 2rem;
        gap: 16px;
    }

    .nav-links {
        gap: 18px;
        flex-wrap: wrap;
    }

    .nav-part2 {
        gap: 16px;
    }

    .login-btn {
        padding: 8px 20px;
        font-size: 15px;
    }

    .nav-links li a {
        font-size: 15px;
    }
}

@media (max-width: 1024px) {
    .navbar .container {
        flex-wrap: nowrap;
        gap: 14px;
    }

    .nav-links {
        gap: 16px;
        flex-wrap: wrap;
    }

    .login-btn {
        font-size: 14.5px;
        padding: 8px 18px;
    }

    .nav-links li a {
        font-size: 14.5px;
    }
}

@media (max-width: 905px) {
    .navbar .container {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 14px;
    }

    .nav-part2 {
        gap: 14px;
    }

    .login-btn {
        font-size: 14px;
        padding: 7px 16px;
    }

    .nav-links li a {
        font-size: 14px;
    }
}

@media (max-width: 780px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: block;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(20, 20, 20, 0.95);
        padding: 2rem 1.5rem;
        z-index: 999;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .nav-part2 {
        display: none;
    }

    .login-mobile-view {
        display: block;
    }

    .navbar .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 1.5rem;
    }

    .logo img {
        height: 34px;
    }

    .hamburger span {
        width: 24px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 12px 0;
    }

    .navbar .container {
        padding: 0 1rem;
        gap: 12px;
    }

    .logo img {
        height: 28px;
    }

    .nav-links li a {
        font-size: 13.5px;
    }

    .login-btn {
        padding: 6px 16px;
        font-size: 13px;
    }

    .hamburger span {
        width: 20px;
    }
}

@media (max-width: 375px) {
    .navbar .container {
        padding: 0 0.8rem;
    }

    .nav-links li a {
        font-size: 13px;
    }

    .login-btn {
        font-size: 12.5px;
        padding: 6px 14px;
    }

    .logo img {
        height: 26px;
    }

    .hamburger span {
        width: 18px;
    }
}


/* Hero  */
.hero {
    text-align: center;
    padding: 90px 90px 0 90px;
    color: white;
    background: rgba(200, 200, 200, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.cta-buttons .btn-space {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.learn-btn,
.join-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 400;
    color: white;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    cursor: pointer;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    min-width: 220px;
    text-align: center;
}

.learn-btn:hover,
.join-btn:hover {
    background-color: #00ff7f;
    color: black;
}

.learn-btn i,
.join-btn i {
    font-size: 14px;
}

.hero-dashboard img {
    max-width: 100%;
    margin-top: 40px;
}


@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .login-btn,
    .learn-btn,
    .join-btn {
        width: 100%;
        justify-content: center;
    }

    .container {
        padding: 0 16px;
    }

    .about,
    .how-it-works,
    .video-wrapper {
        padding: 1.5rem 1rem;
        margin: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .how-it-works {
        padding: 1.5rem 1rem;
        margin: 1.5rem 1rem;
    }

    .step h3 {
        font-size: 1rem;
    }

    .step p {
        font-size: 0.9rem;
    }

    .video-wrapper {
        margin: 1.5rem 1rem;
        padding: 1.5rem 1rem;
    }

    .play-button {
        font-size: 2rem;
        width: 60px;
        height: 60px;
    }


}



/*about */
.about {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start !important;
    padding: 6rem;
    background: rgba(200, 200, 200, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(10px);
    margin: 5rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-text,
.about-img {
    width: 50%;
}

.about-text {
    flex: 1;
    margin-right: 40px;
    color: white;
    text-align: left;
    align-items: flex-start;
}

.about-text h2 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.about-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4rem;
    line-height: 1.6;
}

.about-feauture {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.about-feauture .icon img {
    width: 40px;
    height: 40px;
}

.about-feauture h4 {
    margin: 0;
    font-size: 18px;
    color: white;
}

.about-feauture p {
    margin: 5px 0 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.about-img {
    display: flex;
    justify-content: center !important;
    align-items: center;
}



@media (max-width: 1140px) {
    .about {
        flex-direction: column;
        align-items: flex-start;
        padding: 3rem 2rem;
        margin: 3rem 2rem;
    }

    .about-text,
    .about-img {
        width: 100%;
        margin: 0;
    }

    .about-text {
        margin-bottom: 3rem;
        padding-top: 0;
    }

    .about-img {
        display: flex;
        justify-content: center;
    }

    .about-img img {
        max-width: 90%;
        height: auto;
    }

    .about-text h2 {
        font-size: 32px;
    }

    .about-text p {
        font-size: 17px;
    }

    .about-feauture {
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }

    .about-feauture .icon img {
        width: 40px;
        height: 40px;
    }

    .about-feauture h4 {
        font-size: 18px;
    }

    .about-feauture p {
        font-size: 14.5px;
    }


}

@media (max-width: 768px) {
    .about {
        padding: 2.5rem 1.5rem;
    }

    .about-text h2 {
        font-size: 28px;
    }

    .about-text p {
        font-size: 16px;
    }

    .about-feauture .icon img {
        width: 36px;
        height: 36px;
    }

    .about-feauture h4 {
        font-size: 16px;
    }

    .about-feauture p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 2rem 1rem;
        margin: 2rem 1rem;
    }

    .about-text h2 {
        font-size: 24px;
    }

    .about-text p {
        font-size: 15px;
    }

    .about-feauture {
        gap: 12px;
    }

    .about-feauture .icon img {
        width: 32px;
        height: 32px;
    }

    .about-feauture h4 {
        font-size: 15px;
    }

    .about-feauture p {
        font-size: 13.5px;
    }
}




/*how it works*/
.how-it-works {
    text-align: center;
    padding: 4rem 8rem;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.how-it-works h2 {
    font-size: 2.5rem;
    color: #fff;
}

.green-power {
    color: #b0ff6d;
}

.steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.m-top-3rem {
    text-align: center;
}

.step {
    flex: 1 1 calc(33.333% - 2rem);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 350px;
}

.step:hover {
    background: rgba(200, 200, 200, 0.15);
    backdrop-filter: blur(10px);
}

.step .icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.step h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.step p {
    margin: 0;
    line-height: 1.5;
}

.hiw-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0 auto;
    border-radius: 25px;
    max-width: 1200px;
    box-sizing: border-box;
}

.circle6-how-list {
    list-style: none;
    padding-left: 0;
    margin: 0 auto;
    font-size: 16px;
    color: #eaffef;
    width: 100%;
    max-width: 800px;
    box-sizing: border-box;
}

.circle6-how-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 14px;
    /* line-height: 1.6; */
}

.circle6-how-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 6px;
    background-color: #ffffff;
}

.hiw-prgrph {
    margin: 10px 0 20px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 25px;
    width: 100%;
    max-width: 800px;
}

@media (max-width: 1024px) {
    .hiw-content {
        padding: 3rem 2rem;
        margin: 2rem 3rem;
    }
}

@media (max-width: 768px) {
    .hiw-content {
        padding: 2rem 1rem;
        margin: 1.5rem 1rem;
    }

    .circle6-how-list {
        font-size: 15px;
    }

    .hiw-prgrph {
        font-size: 15px;
    }
}





/* Work Smarter */
.page-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
}

.left-section {
    max-width: 33%;
    margin-left: 10rem;
    ;
}

.left-section h2 {
    font-size: 1.7rem;
    margin-bottom: 2rem;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 900px;
    margin: 2rem auto;
    overflow: hidden;
}

.accordion-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.accordion-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    color: white;
    font-size: 30px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.08);
}

.accordion-title {
    font-size: 1.5rem;
}

.accordion-arrow {
    /*font-size: 2rem;*/
    color: #b0ff6d;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    color: #ddd;
    font-size: 1.2rem;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    ;
}

.accordion-item.active .accordion-content {
    min-height: 90px;
    max-height: fit-content;
    padding: 1rem 1.5rem;
}

.right-section {
    position: relative;
    width: 45%;
}

.bg-dashboard {
    width: 100%;
    height: auto;
    border-radius: 25px;
    object-fit: cover;
}

@media (max-width: 1240px) {
    .accordion-title {
        font-size: 1.2rem;
    }

    .accordion-content {

        font-size: 1rem;

    }

    .accordion-arrow {
        font-size: 1.2rem;
    }

    .left-section h2 {
        font-size: 1.7rem;
        margin-bottom: 1rem;
    }

    .accordion {
        gap: 1rem;
    }
}

@media (max-width: 1024px) {

    .left-section,
    .right-section {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
    }

    .page-wrapper {
        justify-content: center;
        padding: 4rem 2rem;
        gap: 2rem;
    }

    .left-section h2 {
        font-size: 2rem;
        text-align: center;
    }

    .accordion-title {
        font-size: 0.95rem;
    }

    .accordion-content {
        font-size: 0.9rem;
    }

    .bg-dashboard {
        border-radius: 20px;
    }
}

@media (max-width: 768px) {
    .page-wrapper {
        flex-direction: column;
        padding: 3rem 1.5rem;
        gap: 2rem;
    }

    .left-section h2 {
        font-size: 1.6rem;
        text-align: center;
    }

    .accordion-title {
        font-size: 0.9rem;
    }

    .accordion-content {
        font-size: 0.85rem;
    }

    .bg-dashboard {
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .page-wrapper {
        padding: 2rem 1rem;
    }

    .left-section h2 {
        font-size: 1.3rem;
    }

    .accordion-title {
        font-size: 0.85rem;
    }

    .accordion-content {
        font-size: 0.8rem;
    }

    .accordion-header {
        padding: 1rem;
    }

    .bg-dashboard {
        border-radius: 12px;
    }
}


/* Video  */
.video-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 5rem;
}

.video-heading {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    color: #fff;
}

.video-heading h2 {
    font-size: 3.5rem;
    line-height: 1.2;
}


.video-card {
    position: relative;
    width: 100%;
    max-width: 1800px;
    aspect-ratio: 16 / 9;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-img {
    width: 30%;
    height: auto;
    /* keep aspect ratio */
    display: block;
    margin: 0 auto;
    /* centers horizontally */
}


.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);

}

.play-button {
    font-size: 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    width: 80px;
    height: 80px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.play-button:hover {
    background: rgba(255, 255, 255, 0.4);
}


/* Dashboard*/
.dashboard-slider-section {
    width: 100%;
    padding: 5rem 2rem;
    color: white;
    box-sizing: border-box;
}

.dashboard-container {
    max-width: 1440px;
    margin: auto;
    text-align: center;
}

.dashboard-heading {
    font-size: 3rem;
    margin: 3rem auto;
    max-width: 800px;
    text-align: center;
}

.dashboard-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    overflow: hidden;
    border-radius: 20px;
    padding: 0 80px;
    box-sizing: border-box;
}

.dashboard-slide {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.dashboard-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.dashboard-arrow:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-50%) scale(1.05);
}

.arrow-left {
    left: 20px;
}

.arrow-right {
    right: 20px;
}

@media (max-width: 990px) {
    .video-heading h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .video-heading h2 {
        font-size: 1.5rem;
    }

    .dashboard-arrow {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }

    .dashboard-heading {
        font-size: 1.5rem;
        text-align: center;
    }


    .dashboard-slider-wrapper {
        padding: 0 40px;
    }

    .arrow-left {
        left: 10px;
    }

    .arrow-right {
        right: 10px;
    }
}





/* Testimonials */
.testimonal-dashboard {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 5rem 7rem;
    background: rgba(200, 200, 200, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(10px);
    margin: 5rem 7rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
}

.testimonial-slider-section {
    margin: 60px auto;
    color: #fff;
    max-width: 1200px;
    padding: 0 2rem;
    box-sizing: border-box;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.slider-header h2 {
    font-size: 2.5rem;
}

.slider-controls {
    display: flex;
    gap: 10px;
}

.slider-controls button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 1.2rem;
    padding: 6px 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-controls button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-container {
    overflow: hidden;
    position: relative;
}

.card-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 5rem;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 6px;
}

.card {
    flex: 1 1 calc(30% - 2rem);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
    max-width: 390px;
    min-height: 280px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-5px);

    background: rgba(200, 200, 200, 0.2);
    backdrop-filter: blur(10px);

}


.card .top {
    display: flex;
    align-items: center;
    gap: 15px;
}

.card .top img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
}

.card .info h4 {
    margin: 0;
    font-size: 1.2rem;
}

.card .info p {
    font-size: 0.9rem;
    color: #ddd;
    margin: 3px 0 0;
}

.card .stars i {
    color: gold;
    margin-top: 10px;
    font-size: 1rem;
}

.card .desc {
    font-size: 1rem;
    margin-top: 10px;
    line-height: 1.6;
    color: #eee;
}

@media (max-width: 1200px) {
    .card {
        flex: 1 1 calc(45% - 2rem);

    }

}

@media (max-width: 768px) {

    .testimonal-dashboard {
        padding: 0.1rem 0.2rem;
        margin: 1rem 2rem;
    }

    .slider-header {
        text-align: center;

    }

    .slider-header h2 {
        font-size: 1.5rem;
    }

    .testimonial-slider-section {
        margin: 40px auto;
        padding: 0 1rem;
    }

    .slider-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .slider-controls {
        align-self: flex-end;
    }

    .card {
        flex: 1 1 100%;
        max-width: 100%;
        min-height: auto;
    }

    .card-track {
        gap: 20px;
    }
}

/*profile*/
.info-section {
    padding: 0 3rem;
    text-align: center;
    color: white;
}

.info-heading {
    font-size: 3rem;
    max-width: 1000px;
    margin: 0 auto 4rem;
    font-weight: 700;
    line-height: 1.4;
}

.info-heading .highlight {
    color: #b0ff6d;
}

.info-card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.info-card a {
    color: inherit;
}

.info-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    text-align: left;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-image {
    position: relative;
}

.info-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.info-image video {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.info-image embed {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.date-badge {
    position: absolute;
    bottom: -10px;
    left: 15px;
    background: #18e381;
    color: black;
    border-radius: 10px;
    padding: 5px 12px;
    font-weight: bold;
    text-align: center;
    font-size: 0.9rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.date-badge small {
    display: block;
    font-size: 0.7rem;
    opacity: 0.8;
}

.info-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.meta {
    font-size: 1rem;
    display: flex;
    gap: 1rem;
    color: #ccc;
}

.meta i {
    color: #fff;
    margin-right: 5px;
    padding-top: 2rem;
}

.info-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.info-content p {
    font-size: 1.2rem;
    color: #ddd;
    line-height: 1.5;
}

.read-more {
    margin-top: auto;
    align-self: flex-start;
    color: #fff;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    transition: 0.3s ease;
}

.read-more i {
    font-size: 0.85rem;
    transition: transform 0.2s ease;
}

.read-more:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .info-heading {
        font-size: 1.5rem;
    }

    .info-card-container {
        flex-direction: column;
        align-items: center;
    }

    .info-card {
        max-width: 100%;
    }

    .info-section {
        padding: 1rem 2rem;
    }
}


/*dashboard*/
.earn-dashboard {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2.5rem;
    padding: 7rem;
    margin: 5rem;
    margin-bottom: 0 !important;
    border-radius: 25px;
    background: rgba(200, 200, 200, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.earn-dashboard>div {
    flex: 1 1 30%;
    max-width: 32%;
    display: flex;
    flex-direction: column;
}

.earn-image {
    margin-bottom: 90px;
}

.eran-image {
    margin-top: 90px;
}

.earn-image img,
.eran-image img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
    object-fit: cover;
}

.earn-text {
    align-items: flex-start;
    text-align: left;
}

.earn-text h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    margin-bottom: 2rem;
}

.earn-text p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.earn-feauture {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.earn-feauture .icon img {
    width: 40px;
    height: 40px;
}

.earn-feauture h4 {
    margin: 0;
    font-size: 18px;
    color: white;
}

.earn-feauture p {
    margin: 5px 0 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
}

@media screen and (max-width: 1024px) {
    .earn-dashboard {
        padding: 3rem;
        margin: 2rem;
        gap: 2rem;
    }

    .earn-dashboard>div {
        max-width: 48%;
        flex: 1 1 48%;
    }

    .earn-image img,
    .eran-image img {
        max-height: 250px;
    }
}

@media screen and (max-width: 768px) {
    .earn-dashboard {
        flex-direction: column;
        padding: 2rem;
        margin: 1.5rem;
        gap: 2rem;
    }

    .earn-dashboard>div {
        max-width: 100%;
        flex: 1 1 100%;
        padding: 0;
    }

    .earn-image,
    .eran-image {
        margin: 0 2rem;
    }

    .earn-image img,
    .eran-image img {
        width: 100%;
        margin-bottom: 1.5rem;
        border-radius: 15px;
        max-height: 220px;
    }

    .earn-text {
        padding: 0 2rem;
    }

    .earn-text h2 {
        font-size: 32px;
    }

    .earn-text p {
        font-size: 18px;
    }

    .earn-feauture {
        flex-direction: row;
        gap: 10px;
    }

    .earn-feauture h4 {
        font-size: 16px;
    }

    .earn-feauture p {
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .earn-dashboard {
        padding: 1rem;
        margin: 1rem;
        gap: 1.5rem;
    }

    .earn-image,
    .eran-image {
        margin: 0 1.5rem;
    }

    .earn-image img,
    .eran-image img {
        width: 100%;
        max-height: 180px;
        margin-bottom: 1rem;
    }

    .earn-text {
        padding: 0 1.5rem;
    }

    .earn-text h2 {
        font-size: 26px;
        margin-bottom: 1.5rem;
    }

    .earn-text p {
        font-size: 16px;
    }

    .earn-feauture {
        gap: 8px;
    }

    .earn-feauture h4 {
        font-size: 15px;
    }

    .earn-feauture p {
        font-size: 14px;
    }

    .earn-feauture .icon img {
        width: 30px;
        height: 30px;
    }
}



/* Footer */
.footer {
    background-color: #0b0c12;
    color: #ccc;
    padding: 15rem 2.5rem 2rem;
    height: auto;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.footer-column {
    flex: 1 1 220px;
    min-width: 200px;
}

.footer-column h2,
.footer-column h3 {
    color: #fff;
    font-size: 25px;
    margin-bottom: 30px;
}

.footer-column p {
    padding-top: 1rem;
    line-height: 1.3;
    font-size: 18px;
    margin-bottom: 10px;
}

.read-more {
    color: #00cc66;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    font-size: 20px;
    gap: 6px;
    text-decoration: none;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 20px;
}

.footer-column ul li a:hover {
    color: #fff;
}

.contact-info li {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.contact-info i {
    color: #00cc66;
    min-width: 20px;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-icons a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    background-color: #1b1c22;
    color: #ccc;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s ease;
}

.social-icons a:hover {
    background-color: #00cc66;
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #2c2d33;
    margin-top: 40px;
    text-align: center;
    padding-top: 20px;
    font-size: 20px;
    color: #777;
}


.cta-box {
    position: relative;
    margin: 0 7rem;
    max-width: 1500px;
    padding: 3rem 6rem;
    border-radius: 2rem;
    background-image: url("/images/locked-cta-img.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    transform: translateY(50%);
    z-index: 10;
}

.cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: #fff;
    text-align: left;
}

.cta-message {
    max-width: 60%;
}

.cta-message h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-message p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ddd;
}

.cta-actions {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px;
    flex: 1;
}

.cta-primary-btn,
.cta-secondary-btn {
    padding: 1rem 2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-primary-btn {
    background: #00cc66;
    color: #fff;
    border: none;
}

.cta-secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid #ccc;
}

.cta-btn-inner {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-primary-btn:hover,
.cta-secondary-btn:hover {
    background: #00cc66;
    color: #fff;
    border-color: transparent;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

@media (max-width: 991px) {
    .cta-box {
        padding: 4rem 3rem;
    }

    .footer {
        padding: 14rem 2rem 2rem;
    }

    .footer-column ul li a,
    .contact-info li,
    .read-more {
        font-size: 16px;
    }
}

@media (max-width: 770px) {
    .cta-box {
        padding: 3rem 2rem;
        flex-direction: column;
        transform: none;
        margin-bottom: 3rem;
        text-align: center;
    }

    .cta-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .cta-message {
        max-width: 100%;
    }

    .cta-actions {
        justify-content: center;
        gap: 1.5rem;
    }

    .footer {
        padding: 4rem 20px 20px;
        text-align: center;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-column {
        flex: 1 1 100%;
        min-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .read-more {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        text-align: center;
        font-size: 12.5px;
    }

    .footer-column h2,
    .footer-column h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .footer-column p,
    .footer-column ul li a,
    .contact-info li {
        font-size: 12.5px;
    }

    .footer-column ul li {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
        gap: 10px;
        margin-top: 10px;
    }

    .contact-info {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        padding-left: 0;
    }

    .contact-info li {
        justify-content: center;
        text-align: center;
    }

    .footer-bottom {
        font-size: 11.5px;
        margin-top: 30px;
        text-align: center;
    }
}

@media (max-width: 580px) {
    .footer {
        padding: 40px 20px 20px;
        text-align: center;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-column {
        flex: 1 1 100%;
        min-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;

    }

    .read-more {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        text-align: center;
    }

    .footer-column h2,
    .footer-column h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .footer-column p,
    .footer-column ul li a,
    .contact-info li,
    .read-more {
        font-size: 12.5px;
    }

    .footer-column ul li {
        text-align: center;
    }

    .read-more {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
        gap: 10px;
        margin-top: 10px;
    }

    .contact-info {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        padding-left: 0;
    }

    .contact-info li {
        justify-content: center;
        text-align: center;
    }

    .footer-bottom {
        font-size: 11.5px;
        margin-top: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cta-box {
        padding: 2rem 1.5rem;
    }

    .cta-message h2 {
        font-size: 1.5rem;
    }

    .cta-message p {
        font-size: 0.9rem;
    }

    .cta-primary-btn,
    .cta-secondary-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .footer-column p,
    .footer-column ul li a,
    .contact-info li {
        font-size: 11.5px;
    }

    .footer-bottom {
        font-size: 10.5px;
    }
}



@media (max-width: 1024px) {
    .cta-box {
        padding: 3rem 4rem;

    }

    .cta-message h2 {
        font-size: 1.75rem;
    }

    .cta-message p {
        font-size: 0.95rem;
    }

}

@media (max-width: 768px) {
    .cta-box {
        padding: 2rem;
        margin: 2rem 2rem;
        transform: none;
    }

    .cta-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        text-align: left;
    }

    .cta-message {
        max-width: 100%;
    }

    .cta-message h2 {
        font-size: 1.5rem;
    }

    .cta-message p {
        font-size: 0.9rem;
    }

    .cta-actions {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .cta-primary-btn,
    .cta-secondary-btn {
        width: 100%;
        text-align: center;
    }
}


@media (max-width: 480px) {
    .cta-box {
        padding: 2rem;
        margin: 2rem 2rem;
        transform: none !important;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(102, 100, 100, 0.1);
        backdrop-filter: blur(12px);
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 1.5rem 0;
        border-radius: 10px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

    .nav-part2 {
        display: none;
    }

    .login-mobile-view {
        display: block;
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .about {
        padding: 4rem;
        margin: 3rem;
    }

    .how-it-works {
        padding: 3rem 4rem;
    }
}

@media (max-width: 992px) {
    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step {
        max-width: 100%;
        width: 100%;
    }

    .how-it-works {
        padding: 3rem 2rem;
    }

    .video-wrapper {
        margin: 3rem 2rem;
    }

    .container {
        padding: 0 20px;
    }
}

/*  */
/* body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f4f4f4;
    height: 100vh;
    overflow: hidden;
}


/* Overlay */
..overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Slightly lighter so blur is visible */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;

    backdrop-filter: blur(6px);
    /* This is the blur magic */
    -webkit-backdrop-filter: blur(6px);
    /* Safari support */
}

.blurred {
    filter: blur(6px);
    pointer-events: none;
    /* Prevent interactions with blurred background */
}


.popup {
    position: absolute;
    /* Absolute positioning */
    top: 50%;
    /* Move to middle vertically */
    left: 50%;
    /* Move to middle horizontally */
    transform: translate(-50%, -50%);
    /* Perfect centering */

    background: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 350px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    /* animation: fadeIn 0.3s ease; */
    /* transform: translate(-50%, -70%); */
    /* start slightly higher */
    /* opacity: 0; */
    transition: all 0.4s ease;

}

#invitationModal {
    width: 450px !important;

}

.popup h3 {
    margin-bottom: 5px;
    font-size: 20px;
    color: #333;
}

.popup P {
    margin-bottom: 15px;
    font-size: 15px;
    color: #2b2727;
}

.popup input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin: 10px 0 15px;
    font-size: 14px;
}

.popup .btn {
    background: #28a745;
    color: #fff;
    border: none;
    padding: 12px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s ease;
    width: 100%;
}

.popup .btn:hover {
    background: #218838;
}

.error {
    color: red;
    font-size: 0.85em;
    margin-top: -10px;
    margin-bottom: 10px;
    font-size: 8px;
    ;
    display: block;
}

.hidden {
    display: none;
}

.closeModal {
    display: inline-flex;
    /* Tailwind: inline-flex */
    align-items: center;
    /* Tailwind: items-center */
    justify-content: center;
    position: relative;
    top: -1.25rem;
    right: -9.25rem;

    background: none;
    border: none;
    font-size: 28px;
    font-weight: bold;
    color: #6b7280;
    /* Tailwind: text-gray-500 */
    height: 2rem;
    /* Tailwind: h-8 */
    width: 2rem;
    /* Tailwind: w-8 */
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease, transform 0.15s ease;
}

.closeModal:hover {
    color: #1f2937;
    /* Tailwind's gray-800 */
    transform: scale(1.1);
}

.closeModal:focus {
    outline: none;
}

@keyframes fadeIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}


.blurred {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

#disclaimerModal {
    width: 50%;
}

#disclaimerModal p {
    text-align: start;
}

.disclaimer-footer {
    color: #1b1c22;
    margin-bottom: 10px;
    margin-top: 10px;
}

.disclaimer-footer a {
    text-decoration: none;
}


.faq-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 5rem;
}

.vedio-wrapper video,
.vedio-wrapper img {

    align-items: center;
    margin-bottom: 15px;
}

.vedio-wrapper h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 15px;
}

.vedio-wrapper p {
    margin-top: 10px;
    margin-bottom: 10px;
}

.vedio-wrapper h4 {
    margin-top: 10px;
    /* margin-bottom: 10px; */
}


.circle6-video-list {
    list-style: none;
    padding-left: 0;
    /* margin: 0 auto; */
    font-size: 16px;
    color: #eaffef;
    width: 100%;
    max-width: 800px;
    box-sizing: border-box;
}

.circle6-video-list li {
    position: relative;
    padding-left: 26px;
    /* margin-bottom: 14px; */
    /* line-height: 1.6; */
}

.circle6-video-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 6px;
    background-color: #ffffff;
}


/* .faq-heading {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    color: #fff;
} */

.faq-wrapper h2 {
    font-size: 3.5rem;
    line-height: 1.2;
}

.d-flex {
    display: flex;
    /* makes it a flex container */
    flex-direction: row;
    /* children aligned in a row */
}

.d-flex button,
.d-flex a {
    margin-right: 10px;
    margin-left: 10lx;
}

/* Mobile responsive styles */
@media (max-width: 640px) {
    #disclaimerModal {
        width: 100%;
        /* take nearly full width */
        padding: 0.5rem;
        /* reduce padding */
        border-radius: 1rem;
        /* softer rounding */
        max-height: 85vh;
        /* fit smaller screens */
    }

    #disclaimerModal h2,
    #disclaimerModal h3 {
        font-size: 1rem;
        /* reduce heading size */
    }

    #disclaimerModal p {
        font-size: 0.9rem;
        /* smaller paragraph font */
        line-height: 1.4;
    }

}

/* Extra small devices */
@media (max-width: 400px) {
    #disclaimerModal {
        width: 99.5%;
        /* full width modal */
        height: 100%;
        /* full screen modal */
        border-radius: 0;
        /* remove rounded edges */
        max-height: 100vh;
        padding: 2px;
    }

    #disclaimerModal p {
        font-size: 0.85rem;
    }


}


.detail-video-img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    display: block;
    /* filter: blur(3px); */
    transform: scale(1.03);
    margin-bottom: 10px;
}

.play-btn-wrapper {
    position: relative;
    display: inline-block;
}


.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    /* adjust size */
    color: white;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 15px 20px;
    cursor: pointer;
    pointer-events: none;
    /* so the click still opens the PDF */
}

/* ✅ Extra-small screens (≤480px) */
@media (max-width: 480px) {
    .about {
        flex-direction: column;
        /* stack vertically */
        text-align: center;
        padding: 1.5rem 1rem;
    }

    .about-text,
    .about-img {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .about-feauture {
        flex-direction: column;
        /* icon on top of text */
        align-items: center;
        text-align: center;
    }

    .about-feauture .icon img {
        width: 40px;
        /* slightly smaller icon */
        margin-bottom: .5rem;
    }

    .about-text h2 {
        font-size: 1.4rem;
        /* scale heading */
        line-height: 1.3;
    }

    .about-text p {
        font-size: 0.95rem;
    }
}

/* ✅ New breakpoint for medium-large tablets & small laptops (≤915px) */
@media (max-width: 915px) {

    /* About section */
    .about {
        flex-direction: column;
        /* stack image and text */
        gap: 2rem;
        padding: 2rem 1.3rem;
    }

    .about-text h2 {
        font-size: 1.3rem;
        line-height: 1.35;
    }

    .about-text p {
        font-size: 1rem;
    }

    /* Info section */
    .info-heading {
        font-size: 1.8rem;
        padding: 0 20px;
        margin-bottom: 2rem;
    }

    .info-card-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .info-content h4 {
        font-size: 1.1rem;
    }

    .info-content p {
        font-size: 0.9rem;
    }
}

/* Tablets & down (≤768px) */
@media (max-width: 768px) {
    .info-heading {
        font-size: 1.6rem;
    }
}

/* Extra-small screens (≤576px) */
@media (max-width: 576px) {
    .info-heading {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }

    .info-card-container {
        grid-template-columns: 1fr;
        /* stack cards in single column */
        gap: 1rem;
    }

    .info-content h4 {
        font-size: 1rem;
    }

    .info-content p {
        font-size: 0.85rem;
    }

    .date-badge {
        font-size: 0.7rem;
        padding: 4px 8px;
    }

    .play-btn {
        font-size: 2rem;
    }
}