#nasil,
.seo-wrapper {
    /* contain: strict; REMOVED */
    display: block;
    /* overflow: hidden; REMOVED */
    padding-bottom: 20px;
    min-height: 300px;
    height: auto;
    /* REMOVED fixed height */
}

#nasil.seo-wrapper p,
#nasil.seo-wrapper h2 {
    line-height: 28px !important;
    margin-bottom: 15px;
}

@media (max-width: 768px) {

    #nasil,
    .seo-wrapper {
        height: auto;
        min-height: 600px;
        /* contain: content; REMOVED */
    }
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span {
    font-display: optional;
}

.logo,
.nav-container {
    align-items: center;
    display: flex
}

.footer-links a:hover::before,
.logo span,
.seo-nav a:hover {
    color: var(--primary)
}

.logo,
h1 {
    font-weight: 800;
    color: var(--dark)
}

.logo,
h1,
input {
    color: var(--dark)
}

.btn-sec,
.download-btn,
.input-wrapper,
.logo,
a {
    transition: .3s
}

.blob-2,
.premium-card::after {
    bottom: -50px;
    right: -50px
}

.funnel-title,
.premium-card h3,
.premium-card:hover h3,
h1 span {
    -webkit-text-fill-color: transparent
}

.result-btn,
a {
    text-decoration: none
}

:root {
    --primary: #FE2C55;
    --secondary: #25F4EE;
    --dark: #0f172a;
    --light: #ffffff;
    --gray: #f8fafc;
    --glass: rgba(255, 255, 255, 0.9);
    --shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(135deg, #FE2C55 0%, #FF0050 100%)
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: 0
}

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
    position: relative;
}

body {
    font-family: Inter, sans-serif;
    background: #f1f5f9;
    color: #334155;
    line-height: 1.6;
}

.site-wrapper {
    width: 100%;
    max-width: 100vw;
    position: relative;
    overflow-x: hidden;
    /* Critical for mobile overflow */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}



ul {
    list-style: none
}

header {
    background: var(--light);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .03);
    border-bottom: 1px solid rgba(0, 0, 0, .05)
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
    justify-content: space-between
}

.logo {
    font-size: 24px;
    letter-spacing: -.5px;
    gap: 5px;
    /* CLS FIX: Rigid dimensions for container */
    width: 200px;
    height: 50px;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Prevent spill */
}

.logo svg {
    width: 28px;
    height: 28px;
    min-width: 28px;
    /* Prevent shrink */
}

.seo-nav,
.tech-badges {
    display: flex;
    gap: 15px;
    align-items: center
}

.seo-nav a {
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 10px;
    border-radius: 8px;
    white-space: nowrap
}

.seo-nav a:hover {
    background: #fff0f3
}

.header-btn {
    background: var(--dark);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .2)
}

.header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .3)
}

.hero {
    position: relative;
    padding: 80px 20px 60px;
    text-align: center;
    background: radial-gradient(circle at top, #fff0f3 0, #f1f5f9 60%);
    overflow: hidden;
    /* CLS FIX: Forced minimum height for desktop fold */
    min-height: auto;
    /* Allow flexible height on mobile */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.bg-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #25f4ee 0, #fe2c55 100%);
    filter: blur(100px);
    opacity: .15;
    z-index: 0;
    border-radius: 50%
}

.blob-1 {
    top: -100px;
    left: -100px
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0 auto
}

.funnel-grid,
.funnel-text,
.funnel-title {
    z-index: 2;
    position: relative
}

.funnel-title,
h1 {
    margin-bottom: 15px
}

h1 {
    font-size: 3rem;
    letter-spacing: -1px;
    line-height: 1.2;
    min-height: 1.2em;
    /* CLS FIX: Reserve vertical space for title */
}

.premium-card:hover h3,
h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 40px
}

.input-wrapper {
    background: #fff;
    padding: 8px;
    border-radius: 60px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    border: 2px solid transparent;
    position: relative
}

.download-btn,
input {
    border: none;
    font-size: 16px
}

.input-wrapper:focus-within {
    border-color: var(--primary);
    transform: scale(1.01)
}

.input-icon {
    padding-left: 20px;
    color: #94a3b8;
    display: flex;
    align-items: center
}

input {
    flex: 1;
    padding: 15px;
    background: 0 0
}

input::placeholder {
    color: #cbd5e1
}

.download-btn {
    background: var(--gradient);
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px
}

.download-btn:hover {
    box-shadow: 0 10px 25px rgba(254, 44, 85, .4);
    transform: translateY(-1px)
}

#result-area {
    display: none;
    margin-top: 30px;
    animation: .5s fadeIn
}

.funnel-title {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(90deg, #25f4ee 0, #fff 50%, #fe2c55 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    animation: 3s linear infinite shine-text
}

.funnel-text {
    color: #e2e8f0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 500
}

.funnel-badge,
.premium-card h3 {
    margin-bottom: 15px;
    font-weight: 800
}

.highlight-blue {
    color: #25f4ee;
    text-shadow: 0 0 10px rgba(37, 244, 238, .4)
}

.btn-sec:hover svg,
.funnel-badge {
    color: #fe2c55
}

.highlight-red {
    color: #fe2c55;
    text-shadow: 0 0 10px rgba(254, 44, 85, .4)
}

@keyframes shine-text {
    to {
        background-position: 200% center
    }
}

.funnel-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #FE2C55, #25F4EE);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.6;
    transform: translateZ(0);
    pointer-events: none;
}

.funnel-badge {
    display: inline-block;
    background: rgba(254, 44, 85, .2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(254, 44, 85, .3);
    box-shadow: 0 0 15px rgba(254, 44, 85, .2);
    animation: 2s infinite pulse-badge
}

.funnel-grid {
    display: grid;
    /* CLS FIX: Standard 2-col grid for 4 items */
    grid-template-columns: repeat(2, 1fr);
    /* Removed outdated grid areas */
    gap: 15px
}

.btn-main,
.btn-sec {
    border-radius: 12px;
    font-weight: 700;
    display: flex;
    align-items: center
}

.btn-main {
    /* grid-area set removal ensures auto-flow */
    background: linear-gradient(90deg, #fe2c55 0, #ff0050 100%);
    color: #fff;
    padding: 16px;
    font-size: 16px;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 10px 20px rgba(254, 44, 85, .3);
    /* CLS FIX: Match layout of btn-sec */
    min-height: 120px;
    display: flex;
    flex-direction: column;
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(254, 44, 85, .4)
}

.btn-sec {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, .15);
    color: #fe2c55 !important;
    padding: 14px;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, .3);
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, .5)
}

.btn-sec h2,
.btn-sec h3,
.btn-sec h4 {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important;
}

.btn-sec:hover {
    background: #fff;
    color: #0f172a !important;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, .2)
}

.btn-red {
    background: var(--primary);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(254, 44, 85, 0.3);
}

.btn-red:hover {
    background: #e61e45;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(254, 44, 85, 0.4);
}

/* --- PREMIUM UI COMPONENTS --- */
.loading-card {
    background: #ffffff;
    color: #1e293b;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: fade-in 0.3s ease;
}

.result-card {
    background: #fff;
    border-radius: 24px;
    padding: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
    align-items: center;
}

.result-img {
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.result-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-video {
    background: linear-gradient(135deg, #FF0050 0%, #FE2C55 100%);
    color: #fff !important;
    box-shadow: 0 8px 15px rgba(254, 44, 85, 0.25);
}

.btn-video:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(254, 44, 85, 0.4);
    filter: brightness(1.1);
}

.btn-music {
    background: linear-gradient(135deg, #00F2EA 0%, #25F4EE 100%);
    color: #0f172a !important;
    box-shadow: 0 8px 15px rgba(37, 244, 238, 0.25);
}

.btn-music:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(254, 44, 85, 0.4);
    filter: brightness(1.05);
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-badge {

    0%,
    100% {
        opacity: .8
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 10px #fe2c55
    }
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

@media (max-width:500px) {
    .funnel-title {
        font-size: 1.3rem
    }
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px
}

.premium-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    transition: .4s cubic-bezier(.175, .885, .32, 1.275);
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .03);
    overflow: hidden;
    z-index: 1
}

.premium-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(254, 44, 85, .15);
    border-color: rgba(254, 44, 85, .1)
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #25f4ee, #fe2c55);
    opacity: 0;
    transition: .3s
}

.premium-card:hover::before {
    opacity: 1
}

.premium-card::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #25f4ee 0, #fe2c55 100%);
    filter: blur(60px);
    opacity: .1;
    z-index: -1;
    transition: .4s
}

.premium-card:hover::after {
    opacity: .3;
    width: 150px;
    height: 150px
}

.card-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(254, 44, 85, .05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary);
    transition: .3s
}

.premium-card:hover .card-icon-box {
    background: var(--primary);
    color: #fff;
    transform: rotate(-10deg)
}

.premium-card h3 {
    font-size: 1.5rem;
    background: -webkit-linear-gradient(0deg, #1e293b, #475569);
    -webkit-background-clip: text;
    background-clip: text;
}

.premium-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7
}

.seo-wrapper {
    background: #fff;
    padding: 60px 0;
    border-top: 1px solid #e2e8f0;
    margin-top: 50px
}

.seo-content-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    color: #475569
}

.scrollable-text h2 {
    color: var(--dark);
    font-size: 1.4rem;
    color: var(--dark);
    margin: 25px 0 15px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
    display: inline-block
}

.scrollable-text {
    height: 450px;
    overflow-y: auto;
    padding: 25px;
    font-size: 1rem;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, .02)
}

.scrollable-text ul {
    margin-left: 20px;
    margin-bottom: 20px;
    list-style-type: disc;
    color: #475569
}

.scrollable-text li {
    margin-bottom: 8px;
    padding-left: 5px
}

.site-footer {
    background: #020617;
    color: #94a3b8;
    padding-top: 80px;
    padding-bottom: 30px;
    position: relative;
    font-size: .95rem;
    overflow: hidden;
    margin-top: auto
}

.footer-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #25f4ee, #fe2c55, #25f4ee);
    background-size: 200% auto;
    animation: 5s linear infinite footer-shine;
    box-shadow: 0 0 20px rgba(37, 244, 238, .3)
}

.site-footer::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(254, 44, 85, .08) 0, transparent 70%);
    pointer-events: none
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2
}

.footer-brand h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px
}

.footer-brand p {
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: .9rem;
    color: #64748b
}

.footer-heading {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    display: inline-block
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px
}

.footer-links a {
    color: #94a3b8;
    transition: .3s;
    display: flex;
    align-items: center;
    gap: 8px
}

.footer-links a::before {
    content: '›';
    font-size: 1.2rem;
    color: #475569;
    transition: .3s
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px)
}

.copyright-area {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .05);
    text-align: center;
    font-size: .9rem;
    color: #64748b
}

@keyframes footer-shine {
    to {
        background-position: 200% center
    }
}

@media (max-width:968px) {
    .footer-container {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:576px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px
    }
}