
html,
body {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}


::-webkit-scrollbar {
    width: 6px;
    height: 0px;
}

::-webkit-scrollbar-track {
    background: #040404;
}

::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 10px;
    transition: background 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #f93469;
}


html {
    scrollbar-width: thin;
    scrollbar-color: #2a2a2a #040404;
}


body {
    -ms-overflow-style: scrollbar;
}


.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

/* .glass-card[data-pc-bg] {
    --hover-bg: var(--pc-bg-url);
} */

.glass-card>* {
    position: relative;
    z-index: 2;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
    border-radius: inherit;
    transition: opacity 0.3s ease;
}

.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.gradient-text {
    background: linear-gradient(90deg, #f93469, #FF9252);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.neon-border-hover:hover {
    box-shadow: 0 0 15px rgba(249, 52, 105, 0.4);
    border-color: rgba(249, 52, 105, 0.6);
}

.neon-glow {
    box-shadow: 0 0 15px rgba(249, 53, 104, 0.4);
}

.neon-shadow:hover {
    box-shadow: 0 0 15px rgba(249, 52, 105, 0.4);
}

.neon-border {
    border: 1px solid rgba(249, 52, 105, 0.3);
}

.step-number {
    background: linear-gradient(135deg, #f93568, #ff6b35);
}

.text-shadow {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}


.pulse-ring {
    box-shadow: 0 0 0 0 rgba(249, 52, 105, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 52, 105, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(249, 52, 105, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(249, 52, 105, 0);
    }
}


.marquee-container {
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-container,
.img-marquee-wrapper {
    overflow-x: hidden !important;
    width: 100% !important;
}

.marquee-container button {
    width: 200px;
    height: 50px;
    background: #E83664;
    font-size: 20px;
    border-radius: 30px;
    margin: 20px 0;
}

.marquee-container button:hover {
    box-shadow: 0 0 15px rgba(249, 52, 105, 0.4);
    border-color: rgba(249, 52, 105, 0.6);
}

.img-marquee-wrapper {
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    overflow: hidden;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee {
    animation: marquee 30s linear infinite;
}

.animate-marquee:hover {
    animation-play-state: paused;
}

#main-header {
    background: rgba(0, 0, 0, 0);
    /* transition: all 0.3s ease; */
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 50 !important;
}

#main-header.scrolled {
    background: rgba(4, 4, 4, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.flex-grow {
    margin-top: 80px;
}

.page {
    transition: opacity 0.2s ease;
}

.hidden-page {
    display: none;
}

.nav-active {
    color: #f93469 !important;
    font-weight: 600;
}

.banner-card {
    width: 100%;
    min-height: 700px;
    height: auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-card .overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 60%);
}

.carousel-container {
    position: relative;
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    overflow-x: hidden !important;
}

.carousel-slide {
    display: none;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide .banner-card {
    width: 100%;
}


.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: min(50px, 6vw);
    height: min(50px, 6vw);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: background 0.2s;
    backdrop-filter: blur(4px);
    font-size: min(24px, 3vw);
}

.carousel-btn:hover {
    background: rgba(249, 52, 105, 0.8);
}

.carousel-btn.prev {
    left: clamp(8px, 2vw, 20px);
}

.carousel-btn.next {
    right: clamp(8px, 2vw, 20px);
}

.wishlist-section {
    padding: 2rem 1rem;
    width: 100%;
}


.wishlist-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);

    color: #fff;

    line-height: 1.2;

}


.wishlist-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(15px, 4vw, 60px);

    flex-wrap: wrap;

    margin-bottom: 2rem;
    padding: 0 0.5rem;
}

.wishlist-img-item {
    width: 260px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 2vw, 10px);
    background-color: #222;
    padding: 20px 10px;
    border: 2px solid #333333;
    border-radius: 20px;
}

.wishlist-img-item p {
    width: 100%;
    text-align: left;
    padding-left: 20px;
}


.wishlist-img {
    width: clamp(200px, 15vw, 200px);
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.2s ease;
}


@media (hover: hover) and (min-width: 768px) {
    .wishlist-img-item {
        transform: scale(1.05);
        /* box-shadow: 0 6px 16px rgba(249, 52, 105, 0.3); */
    }
}

.wishlist-btn {
    width: clamp(180px, 20vw, 240px);
    height: clamp(48px, 7vw, 56px);
    background: linear-gradient(90deg, #f93469, #FF9252);

    color: #fff;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: bold;
    border: none;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(249, 52, 105, 0.2);
}


.wishlist-btn:hover {
    box-shadow: 0 0 15px rgba(249, 52, 105, 0.4);
    transform: translateY(-2px);
}

.wishlist-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(249, 52, 105, 0.2);
}


.dot-indicators {
    position: absolute;
    display: flex;
    justify-content: center;
    gap: clamp(10px, 1.5vw, 12px);
    bottom: clamp(16px, 2.5vw, 20px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
}

.dot {
    width: clamp(10px, 1.5vw, 12px);
    height: clamp(10px, 1.5vw, 12px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.2s;
    z-index: 20;
}

.dot:hover {
    cursor: pointer;
}

.dot.active {
    background: #f93469;
    transform: scale(1.3);
    box-shadow: 0 0 10px #f93469;
}


.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    width: 100%;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    margin-bottom: 4rem !important;
}

.banner-content button:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}


#get-started-banner,
#view-demo-banner,
#create-wishlist,
#earn-commissions {
    width: clamp(240px, 80%, 300px);
    min-width: unset;
    height: clamp(48px, 7vw, 56px);
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    padding-left: clamp(1rem, 3vw, 2rem);
    padding-right: clamp(1rem, 3vw, 2rem);
    border-radius: 2rem;
    font-weight: bold;
    transition: all 0.2s ease;
}


.hardware-carousel-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hardware-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.hardware-carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.hardware-carousel-btn {
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    transition: background 0.2s;
    z-index: 10;
}

.hardware-carousel-btn:hover {
    background: #f93469 !important;
}

.hardware-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}

.hardware-dot.active {
    background: #f93469;
    transform: scale(1.3);
    box-shadow: 0 0 10px #f93469;
}


.hardware-carousel-container .glass-card {
    pointer-events: none;
}


.img-marquee-item {
    transition: all 0.4s ease;
    cursor: pointer;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    height: 240px;
    width: auto;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.img-marquee-item:hover {
    opacity: 1;
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(249, 52, 105, 0.4);
    border-color: rgba(249, 52, 105, 0.5);
}


.video-hover-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(3px);
    border-radius: 1rem;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    cursor: pointer;
    /* z-index: 20; */
}

#features-heading:hover .video-hover-overlay {
    opacity: 1;
}

.custom-play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, filter 0.2s;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.custom-play-btn img {
    width: 70px;
    height: auto;
    transition: transform 0.2s ease;
}


.video-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 20;
}

#feature-video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}


#close-video {
    z-index: 10;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#close-video:hover {
    background: #f93469;
    transform: scale(1.05);
}


.heading-content {
    position: relative;
    transition: opacity 0.3s ease;
}

.heading-content img {
    width: 32px;
    height: 32px;
    margin-top: 4px
}


.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    /* gap: 120px; */
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.footer-cta {
    display: flex;
    flex-direction: column;
    max-width: 600px;
}

.footer-left {
    max-width: 100%;
}

.footer-left #footer-logo {
    margin-bottom: 1.25rem;
}

.footer-left h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.footer-left p {
    color: #9ca3af;
    /* slate-400 */
    max-width: 24rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}


.footer-left .flex {
    gap: 1.5rem;
}

.footer-left a {
    color: #6b7280;
    /* slate-500 */
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.footer-left a:hover {
    color: #f93469 !important;
    transform: scale(1.1);
}


.footer-right nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 1rem;
}

.footer-right nav a {
    padding: 0.25rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: #9ca3af;
    /* slate-400 */
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-right nav a:hover {
    color: #f93469;
}


.copyright {
    /* padding-bottom: 1.25rem; */
    color: #ccc !important;
    font-weight: 400;
    text-align: center;
    margin-top: 3rem;
    font-size: 0.875rem;
}


#mobile-drawer.open {
    transform: translateX(0);
}

#mobile-drawer.open+#drawer-overlay {
    display: block;
}

#drawer-overlay:not(.hidden) {
    opacity: 1;
}


.mobile-nav-link.active {
    background: rgba(249, 52, 105, 0.1);
    color: #f93469;
    font-weight: 600;
}

.banner-support-text h3 {
    font-size: 20px;
}

.banner-support-text p {
    font-size: 14px;
}

.community-content img {
    width: 180px;
    height: 180px;
}

.join-discord-text {
    font-size: 16px;
}

.faq-nav-link.active {
    background: rgba(249, 52, 105, 0.1) !important;
    color: #f93469 !important;
    border-color: rgba(249, 52, 105, 0.2) !important;
}


#mobile-faq-modal {
    animation: fadeIn 0.3s ease-in-out;
    height: 80vh;
    margin-top: 20vh;
    background-color: #222;
    border-radius: 15px 15px 0 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.mobile-faq-link {
    color: #f1f5f9;
    transition: all 0.2s ease;
}


.mobile-faq-link:hover,
.mobile-faq-link.active {
    background: rgba(249, 52, 105, 0.1);
    color: #f93469;
}

.faq-section {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq-section.hidden {
    display: none;
    opacity: 0;
    transform: translateY(10px);
}


.faq-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    width: 100%;
}


.faq-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}


details[open] summary~* {
    animation: open 0.3s ease-in-out;
}

.discord-bg .bg-style {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 120px;
    height: 120px;
    object-fit: cover;
    z-index: -1;
}

.advanced-hardware {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    gap: 30px;
}


#contact-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    filter: grayscale(1);
}

@keyframes open {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (min-width: 1920px) {
    .banner-card {
        min-height: 800px;
    }

    .banner-content {
        max-width: 1400px;
        padding: 2.5rem;
    }

    #get-started-banner,
    #view-demo-banner,
    #create-wishlist,
    #earn-commissions {
        height: 60px;
        font-size: 1.3rem;
    }
}


@media (min-width: 1025px) {
    .banner-card {
        min-height: 700px;
    }

    .banner-content button {
        width: auto;
        min-width: 240px;
    }
}


@media (min-width: 769px) and (max-width: 1024px) {
    .banner-card {
        min-height: 500px;
    }

    .banner-content button {
        height: clamp(52px, 6vw, 56px);
        font-size: clamp(17px, 1.5vw, 18px);
    }

    .banner-card .absolute.inset-0.bg-black\/40 {
        background: rgba(0, 0, 0, 0.45);
    }
}

@media (min-width: 768px) {

    .features-scroll-container {
        width: 100%;
    }

    .features-scroll-wrapper {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px !important;
    }


    .faq-img.large {
        max-width: 500px;
    }


    .faq-img.medium {
        max-width: 400px;
    }

    .faq-img.small {
        max-width: 265px;
    }


    .faq-img.xsmall {
        max-width: 326px;
    }


    .faq-img-group {
        gap: 15px;
    }

    .footer-container {
        flex-direction: row;

        justify-content: flex-start;
        align-items: flex-start;
        gap: 7.5rem;
  
    }

    .footer-left {
        flex: 1;
        max-width: 500px;
    }

    .footer-right {
        flex: 0 0 auto;
    }


    .footer-right nav {
        display: grid;
        grid-template-columns: repeat(2, auto);
        row-gap: 2rem;
        column-gap: 8rem;
    }

    .wishlist-scroll-container {
        width: 100%;
    }

    .wishlist-scroll-wrapper {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        flex-wrap: wrap !important;
        gap: clamp(15px, 4vw, 60px) !important;
    }

    .download-scroll-container {
        width: 100% !important;
    }

    .download-scroll-wrapper {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.5rem !important;
    }

    .steps-scroll-container {
        width: 100% !important;
    }

    .steps-scroll-wrapper {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 3rem !important;

    }

    .glass-card {
        background-image: none !important;
        background-color: rgba(15, 15, 20, 0.75);
        background-size: cover;
        background-position: center;
        background-blend-mode: overlay;
        transition: background-image 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
    }


    .glass-card[data-pc-bg="./assets/pc-obs.png"]:hover {
        background-image: url('./assets/pc-obs.png') !important;
    }

    .glass-card[data-pc-bg="./assets/pc-gift.png"]:hover {
        background-image: url('./assets/pc-gift.png') !important;
    }

    .glass-card[data-pc-bg="./assets/pc-money.png"]:hover {
        background-image: url('./assets/pc-money.png') !important;
    }

    .glass-card[data-pc-bg="./assets/pc-chatting.png"]:hover {
        background-image: url('./assets/pc-chatting.png') !important;
    }


    .glass-card:hover {
        background-color: rgba(15, 15, 20, 0.5) !important;
        transform: translateY(-4px);
    }
}


@media (max-width: 768px) {


    .carousel-slide[data-index="0"] .banner-card,
    .carousel-slide[data-index="1"] .banner-card,
    .carousel-slide[data-index="2"] .banner-card {
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        min-height: 480px;
    }

    .carousel-slide[data-index="0"] .banner-card {
        background-image: url('./assets/banner-vibeConnect.webp') !important;
    }

    .carousel-slide[data-index="1"] .banner-card {
        background-image: url('./assets/banner-wishList.webp') !important;
    }

    .carousel-slide[data-index="2"] .banner-card {
        background-image: url('./assets/banner-comimisions.webp') !important;
    }

    .banner-card {
        min-height: 300px;
    }

    .banner-content {
        padding: 1.5rem 1rem;
        justify-content: center;
    }

    .banner-content h2 {
        font-size: clamp(2rem, 6vw, 2.5rem);

        line-height: 1.2;
        margin-bottom: 1rem;
        white-space: normal;
    }

    .banner-content h2 .text-primary {
        font-size: inherit;
    }

    .banner-content h2 br {
        display: none;
    }

    .banner-content p {
        font-size: clamp(0.9rem, 2vw, 1rem);

        margin-bottom: 1.5rem;
        max-width: 100%;
    }


    .banner-content .flex-col.sm\:flex-row {
        /* flex-direction: column; */
        gap: 0.75rem;
    }

    .banner-content button,
    .banner-content #create-wishlist,
    .banner-content #get-started-banner,
    .banner-content #view-demo-banner,
    .banner-content #earn-commissions {
        height: clamp(38px, 8vw, 56px);
        font-size: clamp(0.8rem, 2vw, 1.1rem);
        padding-left: clamp(1rem, 3vw, 1.5rem);
        padding-right: clamp(1rem, 3vw, 1.5rem);
        width: 50%;
    }

    #get-started-banner,
    #view-demo-banner {
        margin-bottom: 10rem !important;
    }

    #create-wishlist {
        margin-bottom: 12rem !important;
    }

    #earn-commissions {
        margin-bottom: 13rem !important;
    }

    .heading-content {
        padding-bottom: 60px;
    }

    .heading-content img {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 45px;
        height: 45px;
        object-fit: cover;
    }


    .carousel-btn {
        width: clamp(36px, 5vw, 44px);
        height: clamp(36px, 5vw, 44px);
    }

    .dot-indicators {
        gap: clamp(8px, 1.2vw, 10px);
        margin-top: 16px;
    }

    .dot {
        width: clamp(8px, 1.2vw, 10px);
        height: clamp(8px, 1.2vw, 10px);
    }

    .dot.active {
        transform: scale(1.2);
    }


    .banner-card .absolute.inset-0.bg-black\/40 {
        background: rgba(0, 0, 0, 0.5);
    }


    .img-marquee-item {
        height: 160px;
    }

    .features-scroll-container {
        width: 100%;
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
    }


    .features-scroll-wrapper {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 16px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        padding: 0 16px 20px !important;
        scroll-snap-type: x mandatory !important;

        -ms-overflow-style: none !important;
        scrollbar-width: none !important;
    }


    .features-scroll-wrapper::-webkit-scrollbar {
        display: none !important;
    }


    .features-scroll-wrapper .glass-card {
        flex: 0 0 82% !important;
        max-width: 82% !important;
        min-width: 305px !important;
        height: 260px !important;
        min-height: 216px !important;
        scroll-snap-align: start !important;
        margin: 0 !important;
        padding: 20px 10px;
        background-size: cover;
        background-position: center;
        background-blend-mode: overlay;
    }

    .features-scroll-wrapper .glass-card p {
        font-size: 14px;
    }

    .video-content {
        max-width: 100%;
    }

    .banner-support-text h3 {
        font-size: 16px;
    }

    .banner-support-text p {
        font-size: 12px;
    }

    #close-video {
        width: 36px;
        height: 36px;
    }

    #close-video .material-symbols-outlined {
        font-size: 24px;
    }

    .video-hover-overlay span {
        font-size: 3rem;
        padding: 0.5rem;
    }

    .custom-play-btn img {
        width: 48px;
        height: auto;
        transition: transform 0.2s ease;
    }


    .faq-img {
        max-width: 90%;
        margin: 0 auto;
    }


    .faq-img-container {
        padding: 15px 0;
    }


    .faq-img-group {
        gap: 8px;
        flex-wrap: wrap;
    }


    .faq-img {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .footer-right nav {
        grid-template-columns: repeat(2, 1fr);

        width: 100%;
    }

    .footer-left {
        max-width: 100%;
    }

    .copyright {
        font-size: 0.75rem;
        margin-top: 3rem;
    }

    footer {
        padding: 2rem 1rem;
    }

    .footer-logo {
        width: 100%;
        gap: 30px;
    }

    .footer-cta {
        max-width: 100%;
    }

    .footer-logo .flex.gap-8 {
        gap: 16px;
        flex-wrap: wrap;
    }

    .footer-logo .flex.gap-8 a span {
        font-size: 14px !important;
    }

    .footer-container>div:last-child {
        width: 100%;
    }

    .footer-container>div:last-child nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-container>div:last-child nav a {
        font-size: 1rem;
        padding: 4px 0;
    }

    .join-discord-text {
        font-size: 16px;
    }

    header .flex.items-center.gap-4 {
        display: none;
    }

    #mobile-drawer {
        z-index: 999;
    }

    #drawer-overlay {
        z-index: 55;
    }

    .community-content img {
        width: 130px;
        height: 130px;
    }

    .community-wrap {
        flex-direction: row-reverse !important;

        justify-content: space-between !important;
        padding: 20px !important;
        gap: 16px !important;
        align-items: center !important;
    }

    .community-wrap img {
        flex-shrink: 0 !important;
        width: 130px !important;
        height: 130px !important;
    }

    .community-wrap .banner-support-text {
        align-items: flex-start !important;
        text-align: left !important;
    }

    .wishlist-scroll-container {
        width: 100%;
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 auto !important;
    }


    .wishlist-scroll-wrapper {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 16px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        padding: 0 16px 20px !important;
        scroll-snap-type: x mandatory !important;


        -ms-overflow-style: none !important;
        scrollbar-width: none !important;
    }


    .wishlist-scroll-wrapper::-webkit-scrollbar {
        display: none !important;
    }


    .wishlist-scroll-wrapper .wishlist-img-item {
        flex: 0 0 82% !important;
        max-width: 82% !important;
        min-width: 280px !important;
        scroll-snap-align: start !important;
        margin: 0 !important;
    }

    .community-content {
        /* flex-direction: row-reverse !important; */
        justify-content: space-between !important;
        align-items: center !important;
        padding: 20px !important;
        gap: 16px !important;
    }

    .community-content img {
        width: 130px !important;
        height: 130px !important;
        flex-shrink: 0 !important;
    }

    .banner-support-text {
        flex: 1 !important;
    }

    .download-scroll-container {
        width: 100% !important;
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 auto !important;
    }


    .download-scroll-wrapper {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 16px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        padding: 0 16px 20px !important;
        scroll-snap-type: x mandatory !important;


        -ms-overflow-style: none !important;
        scrollbar-width: none !important;
    }


    .download-scroll-wrapper::-webkit-scrollbar {
        display: none !important;
    }


    .download-scroll-wrapper>div {
        flex: 0 0 82% !important;
        max-width: 82% !important;
        min-width: 305px !important;
        scroll-snap-align: start !important;
        margin: 0 !important;
    }

    .steps-scroll-container {
        width: 100% !important;
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 auto !important;
    }


    .steps-scroll-wrapper {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 16px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        padding: 0 16px 20px !important;
        scroll-snap-type: x mandatory !important;

        
        -ms-overflow-style: none !important;
        scrollbar-width: none !important;
    }

    
    .steps-scroll-wrapper::-webkit-scrollbar {
        display: none !important;
    }


    .steps-scroll-wrapper>div {
        flex: 0 0 82% !important;
        max-width: 82% !important;
        min-width: 280px !important;
        scroll-snap-align: start !important;
        margin: 0 !important;
    }

    .social-flex-container {
        flex-direction: column !important;

        gap: 12px !important;

    }

    .social-flex-container a {
        width: 100% !important;

    }

    .glass a,
    .glass button {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .glass a:active,
    .glass button:active {
        transform: scale(0.98);
    }

    .hardware-carousel-btn {
        width: 36px;
        height: 36px;
    }
}


@media (max-width: 480px) {
    .banner-card {
        min-height: 280px;
    }

    .banner-content h2 {
        font-size: clamp(1.8rem, 5vw, 2rem);
    }

    .banner-content p {
        font-size: clamp(0.85rem, 1.8vw, 0.9rem);
    }

    .img-marquee-item {
        height: 160px;
    }

    .wishlist-img-container {
        gap: 10px;
    }

    .wishlist-img {
        width: clamp(200px, 20vw, 200px);
    }

    .wishlist-btn {
        height: clamp(44px, 8vw, 48px);
        font-size: 0.9rem;
    }

    .footer-right nav {
        grid-template-columns: 1fr;

        gap: 0.75rem;
    }

    .footer-left .flex {
        gap: 1rem;
    }

    .footer-logo .flex.gap-8 {
        gap: 12px;
    }

    .footer-logo .flex.gap-8 a span {
        font-size: 12px !important;
    }

    .glass input,
    .glass select,
    .glass textarea {
        font-size: 16px;

    }
}


@media (max-width: 320px) {
    #mobile-drawer {
        width: 90vw !important;
        min-width: 260px !important;
    }
}


@media (min-width: 480px) and (max-width: 767px) {
    #mobile-drawer {
        width: 70vw !important;
        min-width: 360px !important;
    }
}


@media (max-width: 640px) {
    .banner-content button {
        min-height: clamp(38px, 9vw, 56px);
        touch-action: manipulation;
    }
}

@media (hover: hover) and (min-width: 768px) {
    .faq-img:hover {
        transform: scale(1.02);
        box-shadow: 0 6px 16px rgba(249, 53, 104, 0.1);
    }
}