/* ===== Google Style Reset ===== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Poppins',sans-serif;

    background:#0F172A;

    overflow-x:hidden;

}

/* Animated Background */

.background{

    position:fixed;

    inset:0;

    background:linear-gradient(
    -45deg,
    #7C3AED,
    #3B82F6,
    #06B6D4,
    #9333EA);

    background-size:400% 400%;

    animation:bg 15s ease infinite;

    z-index:-2;

}

@keyframes bg{

0%{background-position:0% 50%;}

50%{background-position:100% 50%;}

100%{background-position:0% 50%;}

}

/* Glow */

.background::after{

content:"";

position:absolute;

width:700px;

height:700px;

background:rgba(255,255,255,.08);

filter:blur(120px);

border-radius:50%;

top:-150px;

right:-120px;

}

/* Navbar */

nav{

width:90%;

margin:auto;

margin-top:25px;

padding:18px 30px;

display:flex;

justify-content:space-between;

align-items:center;

background:rgba(255,255,255,.08);

border:1px solid rgba(255,255,255,.1);

backdrop-filter:blur(20px);

border-radius:20px;

}

.logo{

font-size:34px;

font-weight:700;

letter-spacing:2px;

color:white;

}

.menu{

display:flex;

gap:35px;

}

.menu a{

text-decoration:none;

color:white;

font-weight:500;

opacity:.85;

transition:.3s;

}

.menu a:hover{

opacity:1;

color:#E0E7FF;

}

/* Hero */

.hero{

height:80vh;

display:flex;

justify-content:center;

align-items:center;

flex-direction:column;

padding:20px;

text-align:center;

}

.hero h1{

font-size:70px;

font-weight:700;

color:white;

line-height:1.2;

}

.hero p{

margin-top:18px;

font-size:20px;

color:white;

opacity:.85;

}

/* Search Box */

.search{

margin-top:40px;

display:flex;

width:900px;

max-width:95%;

background:rgba(255,255,255,.12);

backdrop-filter:blur(30px);

padding:12px;

border-radius:80px;

box-shadow:0 25px 60px rgba(0,0,0,.25);

}

.search input{

flex:1;

background:none;

border:none;

outline:none;

padding:18px;

font-size:18px;

color:white;

}

.search input::placeholder{

color:#E5E7EB;

}

.search button{

padding:18px 42px;

border:none;

border-radius:60px;

background:white;

color:#4F46E5;

font-size:17px;

font-weight:600;

cursor:pointer;

transition:.35s;

}

.search button:hover{

transform:translateY(-3px);

box-shadow:0 10px 25px rgba(0,0,0,.2);

}

/* Responsive */

@media(max-width:850px){

.hero h1{

font-size:42px;

}

.search{

flex-direction:column;

border-radius:24px;

}

.search button{

width:100%;

margin-top:10px;

}

nav{

flex-direction:column;

gap:18px;

}

.menu{

gap:20px;

}

}
.result-card{

width:700px;

max-width:95%;

margin:70px auto;

padding:35px;

background:rgba(255,255,255,.12);

backdrop-filter:blur(25px);

border-radius:25px;

text-align:center;

box-shadow:0 20px 50px rgba(0,0,0,.3);

}

.thumbnail{

width:100%;

border-radius:20px;

margin-bottom:20px;

}

.result-card h2{

color:white;

margin-bottom:10px;

}

.result-card p{

color:white;

margin-bottom:10px;

opacity:.9;

}

.download-btn{

width:100%;

padding:18px;

margin-top:25px;

background:#10B981;

color:white;

border:none;

border-radius:12px;

font-size:18px;

cursor:pointer;

transition:.3s;

}

.download-btn:hover{

background:#059669;

}

.back-btn{

width:100%;

padding:18px;

margin-top:15px;

background:#6366F1;

color:white;

border:none;

border-radius:12px;

font-size:18px;

cursor:pointer;

transition:.3s;

}

.back-btn:hover{

background:#4F46E5;

}
.loading-card{

width:500px;
max-width:90%;

margin:120px auto;

text-align:center;

background:rgba(255,255,255,.12);

padding:40px;

border-radius:25px;

backdrop-filter:blur(25px);

}

.loader{

width:80px;
height:80px;

margin:30px auto;

border:8px solid rgba(255,255,255,.2);

border-top:8px solid #8B5CF6;

border-radius:50%;

animation:spin 1s linear infinite;

}

@keyframes spin{

0%{
transform:rotate(0deg);
}

100%{
transform:rotate(360deg);
}

}
.download-box{

margin-top:30px;

display:flex;

flex-direction:column;

gap:15px;

}

.download-btn,
.hd-btn,
.mp3-btn,
.thumb-btn,
.back-btn{

width:100%;

padding:18px;

border:none;

border-radius:15px;

font-size:18px;

font-weight:bold;

cursor:pointer;

transition:.3s;

}

.download-btn{

background:#7C3AED;

color:white;

}

.download-btn:hover{

background:#6D28D9;

}

.hd-btn{

background:#2563EB;

color:white;

}

.mp3-btn{

background:#059669;

color:white;

}

.thumb-btn{

background:#EA580C;

color:white;

}

.back-btn{

background:#1F2937;

color:white;

}

.download-box span{

font-size:12px;

opacity:.8;

margin-left:8px;

}
/* ===== Result Card Upgrade ===== */

.result-card{

position:relative;

overflow:hidden;

border:1px solid rgba(255,255,255,.12);

transition:.35s;

}

.result-card:hover{

transform:translateY(-6px);

box-shadow:0 30px 80px rgba(0,0,0,.45);

}

.result-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:6px;

background:linear-gradient(
90deg,
#8B5CF6,
#3B82F6,
#06B6D4);

}

.thumbnail{

transition:.35s;

}

.thumbnail:hover{

transform:scale(1.02);

}

.download-btn,
.hd-btn,
.mp3-btn,
.thumb-btn,
.back-btn{

display:flex;

justify-content:center;

align-items:center;

gap:10px;

}

.download-btn:hover,
.hd-btn:hover,
.mp3-btn:hover,
.thumb-btn:hover,
.back-btn:hover{

transform:translateY(-2px);

box-shadow:0 15px 30px rgba(0,0,0,.25);

}

.hd-btn:disabled,
.mp3-btn:disabled,
.thumb-btn:disabled{

opacity:.65;

cursor:not-allowed;

}

.result-card h2{

font-size:28px;

margin-top:15px;

line-height:1.5;

}

.result-card p{

font-size:17px;

}
/* ========================= */
/* Loading Screen */
/* ========================= */

.loading-card{

    width:550px;
    max-width:90%;

    margin:120px auto;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(25px);

    padding:45px;

    border-radius:25px;

    text-align:center;

    color:white;

    box-shadow:0 20px 50px rgba(0,0,0,.35);

}

.loading-card h1{

    margin-bottom:20px;

}

.loader{

    width:80px;
    height:80px;

    margin:25px auto;

    border:8px solid rgba(255,255,255,.2);

    border-top:8px solid #8B5CF6;

    border-radius:50%;

    animation:spin 1s linear infinite;

}

@keyframes spin{

    0%{
        transform:rotate(0deg);
    }

    100%{
        transform:rotate(360deg);
    }

}

.progress{

    width:100%;

    height:18px;

    background:rgba(255,255,255,.15);

    border-radius:50px;

    overflow:hidden;

    margin-top:30px;

}

.progress-bar{

    width:0%;

    height:100%;

    background:linear-gradient(
        90deg,
        #7C3AED,
        #3B82F6
    );

    transition:width .2s;

}

#percent{

    margin-top:15px;

    font-size:22px;

    font-weight:bold;

}

#status{

    margin-top:10px;

    opacity:.9;

}
/* =========================
   NAWATIK BRAND HEADER
========================= */

.brand-header {
    width: 100%;
    padding: 22px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.025);
}

.brand-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-decoration: none;
}

.brand-logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 16px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 8px 25px rgba(124, 58, 237, 0.35),
        inset 0 1px 1px rgba(255, 255, 255, 0.15);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.brand-logo-link:hover .brand-logo {
    transform: rotate(-5deg) scale(1.08);
    box-shadow:
        0 12px 35px rgba(124, 58, 237, 0.55),
        0 0 30px rgba(59, 130, 246, 0.25);
}

.brand-text {
    text-align: left;
}

.brand-text h1 {
    margin: 0;
    font-size: 25px;
    font-weight: 900;
    letter-spacing: 1.5px;
    line-height: 1;
    background: linear-gradient(
        90deg,
        #a855f7,
        #7c3aed,
        #3b82f6
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-text span {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
}

@media (max-width: 600px) {
    .brand-header {
        padding: 18px 15px;
    }

    .brand-logo {
        width: 48px;
        height: 48px;
        border-radius: 13px;
    }

    .brand-text h1 {
        font-size: 21px;
    }

    .brand-text span {
        font-size: 10px;
    }
}
/* ========================================
   ULTRA HOME PAGE SECTIONS
======================================== */

.features-section,
.steps-section,
.faq-section {
    width: min(1200px, 92%);
    margin: 0 auto;
    padding: 110px 0 30px;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(14px);
}

.section-heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.section-heading p {
    max-width: 620px;
    margin: 18px auto 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 16px;
    line-height: 1.8;
}

.features-grid,
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card,
.step-card {
    position: relative;
    overflow: hidden;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 26px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.11),
            rgba(255, 255, 255, 0.045)
        );
    box-shadow:
        0 25px 65px rgba(15, 23, 42, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(22px);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.feature-card::before,
.step-card::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    top: -80px;
    right: -70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
    filter: blur(4px);
}

.feature-card:hover,
.step-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow:
        0 35px 80px rgba(15, 23, 42, 0.32),
        0 0 40px rgba(99, 102, 241, 0.2);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 24px;
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.13);
    font-size: 28px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.feature-card h3,
.step-card h3 {
    position: relative;
    margin: 0 0 14px;
    color: white;
    font-size: 22px;
    font-weight: 850;
}

.feature-card p,
.step-card p {
    position: relative;
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 1.75;
}

.step-card {
    padding-top: 85px;
}

.step-number {
    position: absolute;
    top: 25px;
    left: 30px;
    color: rgba(255, 255, 255, 0.18);
    font-size: 50px;
    font-weight: 950;
    line-height: 1;
}

.info-banner {
    width: min(1200px, 92%);
    margin: 110px auto 0;
    padding: 1px;
    border-radius: 32px;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.32),
        rgba(255, 255, 255, 0.06)
    );
    box-shadow:
        0 30px 80px rgba(15, 23, 42, 0.26),
        0 0 70px rgba(99, 102, 241, 0.19);
}

.info-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 55px;
    border-radius: 31px;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(255, 255, 255, 0.15),
            transparent 35%
        ),
        rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
}

.info-banner h2 {
    margin: 0;
    color: white;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 900;
    letter-spacing: -1px;
}

.info-banner p {
    max-width: 680px;
    margin: 17px 0 0;
    color: rgba(255, 255, 255, 0.69);
    line-height: 1.8;
}

.banner-button {
    flex-shrink: 0;
    padding: 17px 27px;
    border-radius: 16px;
    background: white;
    color: #4f46e5;
    text-decoration: none;
    font-weight: 850;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.18);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.banner-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.28);
}

.faq-container {
    display: grid;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.075);
    backdrop-filter: blur(18px);
    transition:
        border-color 0.3s ease,
        background 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
}

.faq-item summary {
    position: relative;
    padding: 23px 58px 23px 24px;
    color: white;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    color: white;
    font-size: 25px;
    font-weight: 400;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    margin: 0;
    padding: 0 24px 24px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
}

.site-footer {
    width: min(1400px, 94%);
    margin: 110px auto 25px;
    padding: 40px 45px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    background: rgba(10, 20, 45, 0.16);
    backdrop-filter: blur(24px);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 30px;
}

.footer-brand h2 {
    margin: 0;
    color: white;
    font-size: 27px;
    font-weight: 950;
    letter-spacing: 2px;
}

.footer-brand p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.58);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 22px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
}

.footer-bottom p {
    margin: 0;
}


/* ========================================
   MOBILE RESPONSIVE
======================================== */

@media (max-width: 850px) {
    .features-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .info-banner-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 38px 30px;
    }

    .footer-content,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 550px) {
    .features-section,
    .steps-section,
    .faq-section {
        width: 90%;
        padding-top: 75px;
    }

    .feature-card,
    .step-card {
        padding-left: 25px;
        padding-right: 25px;
    }

    .step-card {
        padding-top: 80px;
    }

    .info-banner {
        width: 90%;
        margin-top: 75px;
    }

    .site-footer {
        width: 90%;
        margin-top: 75px;
        padding: 30px 24px 20px;
    }
}
/* ==================================================
   NAWATIK ULTRA HOME PAGE
================================================== */

.home-page {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(59, 130, 246, 0.35),
            transparent 35%
        ),
        radial-gradient(
            circle at 85% 20%,
            rgba(139, 92, 246, 0.30),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            #061125 0%,
            #0a1740 50%,
            #10134a 100%
        );
    color: #ffffff;
    font-family: "Poppins", sans-serif;
}

.home-page *,
.home-page *::before,
.home-page *::after {
    box-sizing: border-box;
}

.home-page a {
    color: inherit;
}

.home-background {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.home-background::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );
    background-size: 60px 60px;
    mask-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.8),
            transparent 90%
        );
}

.home-orb {
    position: absolute;
    display: block;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
}

.home-orb-one {
    width: 450px;
    height: 450px;
    top: -150px;
    left: -120px;
    background: #2563eb;
}

.home-orb-two {
    width: 400px;
    height: 400px;
    top: 250px;
    right: -150px;
    background: #8b5cf6;
}

.home-orb-three {
    width: 350px;
    height: 350px;
    bottom: 50px;
    left: 30%;
    background: #06b6d4;
    opacity: 0.18;
}


/* Header */

.home-header {
    position: relative;
    z-index: 20;
    width: 100%;
    padding: 22px 5%;
}

.home-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1450px, 100%);
    min-height: 78px;
    margin: 0 auto;
    padding: 12px 18px 12px 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 23px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(22px);
}

.home-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    text-decoration: none;
    font-size: 25px;
    font-weight: 900;
    letter-spacing: 1.8px;
}

.home-brand-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.home-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.home-menu a {
    padding: 11px 15px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition:
        color 0.25s ease,
        background 0.25s ease;
}

.home-menu a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.09);
}

.home-nav-button {
    padding: 13px 22px;
    border-radius: 14px;
    background:
        linear-gradient(
            135deg,
            #8b5cf6,
            #3b82f6
        );
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(79, 70, 229, 0.33);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.home-nav-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 17px 38px rgba(79, 70, 229, 0.45);
}


/* Hero */

.home-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 760px;
    padding: 80px 5% 100px;
}

.home-hero-content {
    width: min(1150px, 100%);
    margin: 0 auto;
    text-align: center;
}

.home-hero-badge,
.home-section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 9px 15px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    backdrop-filter: blur(16px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 15px #34d399;
}

.home-hero h1 {
    max-width: 1000px;
    margin: 28px auto 0;
    color: #ffffff;
    font-size: clamp(48px, 7.5vw, 92px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -4px;
    text-shadow: 0 20px 55px rgba(0, 0, 0, 0.25);
}

.home-hero h1 span {
    display: block;
    background:
        linear-gradient(
            90deg,
            #a78bfa,
            #60a5fa,
            #22d3ee
        );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.home-hero-description {
    max-width: 720px;
    margin: 25px auto 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 18px;
    line-height: 1.8;
}


/* Download Box */

.home-download-wrapper {
    position: relative;
    width: min(1000px, 100%);
    margin: 48px auto 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.07);
    box-shadow:
        0 35px 85px rgba(0, 0, 0, 0.28),
        0 0 60px rgba(99, 102, 241, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
}

.home-download-form {
    display: flex;
    align-items: stretch;
    gap: 12px;
}

.home-input-area {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    padding: 9px 10px 9px 18px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 21px;
    background: rgba(255, 255, 255, 0.075);
    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.home-input-area.input-active {
    border-color: rgba(96, 165, 250, 0.6);
    background: rgba(255, 255, 255, 0.1);
    box-shadow:
        0 0 0 4px rgba(59, 130, 246, 0.09),
        0 0 30px rgba(59, 130, 246, 0.15);
}

.home-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 18px;
}

.home-input-area input {
    width: 100%;
    min-width: 0;
    padding: 15px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
}

.home-input-area input::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.home-paste-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 105px;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.home-paste-button:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.16);
}

.home-paste-button.pasted {
    background: rgba(16, 185, 129, 0.22);
    border-color: rgba(52, 211, 153, 0.4);
}

.home-download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-width: 185px;
    padding: 0 26px;
    border: 0;
    border-radius: 21px;
    background:
        linear-gradient(
            135deg,
            #8b5cf6,
            #4f46e5 45%,
            #2563eb
        );
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    box-shadow:
        0 18px 38px rgba(79, 70, 229, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        filter 0.3s ease;
}

.home-download-button:hover {
    transform: translateY(-4px);
    filter: brightness(1.08);
    box-shadow:
        0 24px 48px rgba(79, 70, 229, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.home-download-button:disabled {
    cursor: wait;
    opacity: 0.82;
}

.home-download-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 29px;
    height: 29px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 17px;
}

.home-button-spinner {
    width: 21px;
    height: 21px;
    border: 3px solid rgba(255, 255, 255, 0.25);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: home-spin 0.8s linear infinite;
}

@keyframes home-spin {
    to {
        transform: rotate(360deg);
    }
}


/* Hero Information */

.home-hero-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 28px;
    margin-top: 25px;
}

.home-hero-info span {
    color: rgba(255, 255, 255, 0.64);
    font-size: 13px;
    font-weight: 600;
}

.home-hero-info strong {
    margin-right: 5px;
    color: #34d399;
}

.home-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: min(750px, 100%);
    margin: 55px auto 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(18px);
}

.home-stat {
    position: relative;
    padding: 22px 18px;
}

.home-stat:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 25%;
    right: 0;
    width: 1px;
    height: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.home-stat strong {
    display: block;
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
}

.home-stat span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
}


/* General Sections */

.home-section {
    width: min(1250px, 90%);
    margin: 0 auto;
    padding: 115px 0 20px;
}

.home-section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.home-section-heading h2 {
    margin: 20px 0 0;
    color: #ffffff;
    font-size: clamp(34px, 4.5vw, 55px);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -2px;
}

.home-section-heading p {
    max-width: 650px;
    margin: 18px auto 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 16px;
    line-height: 1.8;
}


/* Feature Cards */

.home-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.home-feature-card,
.home-step-card {
    position: relative;
    overflow: hidden;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.09),
            rgba(255, 255, 255, 0.035)
        );
    box-shadow:
        0 25px 65px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.home-feature-card::after,
.home-step-card::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    top: -100px;
    right: -90px;
    border-radius: 50%;
    background: rgba(96, 165, 250, 0.13);
    filter: blur(8px);
}

.home-feature-card:hover,
.home-step-card:hover {
    transform: translateY(-9px);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow:
        0 35px 75px rgba(0, 0, 0, 0.28),
        0 0 40px rgba(79, 70, 229, 0.14);
}

.home-feature-icon,
.home-step-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.09);
    font-size: 27px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13);
}

.home-feature-card h3,
.home-step-card h3 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #ffffff;
    font-size: 21px;
    font-weight: 800;
}

.home-feature-card p,
.home-step-card p {
    position: relative;
    z-index: 2;
    margin: 13px 0 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 14px;
    line-height: 1.75;
}


/* Steps */

.home-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.home-step-card {
    padding-top: 80px;
}

.home-step-number {
    position: absolute;
    top: 24px;
    right: 27px;
    color: rgba(255, 255, 255, 0.08);
    font-size: 60px;
    font-weight: 900;
    line-height: 1;
}


/* Device Banner */

.home-device-banner {
    width: min(1250px, 90%);
    margin: 115px auto 0;
    padding: 1px;
    border-radius: 32px;
    background:
        linear-gradient(
            130deg,
            rgba(167, 139, 250, 0.7),
            rgba(96, 165, 250, 0.2),
            rgba(34, 211, 238, 0.5)
        );
    box-shadow:
        0 35px 85px rgba(0, 0, 0, 0.25),
        0 0 70px rgba(79, 70, 229, 0.18);
}

.home-device-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    padding: 55px;
    border-radius: 31px;
    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(255, 255, 255, 0.13),
            transparent 35%
        ),
        rgba(8, 17, 45, 0.92);
}

.home-device-content h2 {
    max-width: 720px;
    margin: 20px 0 0;
    color: #ffffff;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.14;
    letter-spacing: -1.5px;
}

.home-device-content p {
    max-width: 700px;
    margin: 17px 0 0;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.8;
}

.home-banner-button {
    flex-shrink: 0;
    padding: 17px 25px;
    border-radius: 16px;
    background: #ffffff;
    color: #4338ca;
    text-decoration: none;
    font-size: 14px;
    font-weight: 850;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.home-banner-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}


/* FAQ */

.home-faq-list {
    display: grid;
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
}

.home-faq-item {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(18px);
    transition:
        border-color 0.3s ease,
        background 0.3s ease;
}

.home-faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.075);
}

.home-faq-item summary {
    position: relative;
    padding: 22px 58px 22px 23px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 750;
    cursor: pointer;
    list-style: none;
}

.home-faq-item summary::-webkit-details-marker {
    display: none;
}

.home-faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 23px;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 25px;
    font-weight: 400;
}

.home-faq-item[open] summary::after {
    content: "−";
}

.home-faq-item p {
    margin: 0;
    padding: 0 23px 23px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    line-height: 1.75;
}


/* Footer */

.home-footer {
    width: min(1450px, 94%);
    margin: 120px auto 25px;
    padding: 45px 45px 25px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.035);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(22px);
}

.home-footer-top {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding-bottom: 35px;
}

.home-footer-brand {
    max-width: 450px;
}

.home-footer-brand p {
    margin: 17px 0 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 14px;
    line-height: 1.75;
}

.home-footer-links {
    display: flex;
    gap: 75px;
}

.home-footer-links > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.home-footer-links h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
}

.home-footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.25s ease;
}

.home-footer-links a:hover {
    color: #ffffff;
}

.home-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 23px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.38);
    font-size: 12px;
}


/* Responsive */

@media (max-width: 1000px) {
    .home-menu {
        display: none;
    }

    .home-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-download-form {
        flex-direction: column;
    }

    .home-download-button {
        min-height: 65px;
    }
}

@media (max-width: 800px) {
    .home-header {
        padding: 15px 4%;
    }

    .home-navbar {
        min-height: 68px;
        border-radius: 19px;
    }

    .home-brand {
        font-size: 20px;
    }

    .home-brand-logo {
        width: 41px;
        height: 41px;
    }

    .home-nav-button {
        padding: 11px 15px;
        font-size: 12px;
    }

    .home-hero {
        min-height: auto;
        padding: 80px 5% 70px;
    }

    .home-hero h1 {
        font-size: clamp(45px, 13vw, 72px);
        letter-spacing: -2.5px;
    }

    .home-hero-description {
        font-size: 15px;
    }

    .home-feature-grid,
    .home-steps-grid {
        grid-template-columns: 1fr;
    }

    .home-device-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 38px 30px;
    }

    .home-footer-top,
    .home-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .home-page {
        background:
            radial-gradient(
                circle at 50% 0%,
                rgba(59, 130, 246, 0.32),
                transparent 35%
            ),
            linear-gradient(
                145deg,
                #061125,
                #0a1740
            );
    }

    .home-hero {
        padding-left: 4%;
        padding-right: 4%;
    }

    .home-hero-badge {
        font-size: 10px;
    }

    .home-hero h1 {
        margin-top: 22px;
        font-size: 44px;
        line-height: 1.07;
    }

    .home-download-wrapper {
        margin-top: 35px;
        padding: 8px;
        border-radius: 24px;
    }

    .home-input-area {
        flex-wrap: wrap;
        padding: 10px;
        border-radius: 17px;
    }

    .home-link-icon {
        display: none;
    }

    .home-input-area input {
        width: calc(100% - 105px);
        padding: 13px 10px;
        font-size: 13px;
    }

    .home-paste-button {
        min-width: 98px;
        padding: 12px 11px;
        font-size: 12px;
    }

    .home-download-button {
        min-width: 100%;
        min-height: 59px;
        border-radius: 17px;
    }

    .home-hero-info {
        flex-direction: column;
        gap: 9px;
    }

    .home-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-stat:nth-child(2)::after {
        display: none;
    }

    .home-stat:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .home-section {
        width: 90%;
        padding-top: 85px;
    }

    .home-section-heading {
        margin-bottom: 38px;
    }

    .home-section-heading h2 {
        font-size: 34px;
        letter-spacing: -1.2px;
    }

    .home-feature-card,
    .home-step-card {
        padding-left: 25px;
        padding-right: 25px;
    }

    .home-step-card {
        padding-top: 75px;
    }

    .home-device-banner {
        width: 90%;
        margin-top: 85px;
    }

    .home-device-content h2 {
        font-size: 32px;
    }

    .home-banner-button {
        width: 100%;
        text-align: center;
    }

    .home-footer {
        width: 92%;
        margin-top: 90px;
        padding: 33px 24px 22px;
    }

    .home-footer-links {
        flex-direction: column;
        gap: 32px;
    }
}
/* ==================================================
   NAWATIK ULTRA RESULT PAGE
================================================== */

.result-page {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(37, 99, 235, 0.28),
            transparent 32%
        ),
        radial-gradient(
            circle at 90% 25%,
            rgba(139, 92, 246, 0.25),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #061125 0%,
            #091737 48%,
            #0d123d 100%
        );
    color: #ffffff;
    font-family: "Poppins", sans-serif;
}

.result-page *,
.result-page *::before,
.result-page *::after {
    box-sizing: border-box;
}

.result-background {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.result-background::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.023) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.023) 1px,
            transparent 1px
        );
    background-size: 65px 65px;
    mask-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.7),
            transparent 90%
        );
}

.result-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(85px);
    opacity: 0.38;
}

.result-orb-one {
    width: 420px;
    height: 420px;
    top: -180px;
    left: -100px;
    background: #2563eb;
}

.result-orb-two {
    width: 430px;
    height: 430px;
    top: 280px;
    right: -170px;
    background: #7c3aed;
}

.result-orb-three {
    width: 330px;
    height: 330px;
    bottom: -100px;
    left: 35%;
    background: #0891b2;
    opacity: 0.2;
}


/* Header */

.result-header {
    width: 100%;
    padding: 22px 5%;
}

.result-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1450px, 100%);
    min-height: 78px;
    margin: 0 auto;
    padding: 12px 17px 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 23px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(23px);
}

.result-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    text-decoration: none;
}

.result-brand-logo {
    width: 49px;
    height: 49px;
    object-fit: contain;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 28px rgba(99, 102, 241, 0.3);
}

.result-brand-text strong {
    display: block;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.result-brand-text span {
    display: block;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.result-nav-links {
    display: flex;
    align-items: center;
    gap: 7px;
}

.result-nav-links a {
    padding: 11px 15px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition:
        color 0.25s ease,
        background 0.25s ease;
}

.result-nav-links a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.result-new-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 13px 18px;
    border-radius: 14px;
    background:
        linear-gradient(
            135deg,
            #8b5cf6,
            #3b82f6
        );
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 750;
    box-shadow: 0 12px 30px rgba(79, 70, 229, 0.35);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.result-new-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 17px 38px rgba(79, 70, 229, 0.48);
}


/* Main Heading */

.result-main {
    width: min(1280px, 90%);
    margin: 0 auto;
    padding: 70px 0 30px;
}

.result-heading {
    max-width: 750px;
    margin: 0 auto 45px;
    text-align: center;
}

.result-ready-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 15px;
    border: 1px solid rgba(52, 211, 153, 0.22);
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.09);
    color: #a7f3d0;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.5px;
}

.result-ready-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 15px #34d399;
}

.result-heading h1 {
    margin: 21px 0 0;
    color: #ffffff;
    font-size: clamp(37px, 5vw, 59px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
}

.result-heading p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.53);
    font-size: 15px;
}


/* Main Container */

.result-container {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 25px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow:
        0 40px 95px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(26px);
}

.result-preview-section,
.result-details-section {
    min-width: 0;
}

.result-preview-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.result-thumbnail-wrapper {
    position: relative;
    min-height: 530px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    background: #050914;
}

.result-thumbnail {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 530px;
    object-fit: cover;
}

.result-thumbnail-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            transparent 45%,
            rgba(3, 7, 18, 0.85) 100%
        );
}

.result-video-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 13px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 13px;
    background: rgba(3, 7, 18, 0.6);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(15px);
}

.result-play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 29px;
    height: 29px;
    border-radius: 9px;
    background:
        linear-gradient(
            135deg,
            #8b5cf6,
            #3b82f6
        );
    font-size: 10px;
}

.result-duration-badge {
    position: absolute;
    right: 20px;
    bottom: 20px;
    padding: 10px 13px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 12px;
    background: rgba(3, 7, 18, 0.65);
    color: #ffffff;
    font-size: 12px;
    font-weight: 750;
    backdrop-filter: blur(15px);
}

.result-preview-note {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 17px;
    border: 1px solid rgba(52, 211, 153, 0.14);
    border-radius: 18px;
    background: rgba(16, 185, 129, 0.06);
}

.result-note-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 13px;
    background: rgba(52, 211, 153, 0.15);
    color: #6ee7b7;
    font-weight: 900;
}

.result-preview-note strong {
    display: block;
    color: #ffffff;
    font-size: 13px;
}

.result-preview-note span {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.46);
    font-size: 11px;
}


/* Details */

.result-details-section {
    padding: 23px 20px 20px 4px;
}

.result-video-header {
    padding: 7px 7px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.result-video-label {
    display: block;
    color: #818cf8;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 1.4px;
}

.result-video-header h2 {
    max-height: 110px;
    margin: 13px 0 19px;
    overflow: hidden;
    color: #ffffff;
    font-size: clamp(23px, 3vw, 34px);
    font-weight: 850;
    line-height: 1.35;
    letter-spacing: -0.8px;
}

.result-creator {
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.result-creator-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 14px;
    background:
        linear-gradient(
            135deg,
            rgba(139, 92, 246, 0.3),
            rgba(59, 130, 246, 0.22)
        );
    color: #ffffff;
    font-size: 17px;
    font-weight: 850;
}

.result-creator span {
    display: block;
    color: rgba(255, 255, 255, 0.38);
    font-size: 10px;
}

.result-creator strong {
    display: block;
    max-width: 350px;
    margin-top: 2px;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* Statistics */

.result-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
    margin-top: 20px;
}

.result-stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.035);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.result-stat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.055);
}

.result-stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    flex-shrink: 0;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.07);
    font-size: 17px;
}

.result-stat-card span {
    display: block;
    color: rgba(255, 255, 255, 0.37);
    font-size: 10px;
    font-weight: 600;
}

.result-stat-card strong {
    display: block;
    margin-top: 3px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
}


/* Download Section */

.result-download-section {
    margin-top: 22px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.025);
}

.result-download-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
}

.result-download-heading > div > span {
    display: block;
    color: #818cf8;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 1.2px;
}

.result-download-heading h3 {
    margin: 4px 0 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 750;
}

.result-secure-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 10px;
    border: 1px solid rgba(52, 211, 153, 0.13);
    border-radius: 10px;
    background: rgba(16, 185, 129, 0.06);
    color: #6ee7b7;
    font-size: 9px;
    font-weight: 750;
}

.result-buttons {
    display: grid;
    gap: 10px;
}

.result-download-form {
    margin: 0;
}

.result-option-button {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 71px;
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 17px;
    color: #ffffff;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition:
        transform 0.28s ease,
        filter 0.28s ease,
        box-shadow 0.28s ease;
}

.result-option-button:not(:disabled):hover {
    transform: translateY(-4px);
    filter: brightness(1.08);
}

.result-standard-button {
    background:
        linear-gradient(
            135deg,
            #8b5cf6,
            #6d28d9
        );
    box-shadow: 0 14px 30px rgba(109, 40, 217, 0.23);
}

.result-hd-button {
    background:
        linear-gradient(
            135deg,
            #2563eb,
            #0ea5e9
        );
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.22);
}

.result-mp3-button {
    background:
        linear-gradient(
            135deg,
            rgba(5, 150, 105, 0.29),
            rgba(16, 185, 129, 0.17)
        );
}

.result-thumbnail-button {
    background:
        linear-gradient(
            135deg,
            rgba(234, 88, 12, 0.3),
            rgba(249, 115, 22, 0.16)
        );
}

.result-disabled-button {
    opacity: 0.53;
    cursor: not-allowed;
}

.result-button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.13);
    font-size: 18px;
}

.result-button-content {
    display: block;
    min-width: 0;
    margin-left: 13px;
}

.result-button-content strong {
    display: block;
    font-size: 13px;
    font-weight: 800;
}

.result-button-content small {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.57);
    font-size: 9px;
    font-weight: 500;
}

.result-button-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-left: auto;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 16px;
}

.result-quality-badge,
.result-coming-badge {
    margin-left: auto;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.11);
    color: #ffffff;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.5px;
}

.result-back-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    min-height: 53px;
    margin-top: 13px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.result-back-button:hover {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
}

.result-processing {
    cursor: wait;
    opacity: 0.83;
}

.result-button-spinner {
    width: 23px;
    height: 23px;
    margin-left: 9px;
    border: 3px solid rgba(255, 255, 255, 0.25);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: result-spin 0.8s linear infinite;
}

@keyframes result-spin {
    to {
        transform: rotate(360deg);
    }
}


/* Help Cards */

.result-help {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.result-help-card {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.032);
    backdrop-filter: blur(18px);
}

.result-help-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    flex-shrink: 0;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.07);
    font-size: 18px;
}

.result-help-card strong {
    display: block;
    color: #ffffff;
    font-size: 12px;
}

.result-help-card p {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    line-height: 1.6;
}


/* Footer */

.result-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    width: min(1450px, 94%);
    margin: 90px auto 25px;
    padding: 27px 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 21px;
    background: rgba(255, 255, 255, 0.028);
    backdrop-filter: blur(18px);
}

.result-footer strong {
    display: block;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 1px;
}

.result-footer span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.37);
    font-size: 10px;
}

.result-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.34);
    font-size: 10px;
}


/* Responsive */

@media (max-width: 1050px) {
    .result-container {
        grid-template-columns: 1fr;
        max-width: 800px;
        margin: 0 auto;
    }

    .result-thumbnail-wrapper,
    .result-thumbnail {
        min-height: 500px;
    }

    .result-details-section {
        padding: 10px 8px 8px;
    }
}

@media (max-width: 800px) {
    .result-header {
        padding: 15px 4%;
    }

    .result-navbar {
        min-height: 68px;
        border-radius: 19px;
    }

    .result-nav-links {
        display: none;
    }

    .result-new-button {
        padding: 11px 13px;
        font-size: 10px;
    }

    .result-main {
        width: 92%;
        padding-top: 55px;
    }

    .result-heading h1 {
        font-size: 39px;
        letter-spacing: -1.3px;
    }

    .result-help {
        grid-template-columns: 1fr;
    }

    .result-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 550px) {
    .result-brand-logo {
        width: 42px;
        height: 42px;
    }

    .result-brand-text strong {
        font-size: 17px;
    }

    .result-brand-text span {
        display: none;
    }

    .result-new-button span {
        display: none;
    }

    .result-main {
        width: 94%;
        padding-top: 42px;
    }

    .result-heading {
        margin-bottom: 30px;
    }

    .result-heading h1 {
        font-size: 33px;
    }

    .result-heading p {
        font-size: 12px;
        line-height: 1.7;
    }

    .result-container {
        gap: 12px;
        padding: 9px;
        border-radius: 25px;
    }

    .result-thumbnail-wrapper,
    .result-thumbnail {
        min-height: 400px;
    }

    .result-thumbnail-wrapper {
        border-radius: 19px;
    }

    .result-video-badge {
        bottom: 13px;
        left: 13px;
    }

    .result-duration-badge {
        right: 13px;
        bottom: 13px;
    }

    .result-preview-note {
        padding: 14px;
    }

    .result-video-header {
        padding: 8px 4px 20px;
    }

    .result-video-header h2 {
        font-size: 23px;
    }

    .result-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .result-stat-card {
        padding: 11px;
    }

    .result-stat-icon {
        width: 37px;
        height: 37px;
        font-size: 14px;
    }

    .result-stat-card strong {
        font-size: 12px;
    }

    .result-download-section {
        padding: 14px;
    }

    .result-download-heading {
        align-items: flex-start;
    }

    .result-download-heading h3 {
        font-size: 13px;
    }

    .result-option-button {
        min-height: 67px;
        padding: 10px;
    }

    .result-button-icon {
        width: 41px;
        height: 41px;
    }

    .result-button-content {
        margin-left: 10px;
    }

    .result-button-content strong {
        font-size: 11px;
    }

    .result-button-content small {
        font-size: 8px;
    }

    .result-footer {
        width: 92%;
        margin-top: 65px;
        padding: 22px;
    }
}
/* ==================================================
   HD ADVERTISEMENT PAGE
================================================== */

.hd-ad-page {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(37, 99, 235, 0.32),
            transparent 35%
        ),
        radial-gradient(
            circle at 90% 30%,
            rgba(139, 92, 246, 0.28),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            #061125,
            #0a1740 55%,
            #101343
        );
    color: #ffffff;
    font-family: "Poppins", sans-serif;
}

.hd-ad-page *,
.hd-ad-page *::before,
.hd-ad-page *::after {
    box-sizing: border-box;
}

.hd-ad-background {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.022) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.022) 1px,
            transparent 1px
        );
    background-size: 60px 60px;
}

.hd-ad-container {
    position: relative;
    z-index: 2;
    width: min(820px, 92%);
    margin: 0 auto;
    padding: 45px 0 70px;
}

.hd-ad-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
    color: #ffffff;
    text-decoration: none;
    font-size: 23px;
    font-weight: 900;
    letter-spacing: 1.6px;
}

.hd-ad-brand img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 35px rgba(79, 70, 229, 0.4);
}

.hd-ad-card {
    padding: 38px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow:
        0 40px 95px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    text-align: center;
    backdrop-filter: blur(25px);
}

.hd-ad-badge {
    display: inline-flex;
    padding: 8px 14px;
    border: 1px solid rgba(96, 165, 250, 0.25);
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.1);
    color: #93c5fd;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 1.2px;
}

.hd-ad-card h1 {
    margin: 20px 0 0;
    color: #ffffff;
    font-size: clamp(30px, 5vw, 45px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1.4px;
}

.hd-ad-description {
    max-width: 550px;
    margin: 15px auto 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    line-height: 1.7;
}

.hd-ad-label {
    margin: 30px 0 8px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.hd-advertisement {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 250px;
    overflow: hidden;
    border: 1px dashed rgba(255, 255, 255, 0.14);
    border-radius: 21px;
    background: rgba(0, 0, 0, 0.18);
}

.hd-ad-placeholder {
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 25px;
    color: rgba(255, 255, 255, 0.3);
}

.hd-ad-placeholder span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.hd-ad-placeholder strong {
    font-size: 14px;
    font-weight: 600;
}

.hd-countdown-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
    text-align: left;
}

.hd-countdown-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 53px;
    height: 53px;
    flex-shrink: 0;
    border: 3px solid rgba(96, 165, 250, 0.25);
    border-top-color: #60a5fa;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    color: #ffffff;
    font-size: 17px;
    font-weight: 900;
}

.hd-countdown-box strong {
    display: block;
    color: #ffffff;
    font-size: 13px;
}

.hd-countdown-box p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
}

.hd-continue-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    min-height: 58px;
    margin-top: 18px;
    border: 0;
    border-radius: 17px;
    background:
        linear-gradient(
            135deg,
            #2563eb,
            #7c3aed
        );
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 16px 38px rgba(79, 70, 229, 0.3);
}

.hd-continue-button:disabled {
    cursor: wait;
    opacity: 0.55;
}

.hd-cancel-button {
    display: inline-block;
    margin-top: 19px;
    color: rgba(255, 255, 255, 0.48);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
}

.hd-cancel-button:hover {
    color: #ffffff;
}

.hd-button-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.25);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: hd-ad-spin 0.8s linear infinite;
}

@keyframes hd-ad-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 600px) {
    .hd-ad-container {
        width: 94%;
        padding-top: 25px;
    }

    .hd-ad-card {
        padding: 25px 17px;
        border-radius: 24px;
    }

    .hd-advertisement {
        min-height: 210px;
    }

    .hd-countdown-box {
        padding: 14px;
    }
}
.result-mp3-active-button {
    background:
        linear-gradient(
            135deg,
            #059669,
            #10b981
        );

    box-shadow:
        0 14px 30px rgba(16, 185, 129, 0.23);
}
.result-thumbnail-active-button {
    background:
        linear-gradient(
            135deg,
            #ea580c,
            #f97316
        );

    box-shadow:
        0 14px 30px rgba(249, 115, 22, 0.24);
}
/* ========================================
   NAWATIK PHOTO RESULT PAGE
======================================== */

.photo-page {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(219, 39, 119, 0.28),
            transparent 34%
        ),
        radial-gradient(
            circle at 88% 20%,
            rgba(37, 99, 235, 0.30),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            #061125,
            #0b1537 50%,
            #171039
        );
    color: white;
    font-family: "Poppins", sans-serif;
}

.photo-page *,
.photo-page *::before,
.photo-page *::after {
    box-sizing: border-box;
}

.photo-background {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.022) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.022) 1px,
            transparent 1px
        );
    background-size: 60px 60px;
}

.photo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1400px, 92%);
    margin: 22px auto 0;
    padding: 13px 17px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(22px);
}

.photo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
}

.photo-brand img {
    width: 49px;
    height: 49px;
    object-fit: contain;
    border-radius: 14px;
}

.photo-brand strong,
.photo-brand span {
    display: block;
}

.photo-brand strong {
    font-size: 21px;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.photo-brand span {
    color: rgba(255, 255, 255, 0.45);
    font-size: 10px;
}

.photo-new-button {
    padding: 13px 18px;
    border-radius: 14px;
    background: linear-gradient(
        135deg,
        #db2777,
        #7c3aed
    );
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
}

.photo-main {
    width: min(1100px, 90%);
    margin: 0 auto;
    padding: 75px 0;
}

.photo-heading {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}

.photo-ready-badge {
    display: inline-flex;
    padding: 9px 15px;
    border: 1px solid rgba(244, 114, 182, 0.25);
    border-radius: 999px;
    background: rgba(219, 39, 119, 0.1);
    color: #f9a8d4;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 1px;
}

.photo-heading h1 {
    margin: 20px 0 0;
    font-size: clamp(38px, 6vw, 61px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -2px;
}

.photo-heading p {
    max-width: 620px;
    margin: 16px auto 0;
    color: rgba(255, 255, 255, 0.54);
    line-height: 1.7;
}

.photo-result-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 25px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(25px);
}

.photo-preview {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border-radius: 23px;
    background: #050914;
}

.photo-preview img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.photo-count-badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(5, 9, 20, 0.75);
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(12px);
}

.photo-information {
    padding: 35px 25px;
}

.photo-label {
    color: #f472b6;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 1.4px;
}

.photo-information h2 {
    margin: 14px 0 22px;
    font-size: clamp(24px, 3vw, 35px);
    line-height: 1.35;
}

.photo-creator {
    display: flex;
    align-items: center;
    gap: 12px;
}

.photo-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    border-radius: 14px;
    background: linear-gradient(
        135deg,
        #db2777,
        #7c3aed
    );
    font-weight: 900;
}

.photo-creator span,
.photo-creator strong {
    display: block;
}

.photo-creator span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
}

.photo-creator strong {
    margin-top: 3px;
    font-size: 13px;
}

.photo-download-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 28px;
}

.photo-download-info div {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.035);
}

.photo-download-info strong,
.photo-download-info span {
    display: block;
}

.photo-download-info strong {
    font-size: 19px;
}

.photo-download-info span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
}

.photo-download-button {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 78px;
    margin-top: 25px;
    padding: 13px 16px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(
        135deg,
        #db2777,
        #9333ea,
        #2563eb
    );
    color: white;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 18px 38px rgba(147, 51, 234, 0.32);
}

.photo-download-button:disabled {
    cursor: wait;
    opacity: 0.75;
}

.photo-button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.13);
    font-size: 20px;
}

.photo-button-text {
    margin-left: 13px;
}

.photo-button-text strong,
.photo-button-text small {
    display: block;
}

.photo-button-text strong {
    font-size: 14px;
}

.photo-button-text small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 9px;
}

.photo-button-arrow {
    margin-left: auto;
    font-size: 20px;
}

.photo-back-button {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
}

.photo-spinner {
    width: 24px;
    height: 24px;
    margin-left: 10px;
    border: 3px solid rgba(255, 255, 255, 0.25);
    border-top-color: white;
    border-radius: 50%;
    animation: photo-spin 0.8s linear infinite;
}

@keyframes photo-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 850px) {
    .photo-result-card {
        grid-template-columns: 1fr;
    }

    .photo-preview,
    .photo-preview img {
        min-height: 450px;
    }
}

@media (max-width: 550px) {
    .photo-brand span {
        display: none;
    }

    .photo-new-button {
        padding: 11px 12px;
        font-size: 10px;
    }

    .photo-main {
        width: 94%;
        padding-top: 50px;
    }

    .photo-result-card {
        padding: 9px;
        border-radius: 24px;
    }

    .photo-preview,
    .photo-preview img {
        min-height: 390px;
    }

    .photo-information {
        padding: 25px 12px;
    }
}
/* ==================================================
   NAWATIK PHOTO GALLERY PAGE
================================================== */

.photo-gallery-page {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(
            circle at 12% 10%,
            rgba(219, 39, 119, 0.26),
            transparent 34%
        ),
        radial-gradient(
            circle at 88% 18%,
            rgba(37, 99, 235, 0.30),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            #061125,
            #0a1534 50%,
            #160f38
        );
    color: #ffffff;
    font-family: "Poppins", sans-serif;
}

.photo-gallery-page *,
.photo-gallery-page *::before,
.photo-gallery-page *::after {
    box-sizing: border-box;
}

.photo-gallery-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.022) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.022) 1px,
            transparent 1px
        );
    background-size: 60px 60px;
}

.photo-gallery-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1400px, 92%);
    margin: 22px auto 0;
    padding: 13px 17px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(22px);
}

.photo-gallery-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    text-decoration: none;
}

.photo-gallery-brand img {
    width: 49px;
    height: 49px;
    object-fit: contain;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
}

.photo-gallery-brand strong,
.photo-gallery-brand span {
    display: block;
}

.photo-gallery-brand strong {
    font-size: 21px;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.photo-gallery-brand span {
    color: rgba(255, 255, 255, 0.45);
    font-size: 10px;
}

.photo-gallery-new {
    padding: 13px 18px;
    border-radius: 14px;
    background:
        linear-gradient(
            135deg,
            #db2777,
            #7c3aed
        );
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
}

.photo-gallery-main {
    width: min(1100px, 92%);
    margin: 0 auto;
    padding: 72px 0;
}

.photo-gallery-heading {
    max-width: 750px;
    margin: 0 auto 40px;
    text-align: center;
}

.photo-gallery-badge {
    display: inline-flex;
    padding: 9px 15px;
    border: 1px solid rgba(244, 114, 182, 0.25);
    border-radius: 999px;
    background: rgba(219, 39, 119, 0.1);
    color: #f9a8d4;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 1px;
}

.photo-gallery-heading h1 {
    margin: 20px 0 0;
    font-size: clamp(38px, 6vw, 62px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -2px;
}

.photo-gallery-heading p {
    max-width: 650px;
    margin: 16px auto 0;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
}

.photo-gallery-card {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow:
        0 40px 90px rgba(0, 0, 0, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
}

.photo-gallery-post-info {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.035);
}

.photo-gallery-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 15px;
    background:
        linear-gradient(
            135deg,
            #db2777,
            #7c3aed
        );
    font-size: 18px;
    font-weight: 900;
}

.photo-gallery-post-text {
    min-width: 0;
    flex: 1;
}

.photo-gallery-post-text span {
    display: block;
    color: rgba(255, 255, 255, 0.38);
    font-size: 10px;
}

.photo-gallery-post-text strong {
    display: block;
    margin-top: 2px;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.photo-gallery-post-text h2 {
    margin: 9px 0 0;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.45;
}

.photo-gallery-count {
    min-width: 88px;
    padding: 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    text-align: center;
}

.photo-gallery-count strong,
.photo-gallery-count span {
    display: block;
}

.photo-gallery-count strong {
    font-size: 20px;
}

.photo-gallery-count span {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 9px;
}

.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.photo-gallery-item {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.photo-gallery-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.22);
}

.photo-gallery-image-wrap {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #050914;
}

.photo-gallery-image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-gallery-number {
    position: absolute;
    z-index: 2;
    top: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    background: rgba(4, 8, 20, 0.72);
    color: #ffffff;
    font-size: 11px;
    font-weight: 850;
    backdrop-filter: blur(12px);
}

.photo-gallery-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 54px;
    padding: 12px;
    background:
        linear-gradient(
            135deg,
            #2563eb,
            #7c3aed
        );
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
}

.photo-gallery-download:hover {
    filter: brightness(1.08);
}

.photo-gallery-zip-form {
    margin: 18px 0 0;
}

.photo-gallery-zip-button {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 78px;
    padding: 13px 16px;
    border: 0;
    border-radius: 19px;
    background:
        linear-gradient(
            135deg,
            #db2777,
            #9333ea,
            #2563eb
        );
    color: #ffffff;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 18px 38px rgba(147, 51, 234, 0.30);
}

.photo-gallery-zip-button:disabled {
    cursor: wait;
    opacity: 0.76;
}

.photo-gallery-zip-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.13);
    font-size: 20px;
}

.photo-gallery-zip-text {
    margin-left: 13px;
}

.photo-gallery-zip-text strong,
.photo-gallery-zip-text small {
    display: block;
}

.photo-gallery-zip-text strong {
    font-size: 14px;
}

.photo-gallery-zip-text small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 9px;
}

.photo-gallery-zip-arrow {
    margin-left: auto;
    font-size: 21px;
}

.photo-gallery-back {
    display: flex;
    justify-content: center;
    margin-top: 14px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.025);
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
}

.photo-gallery-spinner {
    width: 25px;
    height: 25px;
    margin-left: 10px;
    border: 3px solid rgba(255, 255, 255, 0.25);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: photo-gallery-spin 0.8s linear infinite;
}

@keyframes photo-gallery-spin {
    to {
        transform: rotate(360deg);
    }
}

.photo-gallery-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: min(1100px, 92%);
    margin: 0 auto 25px;
    padding: 23px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.025);
}

.photo-gallery-footer strong {
    font-size: 13px;
}

.photo-gallery-footer span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
}

@media (max-width: 700px) {
    .photo-gallery-grid {
        grid-template-columns: 1fr;
    }

    .photo-gallery-main {
        width: 94%;
        padding-top: 52px;
    }

    .photo-gallery-card {
        padding: 10px;
        border-radius: 24px;
    }

    .photo-gallery-post-info {
        align-items: flex-start;
    }

    .photo-gallery-count {
        min-width: 70px;
    }
}

@media (max-width: 500px) {
    .photo-gallery-brand span {
        display: none;
    }

    .photo-gallery-new {
        padding: 11px 12px;
        font-size: 10px;
    }

    .photo-gallery-heading h1 {
        font-size: 38px;
    }

    .photo-gallery-post-text h2 {
        font-size: 14px;
    }

    .photo-gallery-avatar {
        width: 44px;
        height: 44px;
    }
}
/* ==================================================
   NAWATIK MOBILE FIX
================================================== */

@media (max-width: 900px) {
    html {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }

    input,
    textarea,
    select {
        font-size: 16px !important;
    }

    .home-input-area input {
        font-size: 16px !important;
    }

    button,
    a,
    input,
    textarea,
    select {
        touch-action: manipulation;
    }
}
/* =========================================
   NAWATIK BRAND LOGO
========================================= */

.nawatik-full-logo {
    display: block;
    width: 210px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.result-brand .nawatik-full-logo,
.photo-gallery-brand .nawatik-full-logo,
.home-brand .nawatik-full-logo {
    width: 200px;
    height: auto;
}

@media (max-width: 600px) {
    .nawatik-full-logo,
    .result-brand .nawatik-full-logo,
    .photo-gallery-brand .nawatik-full-logo,
    .home-brand .nawatik-full-logo {
        width: 150px;
    }
}

/* =========================================
   NAWATIK GLOBAL LOGO SIZE FIX
========================================= */

/* سپیی پشت لۆگۆکان لادەبات */
.home-brand,
.result-brand,
.photo-gallery-brand,
.hd-ad-brand,
.brand-link,
.result-footer-brand-link,
.photo-gallery-footer-brand {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}


/* هەموو لۆگۆ سەرەکییەکان */
.site-logo,
.home-brand-logo,
.nawatik-full-logo,
.result-full-logo,
.result-footer-logo,
.photo-gallery-full-logo,
.photo-gallery-footer-logo,
.hd-ad-full-logo,
.error-brand-logo,
.home-brand img,
.result-brand img,
.photo-gallery-brand img,
.hd-ad-brand img,
.brand-link img,
.result-footer-brand-link img,
.photo-gallery-footer-brand img {
    display: block !important;

    width: 38px !important;
    height: 38px !important;

    min-width: 38px !important;
    max-width: 38px !important;

    object-fit: contain !important;
    object-position: center !important;

    padding: 0 !important;
    margin: 0 !important;

    border: 0 !important;
    border-radius: 0 !important;

    background: transparent !important;
    box-shadow: none !important;

    filter:
        drop-shadow(
            0 7px 14px rgba(89, 73, 255, 0.32)
        );
}


/* ڕێکخستنی لۆگۆکانی Header */
.home-brand,
.result-brand,
.photo-gallery-brand,
.hd-ad-brand {
    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    flex-shrink: 0 !important;

    gap: 0 !important;
}


/* لۆگۆکانی Footer کەمێک بچووکتر */
.result-footer-logo,
.photo-gallery-footer-logo,
.result-footer-brand-link img,
.photo-gallery-footer-brand img {
    width: 32px !important;
    height: 32px !important;

    min-width: 32px !important;
    max-width: 32px !important;
}


/* لۆگۆی Error page */
.error-brand-logo,
.brand-link img {
    width: 46px !important;
    height: 46px !important;

    min-width: 46px !important;
    max-width: 46px !important;
}


/* Mobile */
@media (max-width: 700px) {

    .site-logo,
    .home-brand-logo,
    .nawatik-full-logo,
    .result-full-logo,
    .photo-gallery-full-logo,
    .hd-ad-full-logo,
    .home-brand img,
    .result-brand img,
    .photo-gallery-brand img,
    .hd-ad-brand img {
        width: 32px !important;
        height: 32px !important;

        min-width: 32px !important;
        max-width: 32px !important;
    }


    .result-footer-logo,
    .photo-gallery-footer-logo,
    .result-footer-brand-link img,
    .photo-gallery-footer-brand img {
        width: 28px !important;
        height: 28px !important;

        min-width: 28px !important;
        max-width: 28px !important;
    }


    .error-brand-logo,
    .brand-link img {
        width: 40px !important;
        height: 40px !important;

        min-width: 40px !important;
        max-width: 40px !important;
    }

}
/* =========================================
   NAWATIK CROPPED LOGO FIX
========================================= */

/*
    فایلەکە بۆشایی زۆری هەیە.
    ئەم box ـە بۆشاییەکە دەشارێتەوە
    و تەنها نیشانەکە پیشان دەدات.
*/

.site-logo-box,
.result-brand,
.photo-gallery-brand,
.hd-ad-brand {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 64px !important;
    height: 64px !important;

    min-width: 64px !important;

    padding: 0 !important;

    overflow: hidden !important;

    border: 0 !important;
    border-radius: 14px !important;

    background: transparent !important;
    box-shadow: none !important;

    text-decoration: none !important;
}


/* لۆگۆی Header ـەکان */

.site-logo-image,
.home-brand img,
.result-brand img,
.photo-gallery-brand img,
.hd-ad-brand img {
    display: block !important;

    width: 64px !important;
    height: 64px !important;

    min-width: 64px !important;
    max-width: 64px !important;

    object-fit: contain !important;

    padding: 0 !important;
    margin: 0 !important;

    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;

    transform: scale(2.7) !important;
    transform-origin: center !important;

    filter:
        drop-shadow(
            0 6px 12px rgba(90, 70, 255, 0.32)
        );
}


/* =========================================
   ERROR PAGE LOGO
========================================= */

.error-logo-box,
.brand-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 96px !important;
    height: 96px !important;

    min-width: 96px !important;

    padding: 0 !important;

    overflow: hidden !important;

    border: 0 !important;
    border-radius: 20px !important;

    background: transparent !important;
    box-shadow: none !important;

    text-decoration: none !important;
}


.error-logo-image,
.error-brand-logo,
.brand-link img {
    display: block !important;

    width: 96px !important;
    height: 96px !important;

    min-width: 96px !important;
    max-width: 96px !important;

    object-fit: contain !important;

    padding: 0 !important;
    margin: 0 !important;

    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;

    transform: scale(2.7) !important;
    transform-origin: center !important;

    filter:
        drop-shadow(
            0 8px 18px rgba(90, 70, 255, 0.38)
        );
}


/* =========================================
   FOOTER LOGOS
========================================= */

.result-footer-brand-link,
.photo-gallery-footer-brand {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 54px !important;
    height: 54px !important;

    padding: 0 !important;

    overflow: hidden !important;

    border: 0 !important;
    border-radius: 12px !important;

    background: transparent !important;
    box-shadow: none !important;
}


.result-footer-brand-link img,
.photo-gallery-footer-brand img,
.result-footer-logo,
.photo-gallery-footer-logo {
    display: block !important;

    width: 54px !important;
    height: 54px !important;

    min-width: 54px !important;
    max-width: 54px !important;

    object-fit: contain !important;

    padding: 0 !important;
    margin: 0 !important;

    background: transparent !important;

    transform: scale(2.7) !important;
    transform-origin: center !important;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .site-logo-box,
    .result-brand,
    .photo-gallery-brand,
    .hd-ad-brand {
        width: 54px !important;
        height: 54px !important;

        min-width: 54px !important;
    }


    .site-logo-image,
    .home-brand img,
    .result-brand img,
    .photo-gallery-brand img,
    .hd-ad-brand img {
        width: 54px !important;
        height: 54px !important;

        min-width: 54px !important;
        max-width: 54px !important;

        transform: scale(2.7) !important;
    }


    .error-logo-box,
    .brand-link {
        width: 82px !important;
        height: 82px !important;

        min-width: 82px !important;
    }


    .error-logo-image,
    .error-brand-logo,
    .brand-link img {
        width: 82px !important;
        height: 82px !important;

        min-width: 82px !important;
        max-width: 82px !important;

        transform: scale(2.7) !important;
    }

}

/* =========================================
   BRAND LOGO + NAME
========================================= */

.brand-combo,
.nav-brand,
.result-brand,
.photo-brand,
.error-brand,
.hd-ad-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-combo img,
.nav-brand img,
.result-brand img,
.photo-brand img,
.error-brand img,
.hd-ad-brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.brand-name {
    display: flex;
    align-items: baseline;
    gap: 0;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
}

.brand-nawa {
    color: #ffffff;
}

.brand-tik {
    background: linear-gradient(90deg, #7c3aed, #3b82f6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.brand-subtitle {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.72);
    margin-top: 3px;
    letter-spacing: 0.6px;
}

/* بۆ ناڤبار */
.nav-brand .brand-name {
    font-size: 28px;
}

/* بۆ result و photo pages */
.result-brand .brand-name,
.photo-brand .brand-name,
.hd-ad-brand .brand-name {
    font-size: 24px;
}

/* بۆ error page */
.error-brand .brand-name {
    font-size: 24px;
}

/* Footer */
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.footer-brand img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.footer-brand .brand-name {
    font-size: 22px;
}

.footer-brand .brand-nawa {
    color: #ffffff;
}

@media (max-width: 768px) {
    .brand-combo img,
    .nav-brand img,
    .result-brand img,
    .photo-brand img,
    .error-brand img,
    .hd-ad-brand img {
        width: 36px;
        height: 36px;
    }

    .brand-name {
        font-size: 22px;
    }

    .footer-brand .brand-name {
        font-size: 19px;
    }
}

@media (max-width: 480px) {
    .brand-combo img,
    .nav-brand img,
    .result-brand img,
    .photo-brand img,
    .error-brand img,
    .hd-ad-brand img {
        width: 32px;
        height: 32px;
    }

    .brand-name {
        font-size: 19px;
    }

    .brand-subtitle {
        font-size: 10px;
    }
}
/* ==================================================
   NAWATIK LOGO + BRAND NAME — GLOBAL
================================================== */

.home-brand.brand-lockup,
.result-brand.brand-lockup,
.photo-gallery-brand.brand-lockup,
.hd-ad-brand.brand-lockup,
.brand-link.brand-lockup,
.result-footer-brand-link.brand-lockup,
.photo-gallery-footer-brand.brand-lockup {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;

    width: auto !important;
    height: auto !important;

    min-width: 0 !important;
    max-width: none !important;

    gap: 11px !important;

    padding: 0 !important;
    margin: 0 !important;

    overflow: visible !important;

    border: 0 !important;
    border-radius: 0 !important;

    background: transparent !important;
    background-color: transparent !important;

    box-shadow: none !important;

    text-decoration: none !important;
}


/* Logo frame */

.brand-icon-frame {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 50px !important;
    height: 50px !important;

    min-width: 50px !important;
    max-width: 50px !important;

    overflow: hidden !important;

    padding: 0 !important;
    margin: 0 !important;

    border: 0 !important;
    border-radius: 12px !important;

    background: transparent !important;
    box-shadow: none !important;

    flex-shrink: 0 !important;
}


/*
    فایلەکە بۆشایی زۆری هەیە،
    scale خودی لۆگۆکە نزیک دەکاتەوە.
*/

.brand-lockup .brand-icon {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    min-width: 100% !important;
    max-width: 100% !important;

    object-fit: contain !important;
    object-position: center !important;

    padding: 0 !important;
    margin: 0 !important;

    border: 0 !important;
    border-radius: 0 !important;

    background: transparent !important;
    box-shadow: none !important;

    transform: scale(2.55) !important;
    transform-origin: center !important;

    filter:
        drop-shadow(
            0 7px 14px rgba(93, 74, 255, 0.35)
        ) !important;
}


/* Name area */

.brand-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 3px;

    line-height: 1;
}


.brand-word {
    display: inline-flex;
    align-items: center;

    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 900;

    line-height: 1;

    letter-spacing: 0.7px;

    white-space: nowrap;
}


.brand-nawa {
    color: #ffffff;
}


.brand-tik {
    background:
        linear-gradient(
            90deg,
            #8b5cf6 0%,
            #3b82f6 48%,
            #ec4899 100%
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;
}


.brand-subtitle {
    color: rgba(213, 220, 255, 0.72);

    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 600;

    line-height: 1.2;

    letter-spacing: 0.4px;

    white-space: nowrap;
}


/* Hover */

.brand-lockup {
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}


.brand-lockup:hover {
    transform: translateY(-2px);
}


.brand-lockup:hover .brand-icon {
    filter:
        drop-shadow(
            0 8px 18px rgba(93, 74, 255, 0.48)
        ) !important;
}


/* Footer size */

.brand-lockup--footer .brand-icon-frame {
    width: 42px !important;
    height: 42px !important;

    min-width: 42px !important;
    max-width: 42px !important;
}


.brand-lockup--footer .brand-word {
    font-size: 20px;
}


.brand-lockup--footer .brand-subtitle {
    font-size: 9px;
}


/* Error page fix */

.brand {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 100% !important;

    margin: 0 0 28px !important;
    padding: 0 !important;

    background: transparent !important;
}


.brand-link.brand-lockup {
    background: transparent !important;
    box-shadow: none !important;
}


/* Mobile */

@media (max-width: 700px) {

    .brand-icon-frame {
        width: 42px !important;
        height: 42px !important;

        min-width: 42px !important;
        max-width: 42px !important;
    }


    .brand-word {
        font-size: 20px;
    }


    .brand-subtitle {
        font-size: 9px;
    }


    .brand-lockup--footer .brand-icon-frame {
        width: 36px !important;
        height: 36px !important;

        min-width: 36px !important;
        max-width: 36px !important;
    }


    .brand-lockup--footer .brand-word {
        font-size: 17px;
    }

}


@media (max-width: 430px) {

    .home-brand.brand-lockup,
    .result-brand.brand-lockup,
    .photo-gallery-brand.brand-lockup,
    .hd-ad-brand.brand-lockup {
        gap: 8px !important;
    }


    .brand-icon-frame {
        width: 38px !important;
        height: 38px !important;

        min-width: 38px !important;
        max-width: 38px !important;
    }


    .brand-word {
        font-size: 18px;
    }


    .brand-subtitle {
        font-size: 8px;
    }

}

/* ==================================================
   NAWATIK FINAL HOME FOOTER CLICK FIX
   Keep this block at the very end of style.css
================================================== */

.home-footer,
.home-footer-top,
.home-footer-brand,
.home-footer-links,
.home-footer-link-column,
.home-footer-bottom {
    position: relative !important;
}

.home-footer {
    z-index: 1000 !important;
    isolation: isolate !important;
    overflow: visible !important;
}

/*
   Decorative layers must never receive mouse or touch clicks.
*/
.home-footer::before,
.home-footer::after,
.home-footer-top::before,
.home-footer-top::after,
.home-footer-brand::before,
.home-footer-brand::after,
.home-footer-links::before,
.home-footer-links::after,
.home-footer-link-column::before,
.home-footer-link-column::after {
    pointer-events: none !important;
}

/*
   Footer logo is visual only.
   This prevents an old Home link or logo layer from covering the legal links.
*/
.home-footer-brand {
    z-index: 1 !important;
    pointer-events: none !important;
}

.home-footer-brand .home-brand,
.home-footer-brand .brand-lockup,
.home-footer-brand a,
.home-footer-brand img,
.home-footer-brand span,
.home-footer-brand p {
    position: static !important;

    inset: auto !important;

    width: auto !important;
    max-width: 100% !important;
    height: auto !important;

    pointer-events: none !important;
}

/*
   Navigation and Information columns.
*/
.home-footer-links {
    z-index: 100 !important;

    display: flex !important;
    align-items: flex-start !important;

    width: auto !important;
    height: auto !important;

    overflow: visible !important;

    pointer-events: auto !important;
    isolation: isolate !important;
}

.home-footer-links > div,
.home-footer-link-column {
    z-index: 101 !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;

    width: auto !important;
    min-width: 130px !important;
    height: auto !important;

    overflow: visible !important;

    pointer-events: auto !important;
}

/*
   Every footer link gets its own normal clickable box.
*/
.home-footer-links a,
.home-footer-link-column a,
.home-footer-legal-link {
    position: relative !important;
    z-index: 102 !important;

    display: block !important;

    inset: auto !important;

    width: fit-content !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;

    padding: 3px 0 !important;
    margin: 0 !important;

    overflow: visible !important;

    pointer-events: auto !important;
    cursor: pointer !important;
    touch-action: manipulation !important;

    transform: none !important;
}

/*
   Legal links always stay above all other footer elements.
*/
.home-footer-links a[href="/privacy"],
.home-footer-links a[href="/terms"],
.home-footer-links a[href*="privacy"],
.home-footer-links a[href*="terms"],
.home-footer-legal-link {
    z-index: 10000 !important;

    pointer-events: auto !important;
    cursor: pointer !important;
}

/*
   Reset old Home-link rules that may stretch an anchor over the footer.
*/
.home-footer-links a[href="/"],
.home-footer-links a[href*="#features"],
.home-footer-links a[href*="#how-it-works"],
.home-footer-links a[href*="#faq"] {
    position: relative !important;

    inset: auto !important;

    width: fit-content !important;
    height: auto !important;
}

/*
   Background decorations stay behind the page and never receive clicks.
*/
.home-background,
.home-background *,
.home-background::before,
.home-background::after {
    pointer-events: none !important;
}

/*
   Copyright area does not need to receive clicks.
*/
.home-footer-bottom,
.home-footer-bottom * {
    pointer-events: none !important;
}

@media (max-width: 800px) {
    .home-footer-links {
        width: 100% !important;
        gap: 32px !important;
    }
}

@media (max-width: 500px) {
    .home-footer-links {
        flex-direction: column !important;
        gap: 28px !important;
    }
}
/* =========================================
   TERMS BUTTON FINAL FIX
========================================= */

.terms-page-form {
    position: relative !important;
    z-index: 2147483646 !important;

    display: block !important;

    width: fit-content !important;
    height: auto !important;

    padding: 0 !important;
    margin: 0 !important;

    pointer-events: auto !important;
}

.terms-page-button {
    position: relative !important;
    z-index: 2147483647 !important;

    display: block !important;

    width: fit-content !important;
    height: auto !important;

    padding: 3px 0 !important;
    margin: 0 !important;

    border: 0 !important;
    outline: 0 !important;

    background: transparent !important;

    color: rgba(255, 255, 255, 0.5) !important;

    font-family: "Poppins", sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;

    text-align: left !important;

    cursor: pointer !important;
    pointer-events: auto !important;
    touch-action: manipulation !important;

    transition: color 0.25s ease !important;
}

.terms-page-button:hover {
    color: #ffffff !important;
}