@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&display=swap');

/* CSS Variables & Theme */
:root {
    --background: hsl(270, 60%, 12%);
    --foreground: hsl(45, 100%, 96%);
    --card: hsl(270, 50%, 20%);
    --card-foreground: hsl(45, 100%, 96%);
    --primary: hsl(280, 80%, 55%);
    --primary-foreground: hsl(45, 100%, 96%);
    --secondary: hsl(45, 100%, 55%);
    --secondary-foreground: hsl(270, 60%, 12%);
    --muted: hsl(270, 30%, 25%);
    --muted-foreground: hsl(270, 20%, 70%);
    --accent: hsl(160, 70%, 45%);
    --accent-foreground: hsl(45, 100%, 96%);
    --border: hsl(280, 50%, 40%);
    --radius: 1rem;

    /* Candy colors */
    --candy-purple: hsl(280, 80%, 55%);
    --candy-pink: hsl(330, 90%, 65%);
    --candy-orange: hsl(30, 100%, 55%);
    --candy-yellow: hsl(45, 100%, 55%);
    --candy-green: hsl(160, 70%, 45%);
    --candy-blue: hsl(200, 90%, 55%);

    /* Gradients */
    --gradient-candy: linear-gradient(135deg, hsl(280, 80%, 55%), hsl(330, 90%, 65%));
    --gradient-golden: linear-gradient(135deg, hsl(45, 100%, 55%), hsl(30, 100%, 55%));
    --gradient-sunset: linear-gradient(180deg, hsl(270, 60%, 25%), hsl(280, 70%, 15%));

    /* Button icon colors */
    --btn-icon-color: var(--foreground);

    /* Shadows */
    --shadow-candy: 0 8px 32px hsla(280, 80%, 55%, 0.4);
    --shadow-glow: 0 0 40px hsla(280, 80%, 55%, 0.6);
    --shadow-golden: 0 8px 32px hsla(45, 100%, 55%, 0.4);
}


/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

* {
    font-family: "Fredoka", sans-serif;
}

body {
    font-family: "Fredoka", sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    /* base weight */
}

.container {
    max-width: 1470px;
    width: 100%;
    padding: 0 5rem;
    margin: 0 auto;
}

/* Ensure all text elements use Fredoka */
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
div,
a,
button,
input,
textarea,
select,
label {
    font-family: "Fredoka", sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    width: auto;
    user-select: none;
}

.eighteen_p p {
    font-size: 18px;
    opacity: 0.7;
    color: var(--foreground);
    text-align: center;
}

h2,
.title_h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: normal;
}

h3,
.title_h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
}

button,
a.btn {
    font-family: "Fredoka", sans-serif;
    cursor: pointer;
    border: none;
    outline: none;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes candy-fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0;
    }

    50% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0.2;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: translateX(-50%) translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }

}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px hsla(280, 80%, 55%, 0.4);
    }

    50% {
        box-shadow: 0 0 40px hsla(280, 80%, 55%, 0.8);
    }
}

@keyframes bounce-subtle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes wiggle {

    0%,
    100% {
        transform: rotate(-3deg);
    }

    50% {
        transform: rotate(3deg);
    }
}

/* Utility Classes */
.gradient-candy {
    background: var(--gradient-candy);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-golden {
    background: var(--gradient-golden);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-candy {
    background: var(--gradient-candy);
}

.bg-gradient-golden {
    background: var(--gradient-golden);
}

.bg-gradient-sunset {
    background: var(--gradient-sunset);
}

.shadow-candy {
    box-shadow: var(--shadow-candy);
}

.shadow-glow {
    box-shadow: var(--shadow-glow);
}

.shadow-golden {
    box-shadow: var(--shadow-golden);
}

/*************** Header ******************/

.header_main {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    align-items: center;
}

.header {
    position: absolute;
    z-index: 99;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
}

.header_social_links {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social_img img {
    width: 24px;
    height: 24px;
}

.header-button .btn {
    padding: 12px 24px;
}

.social_img a img,
.social_img a {
    transition: all ease-in-out 0.3s;
}

.social_img a:hover img {
    transform: scale(1.08);
}


/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            hsla(270, 60%, 12%, 0.7) 0%,
            hsla(270, 60%, 12%, 0.5) 50%,
            hsla(270, 60%, 12%, 1) 100%);
    z-index: 1;
}

.float-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    /* blur-xl */
    z-index: 1;
}

.float-1 {
    top: 80px;
    /* top-20 */
    left: 40px;
    /* left-10 */
    width: 64px;
    /* w-16 */
    height: 64px;
    /* h-16 */
    background: hsla(330, 90%, 65%, 0.3);
    /* bg-candy-pink/30 */
    animation: float 3s ease-in-out infinite;
}

.float-2 {
    top: 160px;
    /* top-40 */
    right: 80px;
    /* right-20 */
    width: 96px;
    /* w-24 */
    height: 96px;
    /* h-24 */
    background: hsla(280, 80%, 55%, 0.3);
    /* bg-candy-purple/30 */
    animation: float 3s ease-in-out infinite 0.5s;
    /* animate-float-delayed */
}

.float-3 {
    bottom: 160px;
    /* bottom-40 */
    left: 25%;
    /* left-1/4 */
    width: 80px;
    /* w-20 */
    height: 80px;
    /* h-20 */
    background: hsla(30, 100%, 55%, 0.3);
    /* bg-candy-orange/30 */
    animation: float 3s ease-in-out infinite;
}

.float-4 {
    bottom: 240px;
    /* bottom-60 */
    right: 33%;
    /* right-1/3 */
    width: 64px;
    /* w-16 */
    height: 64px;
    /* h-16 */
    background: hsla(45, 100%, 55%, 0.3);
    /* bg-candy-yellow/30 */
    animation: float 3s ease-in-out infinite 0.5s;
    /* animate-float-delayed */
}

.candy-particle {
    position: absolute;
    top: -10%;
    width: 32px;
    height: 32px;
    pointer-events: none;
    animation: candy-fall linear infinite;
    z-index: 2;
    will-change: transform;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Size variations (replacing text-xl classes) */
.candy-particle.text-2xl {
    width: 40px;
    height: 40px;
}

.candy-particle.text-3xl {
    width: 52px;
    height: 52px;
}

.candy-pink {
    background-image: url("/wp-content/uploads/2026/01/candy_pinkl.png");
}

.candy-green {
    background-image: url("/wp-content/uploads/2026/01/candy-_-green.png");
}

.candy-orange {
    background-image: url("/wp-content/uploads/2026/01/candy-_orange.png");
}

.candy-purple {
    background-image: url("/wp-content/uploads/2026/01/candy-purple.png");
}

.candy-red {
    background-image: url("/wp-content/uploads/2026/01/candy_red.png");
}

.candy-bomb {
    background-image: url("/wp-content/uploads/2026/01/candy_bomb.png");
}

.candy-blue {
    background-image: url("/wp-content/uploads/2026/01/candy_blue.png");
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-logo {
    width: 38.2%;
    max-width: 100%;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
    animation: bounce-subtle 2s ease-in-out infinite;
}

.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-tagline p {
    font-size: 1.50rem;
    color: var(--foreground);
    opacity: 0.9;
    margin-bottom: 1rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.features-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.feature-pill {
    padding: 10px 16px;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 400;
    backdrop-filter: blur(4px);
    border: 1px solid;
    display: flex;
    align-items: center;
    gap: 6px;
}

.features-icon {
    display: flex;
    width: 24px;
    aspect-ratio: 1/1;
    align-items: center;
    justify-content: center;
}

.pill-purple {
    background: hsla(280, 80%, 55%, 0.3);
    border-color: hsla(280, 80%, 55%, 0.5);
}

.pill-pink {
    background: hsla(330, 90%, 65%, 0.3);
    border-color: hsla(330, 90%, 65%, 0.5);
}

.pill-orange {
    background: hsla(30, 100%, 55%, 0.3);
    border-color: hsla(30, 100%, 55%, 0.5);
}

.pill-icon {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-right: 0.25rem;
    vertical-align: middle;
    flex-shrink: 0;
    color: var(--foreground);
}

.pill-icon svg {
    width: 100%;
    height: 100%;
    color: inherit;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* gap-4 */
    justify-content: center;
    align-items: center;
}

.cta-buttons a.btn.btn-hero.cmn_btn {
    pointer-events: none;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    outline: none;
    text-decoration: none;
    font-family: "Fredoka", sans-serif;
    border: none;
}

.btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.btn-icon {
    width: 1.5rem;
    height: 1.5rem;
    pointer-events: none;
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--foreground);
}

.btn-icon svg {
    color: inherit;
}

.btn-hero .btn-icon {
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.3s;
}

.btn-hero:hover .btn-icon,
.btn-golden:hover .btn-icon {
    transform: scale(1.1);
}

.btn-hero {
    background: var(--gradient-candy);
    color: var(--foreground) !important;
    box-shadow: var(--shadow-candy);
    animation: pulse-glow 2s ease-in-out infinite;
}

.btn-hero,
.btn-hero * {
    color: var(--foreground) !important;
}

.btn-hero:hover {
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
}

.btn-hero:active {
    transform: scale(0.95);
}

.cmn_btn {
    border-radius: 1rem;
    font-weight: 500;
    font-size: 20px;
    padding: 15px 30px;
    border-radius: 1rem;
}

.btn-golden {
    background: var(--gradient-golden);
    color: var(--secondary-foreground) !important;
    box-shadow: var(--shadow-golden);
}

.btn-golden,
.btn-golden * {
    color: var(--secondary-foreground) !important;
}

.btn-golden:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.btn-golden:active {
    transform: scale(0.95);
}

.btn-large {
    width: 100%;
}

@media (min-width: 640px) {
    .btn-large {
        width: auto;
    }
}

.btn-text {
    text-align: left;
}

.btn-label {
    font-size: 0.75rem;
    opacity: 0.8;
    display: block;
}

.btn-main-text {
    font-size: 1.125rem;
    font-weight: 700;
    margin-top: -0.25rem;
    display: block;
}

/* Download section button icons are larger */
.download-buttons .btn-icon {
    width: 1.75rem;
    height: 1.75rem;
    transition: transform 0.3s;
}

.download-buttons .btn:hover .btn-icon {
    transform: scale(1.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 1s infinite;
}

.scroll-mouse {
    width: 2rem;
    height: 3rem;
    border-radius: 9999px;
    border: 2px solid;
    border-color: hsla(45, 100%, 96%, 0.3);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem;
}

.scroll-dot {
    width: 0.5rem;
    height: 0.75rem;
    border-radius: 9999px;
    background: hsla(45, 100%, 96%, 0.5);
    animation: pulse 1s ease-in-out infinite;
}

/* Features Section */

.features-section {
    padding: 6rem 0;
    background: var(--gradient-sunset);
    position: relative;
    overflow: hidden;
}

.feature_top {
    padding-bottom: 50px;
    text-align: center;
}

.feature_top .title_h2 {
    padding-bottom: 16px;
}

.features-section::before,
.features-section::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 8rem;
    pointer-events: none;
}

.features-section::before {
    top: 0;
    background: linear-gradient(to bottom, var(--background), transparent);
}

.features-section::after {
    bottom: 0;
    background: linear-gradient(to top, var(--background), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    position: relative;
    padding: 1.5rem;
    border-radius: 1rem;
    background: hsla(270, 50%, 20%, 0.5);
    backdrop-filter: blur(4px);
    border: 2px solid #773399;
    transition: all 0.3s ease-in-out;
}

.feature-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-candy);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: var(--gradient-candy);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon img {
    width: 34px;
    aspect-ratio: 1/1;
}

.feature-card:hover .feature-icon {
    animation: wiggle 1s ease-in-out infinite;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
}


.feature-card p {
    color: var(--foreground);
    opacity: 0.7;
    /* text-foreground/70 */
}

/* Screenshot Section */

.screenshots-section {
    padding: 6rem 0;
    background: var(--background);
    position: relative;
    overflow: hidden;
}

.carousel-wrapper {
    position: relative;
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    overflow: hidden;
}

.carousel-track-container {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    min-height: 100%;
}

.carousel-track {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    left: 50%;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.carousel-item {
    width: 280px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.5s ease;
    border-radius: 1.2rem;
    overflow: visible;
    opacity: 0;
    transform: scale(0.9);
    filter: blur(1px);
    pointer-events: none;
}

.carousel-item.active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
    z-index: 5;
    pointer-events: auto;
}

.carousel-item.prev,
.carousel-item.next {
    opacity: 0.4;
    filter: blur(0);
    transform: scale(0.78);
    z-index: 4;
}

.slide-content {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide-content img,
.slide-content video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 1.5rem;
}

/* .phone-mockup-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 375px;
    aspect-ratio:375/785;
    z-index: 10;
    pointer-events: none;
    border-radius: 1.5rem;
    border: 4px solid hsla(280, 80%, 55%, 0.3);
    box-shadow: var(--shadow-candy);
} */


.carousel-item.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 375px;
    height: 100%;
    max-height: 785px;
    z-index: 5;
    pointer-events: none;
    border-radius: 1.5rem;
    border: 4px solid hsla(280, 80%, 55%, 0.3);
    box-shadow: var(--shadow-candy);
}

.video-control {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsla(270, 60%, 12%, 0.2);
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    z-index: 6;
}

.carousel-item.active .video-control:hover {
    background: hsla(270, 60%, 12%, 0.3);
}

.play-button {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--gradient-candy);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-candy);
    transition: transform 0.2s;
}

.play-button svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--foreground);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    z-index: 20;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--gradient-candy);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.carousel-prev {
    left: 1rem;
}

.carousel-next {
    right: 1rem;
}

@media (min-width: 768px) {
    .carousel-prev {
        left: 0;
    }

    .carousel-next {
        right: 0;
    }

    .carousel-item {
        width: 375px;
    }

    /*.phone-mockup-overlay {
        width: 306px;
    } */
}


.carousel-item.active .slide-content img {
    position: absolute;
    inset: 0;
}

.carousel-item.active .slide-content {
    aspect-ratio: 375/785;
}

.carousel-title,
.carousel-dots {
    text-align: center;
    margin-top: 1.5rem;
}

.carousel-title {
    margin: 0;
}

.carousel-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 10px;
    background: var(--muted);
    border: none;
    cursor: pointer;
    margin: 0 4px;
    padding: 0;
}

.carousel-dot.active {
    width: 2rem;
    background: var(--gradient-candy);
}

.carousel-dots {
    display: flex;
    justify-content: center;
}

/* Download Section */
.download-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: var(--gradient-sunset);
}

.download-section::before,
.download-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.download-section::before {
    top: 2.5rem;
    left: 2.5rem;
    width: 8rem;
    height: 8rem;
    background: hsla(280, 80%, 55%, 0.2);
}

.download-section::after {
    bottom: 2.5rem;
    right: 2.5rem;
    width: 10rem;
    height: 10rem;
    background: hsla(330, 90%, 65%, 0.2);
}

.download-content {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.download-logo {
    width: 20rem;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5));
    animation: bounce-subtle 2s ease-in-out infinite;
}

.download-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .download-title {
        font-size: 3rem;
        /* md:text-5xl */
    }
}

.download-description {
    font-size: 1.25rem;
    /* text-xl */
    opacity: 0.8;
    /* text-foreground/80 */
    margin-bottom: 1.5rem;
    /* mb-6 */
    max-width: 36rem;
    /* max-w-xl */
    margin-left: auto;
    margin-right: auto;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    color: #fff;
    text-decoration: none;
}
.stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.star {
    font-size: 24px;
    color: var(--secondary);
    fill: var(--secondary);
}

.rating-score {
    font-size: 1.125rem;
    /* text-lg */
    font-weight: 700;
    /* font-bold */
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .download-buttons {
        flex-direction: row;
    }
}

.free-badge {
    margin-top: 2rem;
}

.free-badge span {
    background: hsla(160, 70%, 45%, 0.2);
    color: var(--accent);
    border: 1px solid hsla(160, 70%, 45%, 0.3);
    width: max-content;
    margin: 0 auto;
}

/* Footer */
.footer {
    padding: 2rem 0;
    background: #1C0F2B;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer_social_links {
    width: max-content;
}

.footer-links .menu-footer-menu-container {
    margin: 0 auto;
}

.footer_social_links .social_img a {
    background: #301346;
    width: 50px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.footer_social_links .social_img a:hover img {
    transform: unset;
}

.footer-copyright p {
    font-size: 16px;
    opacity: 1;
}

.footer-links ul li a {
    position: relative;
}

.footer-links ul li a:hover::after {
    width: 100%;
}

.footer-links ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    background: #fffaeb;
    transition: all ease-in-out 0.4s;
    height: 1px;
    left: 0;
    bottom: -2px;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
    }
}

.footer-copyright {
    color: var(--foreground);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-link {
    color: var(--foreground);
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--primary);
}

.heart {
    color: var(--candy-pink);
    fill: var(--candy-pink);
}

.screenshots-section .title_h2 {
    text-align: center;
}

.screenshot_description {
    padding: 20px 0 0px;
}

.play-button svg {
    fill: #fff;
}

.footer-links ul {
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-links ul li a {
    font-size: 16px;
    color: var(--foreground);
    text-decoration: none;
    transition: all ease-in-out 0.3s;
}

.footer-links ul li a:hover {
    opacity: 1;
}

.feature-pill img {
    width: 24px;
}

.feature-pills {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    align-items: center;
}

.feature_mb,
.banner_mb {
    display: none;
}

/********* blog ********************/

.blog_section {
    padding: 5rem 0;
}

.blog_title {
    text-align: center;
}

.blog_title .title_h2 {
    padding-bottom: 16px;
}

.blog_row {
    max-width: 1076px;
    margin: 75px auto 0;
}

.blog_slide {
    display: flex !important;
    flex-direction: column !important;
    background: #341652;
    border: 3px solid #6C3095;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 0px 20px 0px rgba(114, 23, 177, 0.5);
}

.blog_card_content {
    padding: 10px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog_card_title a {
    color: #fff;
    text-decoration: none;
    pointer-events: none;
}

.blog_card_description p {
    font-weight: 400;
    opacity: 0.8;
}

.blog_card_img a {
    position: relative;
    padding-top: 66.135%;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
}

.blog_card_img a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.blog_btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: #fff;
    text-decoration: none;
    background: #A76CE3;
    border: 1px solid #6C3095;
    transition: all ease-in-out 0.4s;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 500;
}

.blog_btn a:hover {
    background: transparent;
}

.blog-button-next svg path,
.blog-button-prev svg path {
    fill: #fff !important;
}

.blog-button-next,
.blog-button-prev {
    cursor: pointer !important;
    background: var(--gradient-candy);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    transform: translateY(-50%);
}

.blog-button-next svg,
.blog-button-prev svg {
    width: 20px !important;
    height: 20px !important;
}

/*********** news letter *****************/

.news_letter_section {
    /* background: var(--gradient-sunset); */
    padding: 5rem 0;
    background: #231034;
}

.letter_gift {
    background: #301346;
    width: 50px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
}

.news_letter_title {
    text-align: center;
    padding: 16px 0;
}

.news_letter_descripiton p {
    text-align: center;
    font-weight: 400;
    opacity: 0.8;
}

.news_letter_descripiton p span {
    color: #e144ad;
    font-weight: 700;
}

.gift-form form {
    max-width: 650px;
    margin: 0 auto;
}

.gift-form form .form_row p {
    display: flex;
    gap: 16px;
    align-items: stretch;
    flex-wrap: wrap;
}

.gift-form form .form_row p br {
    display: none;
}

.gift-form form .form_row p span input {
    width: 100%;
    background: #1f0c31;
    outline: none !important;
    box-shadow: none !important;
    padding: 12px 25px;
    border: 1px solid #6c2d8e;
    border-radius: 16px;
    height: auto;
    line-height: normal;
    font-size: 18px;
    color: white;
}

.gift-form form .form_row p span input:-webkit-autofill,
.gift-form form .form_row p span input:-webkit-autofill:hover,
.gift-form form .form_row p span input:-webkit-autofill:focus,
.gift-form form .form_row p span input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #1f0c31 inset !important;
    -webkit-text-fill-color: #FFFFFF !important;
    transition: background-color 5000s ease-in-out 0s;
}

.gift-form form .form_row p span {
    flex: 1;
    min-width: 65%;
}

.gift-form form .form_row p .cmn_btn {
    width: max-content;
    font-size: 18px;
    padding: 12px 24px;
}

.wpcf7-spinner {
    display: none;
}

.form_row {
    margin: 20px 0;
}

.gift-form form .form_row p span.wpcf7-not-valid-tip {
    position: absolute;
    margin: 0;
    font-size: 16px;
    line-height: normal;
}

.wpcf7-response-output {
    margin: 0 0 10px !important;
}

.gift-form_description p {
    text-align: center;
    opacity: 0.8;
}

.gift-form .dscf7-captcha-container {
    background: transparent;
    border: 1px solid #6c2d8e;
    margin: 20px auto 0;
    width: 50%;
    padding: 20px 15px;
}

.gift-form .dscf7-captcha-container img.dscf7_captcha_icon {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(194deg) brightness(107%) contrast(100%);
}

.gift-form .dscf7-captcha-container span.wpcf7-form-control-wrap input {
    height: auto;
    outline: none !important;
    box-shadow: none !important;
}

.wpcf7-response-output {
    text-align: center;
    border: 1px solid #6c2d8e !important;
    border-radius: 16px;
}

/************* cmn paage ****************/

.cmn_pages_banner {
    padding: 100px 0;
}

.cmn_banner_title {
    padding-bottom: 40px;
}

.cmn_pages_banner h2,
.cmn_pages_banner h3,
.cmn_pages_banner h4,
.cmn_pages_banner h5,
.cmn_pages_banner h6 {
    font-weight: 400;
}

.cmn_pages_banner h1 {
    font-weight: 500;
    font-size: 70px;
    line-height: normal;
}

.cmn_content_box {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cmn_pages_banner h4,
.cmn_pages_banner h5,
.cmn_pages_banner h6 {
    font-size: 20px;
}

.cmn_content_box p {
    font-size: 18px;
}

.cmn_content_box ul,
.cmn_content_box ol {
    list-style-position: inside;
}

.cmn_content_box li:not(:last-child) {
    padding-bottom: 12px;
}

.cmn_content_box li {
    line-height: normal;
    font-size: 18px;
}

.cmn_page_btn {
    margin-bottom: 20px;
    display: none;
}

.cmn_content_box p a {
    color: var(--white);
}

.cmn_content_box p:not(:last-child) {
    padding-bottom: 12px;
}

.cmn_pages_banner h3 {
    padding-bottom: 16px;
    font-weight: 500;
    font-size: 26px;
}

/************ blog details ******************/

.blog-card-top-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    aspect-ratio: 16/9;
    border-radius: 20px;
}

.blog-card-top-img {
    margin: 50px 0;
}

.post-navigation-wrapper {
    margin-top: 30px;
}

.nav-links a {
    font-family: "Fredoka", sans-serif;
    cursor: pointer;
    border: none;
    outline: none;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-candy);
    color: var(--foreground) !important;
    box-shadow: var(--shadow-candy);
    animation: pulse-glow 2s ease-in-out infinite;
    padding: 15px 30px;
    border-radius: 20px;
    font-size: 20px;
}

.nav-links {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}

/********************Media Queries********************/


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

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

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

    .carousel-item.prev,
    .carousel-item.next {
        transform: scale(0.74);
    }

    .carousel-item.active {
        transform: scale(0.90);

    }

    .carousel-title {
        margin-top: -50px;
    }

    .hero-section {
        padding: 150px 0;
    }

    .cmn_pages_banner h1 {
        font-size: 64px;
    }
}

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

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

    .carousel-item.prev,
    .carousel-item.next {
        transform: scale(0.7);
    }

    .cmn_pages_banner h1 {
        font-size: 56px;
    }

}

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

    .container {
        padding: 0 4rem;
    }
}

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

    .carousel-item.prev,
    .carousel-item.next {
        opacity: 0;
    }

    .carousel-item.active {
        transform: scale(0.85);
    }

    .footer-content {
        flex-wrap: wrap;
        gap: 20px;
    }
}

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

    .container {
        padding: 0 3rem;
    }

    .cmn_pad {
        padding: 70px 0;
    }

    .carousel-track-container,
    .carousel-track {
        align-items: flex-start;
    }

    .carousel-title {
        margin-top: -80px;
    }

    .blog_row {
        margin-top: 50px;
    }

    .screenshots-section.cmn_pad {
        padding-top: 0;
    }

    .carousel-wrapper {
        padding-top: 0;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog_card_img a {
        padding-top: 65%;
    }

    .blog_row {
        position: relative;
    }

    .swiper.blog_card {
        max-width: 80% !important;
    }

    .scroll-indicator {
        display: none;
    }

    .cmn_pages_banner h1 {
        font-size: 50px;
    }
}

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

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-logo {
        width: 52%;
    }

    section.hero-section {
        padding: 0;
    }

    .header {
        display: none;
    }

    .feature_mb,
    .banner_mb {
        display: flex;
        justify-content: center;
        margin: 2rem auto 0;
    }


    .cmn_page_btn {
        display: flex;
    }

    .cmn_pages_banner h1 {
        font-size: 48px;
    }

    .cmn_pages_banner {
        padding: 70px 0;
    }

    .nav-links {
        grid-template-columns: repeat(1, 1fr);
    }

	.cmn_pages_banner h3 {
		font-size: 22px;
	}
}

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

    .container {
        padding: 0 2rem;
    }

    .hero-tagline p {
        font-size: 1.30rem;
    }

    .cmn_pad {
        padding: 50px 0;
    }

    .screenshots-section.cmn_pad {
        padding-top: 0;
    }

    .features-section::after {
        height: 5rem;
    }

    .swiper.blog_card {
        max-width: 70% !important;
    }

    .gift-form .dscf7-captcha-container {
        margin: 20px 0 0 0;
    }

    .gift-form form .form_row p .cmn_btn {
        width: 100%;
    }

    button,
    a.btn {
        width: 100%;
    }

    .carousel-item.active::after {
        width: 100%;
    }

    .carousel-item.active {
        transform: scale(1);
    }

    .carousel-title {
        margin-top: -20px;
    }

    .carousel-wrapper {
        padding: 16px 0;
    }

    .blog-card-top-img {
        margin: 30px 0;
    }

	.cmn_content_box p:not(:last-child) {
		padding-bottom: 10px;
	}

	.cmn_pages_banner h3 {
		padding-bottom: 14px;
	}

}

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

    .container {
        padding: 0 1.3rem;
    }

    h2,
    .title_h2 {
        font-size: 40px;
    }

    .eighteen_p p {
        font-size: 16px;
    }

    .hero-logo {
        width: 70%;
    }

    .features-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 1.2rem;
    }

    .feature-card {
        padding: 1.2rem;
    }

    .feature_top {
        padding-bottom: 30px;
    }

    .screenshot_description {
        padding: 16px 0 0px;
    }

    .download-description {
        font-size: 1.15rem;
    }

    .footer-links ul li a {
        font-size: 16px;
    }

    .carousel-container {
        max-width: 22rem;
    }

    .carousel-nav {
        top: 45%;
    }

    .play-button {
        width: 4rem;
        height: 4rem;
    }

    .features-section::before,
    .features-section::after {
        height: 4rem;
    }
	
	.cmn_pages_banner h3 {
		font-size: 20px;
	}
	
    .cmn_pages_banner h4,
    .cmn_pages_banner h5,
    .cmn_pages_banner h6 {
        font-size: 18px;
    }

    .cmn_pages_banner {
        padding: 50px 0;
    }

    .nav-links a {
        font-size: 16px;
        border-radius: 16px;
    }
	
	.cmn_banner_title {
		padding-bottom: 20px;
	}
}

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

    .hero-logo {
        width: 76%;
        margin: 0 auto 1rem;
    }

    .carousel-container {
        max-width: 18rem;
    }

    .carousel-nav {
        top: 42%;
    }

    .footer-links ul {
        flex-wrap: wrap;
        gap: 16px;
    }

    .carousel-prev {
        left: 0;
    }

    .carousel-next {
        right: 0;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .carousel-item.active {
        transform: scale(0.85);
    }

    .carousel-title {
        margin-top: -60px;
    }

    .carousel-title {
        margin-top: -60px;
    }

    .blog_card_content {
        padding: 10px 16px 16px;
    }

    .blog-button-next,
    .blog-button-prev {
        width: 40px !important;
        height: 40px !important;
    }

    .blog-button-next svg,
    .blog-button-prev svg {
        width: 16px !important;
        height: 16px !important;
    }

    .blog_row {
        margin-top: 20px;
    }

    .gift-form .dscf7-captcha-container {
        width: 100%;
    }

    .blog_slide {
        border-radius: 16px;
    }

    .cmn_pages_banner h1 {
        font-size: 40px;
    }

    .cmn_content_box li {
        font-size: 16px;
    }

    .blog-card-top-img {
        margin: 20px 0;
    }

    .blog-card-top-img img {
        border-radius: 16px;
    }

    .cmn_content_box {
        gap: 10px;
    }

}

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

    .footer-links ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
}