/* --- Variables & Reset --- */
:root {
    --bg-dark: #090916;
    --text-primary: #ffffff;
    --text-gray: #a1a1aa;
    --primary-gradient: linear-gradient(135deg, #FF0080, #7928CA);
    --secondary-gradient: linear-gradient(135deg, #00C6FF, #0072FF);
    --accent-gradient: linear-gradient(135deg, #00F260, #0575E6);
    /* Новый градиент для "Бесплатно" */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --neon-pink: #FF0080;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-pink);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- Typography & Utilities --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    color: var(--neon-pink);
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 0;
    z-index: 100;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(9, 9, 22, 0.9);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.btn-small {
    padding: 8px 24px;
    border: 1px solid var(--neon-pink);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: 0.3s;
    background: var(--neon-pink);
    box-shadow: 0 0 20px var(--neon-pink);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    padding-bottom: 50px;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    z-index: 2;
    gap: 60px;
}

/* Animated Blobs */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    opacity: 0.4;
    animation: moveBlob 20s infinite alternate;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: #7928CA;
    top: -10%;
    right: -10%;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: #FF0080;
    bottom: -10%;
    left: -10%;
    animation-delay: -5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: #00C6FF;
    top: 40%;
    left: 40%;
    opacity: 0.2;
    animation-delay: -10s;
}

@keyframes moveBlob {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(60px, -60px) scale(1.1);
    }
}

.hero-text {
    flex: 1;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 0, 128, 0.1);
    color: #ff4da6;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 0, 128, 0.2);
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: 4.2rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 500px;
}

.cta-group {
    display: flex;
    align-items: center;
    gap: 25px;
}

.rating {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.stars {
    color: #FFD700;
    font-size: 0.85rem;
    margin-bottom: 4px;
}

/* Button Styles */
.btn-download {
    display: inline-flex;
    align-items: center;
    background: white;
    color: black;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-download:hover {
    color: black;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 0, 128, 0.5);
}

.btn-download.permanent-glow {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 0, 128, 0.5);
}

/* Свечение всегда активно для хедера */
.btn-download.permanent-glow::before {
    opacity: 1;
}

.btn-download i {
    font-size: 1.8rem;
    margin-right: 14px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.btn-text span:first-child {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.8;
}

.store-name {
    font-size: 1.1rem;
    font-weight: 800;
}

/* Phone Mockup */
.phone-mockup {
    width: 320px;
    height: 640px;
    background: #000;
    border-radius: 50px;
    border: 12px solid #2a2a2a;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    transform: rotate(-5deg);
    z-index: 10;
}

.screen {
    width: 100%;
    height: 100%;
    background: #121225;
    border-radius: 38px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.status-bar {
    padding: 15px 25px 0;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
}

.app-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.chat-area {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-bubble {
    background: #252540;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.9rem;
    max-width: 85%;
}

.chat-bubble.left {
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-bubble.right {
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    background: var(--primary-gradient);
    color: white;
}

.mini-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.match-notification {
    margin-top: auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.heart-icon {
    width: 42px;
    height: 42px;
    background: var(--neon-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.bottom-nav {
    height: 70px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 1.4rem;
    color: #555;
    margin-top: auto;
}

.bottom-nav .active {
    color: var(--neon-pink);
}

/* --- Features Grid --- */
.features {
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 50px 35px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s, background 0.4s;
}

.card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.06);
}

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: white;
}

.gradient-1 {
    background: var(--primary-gradient);
    box-shadow: 0 15px 30px rgba(255, 0, 128, 0.3);
}

.gradient-2 {
    background: var(--secondary-gradient);
    box-shadow: 0 15px 30px rgba(0, 198, 255, 0.3);
}

.gradient-3 {
    background: var(--accent-gradient);
    box-shadow: 0 15px 30px rgba(0, 242, 96, 0.3);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* --- Stats --- */
.stats {
    padding: 50px 0 100px;
}

.stats-glass {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 60px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(to bottom, #fff, #999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Footer --- */
.cta-footer {
    padding: 140px 0 60px;
    text-align: center;
    background: radial-gradient(circle at top, #15152a, #090916);
    position: relative;
}

.cta-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.cta-footer h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.1;
}

.footer-links {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.pulse-anim {
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 128, 0.7);
    }

    70% {
        box-shadow: 0 0 0 25px rgba(255, 0, 128, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 128, 0);
    }
}

/* Animation classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease-out;
}

.fade-in {
    opacity: 0;
    transition: 1s ease;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding-top: 20px;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .hero p {
        margin: 0 auto 30px;
    }

    .cta-group {
        justify-content: center;
        flex-direction: column;
    }

    .phone-mockup {
        width: 280px;
        height: 560px;
        transform: rotate(0);
        margin-top: 50px;
    }

    .stats-glass {
        flex-direction: column;
    }

    .cta-footer h2 {
        font-size: 2.5rem;
    }
}

.legal-section {
    padding: 80px 0;
    background: #0e0e11;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.legal-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tab {
    background: #1a1a22;
    border: none;
    padding: 12px 18px;
    color: #fff;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.3s;
    font-size: 14px;
}

.tab.active {
    background: linear-gradient(135deg, #ff5fa2, #ff8bd6);
    color: #000;
}

.tab-content {
    display: none;
    background: #14141c;
    padding: 30px;
    border-radius: 16px;
    line-height: 1.6;
    min-height: 400px;
}

.tab-content.active {
    display: block;
}

.tab-content h2 {
    margin-top: 0;
}

.tab-content h3 {
    margin-top: 25px;
}

.tab-content ul {
    padding-left: 20px;
}

/* Cookie Notification */
.cookie-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: rgba(20, 20, 28, 0.95);
    border: 1px solid rgba(255, 95, 162, 0.3);
    border-radius: 16px;
    padding: 20px;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.cookie-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-text {
    font-size: 14px;
    color: #ccc;
    line-height: 1.5;
}

.cookie-text a {
    color: #ff5fa2;
    text-decoration: none;
    transition: color 0.3s;
}

.cookie-text a:hover {
    color: #ff8bd6;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 8px 20px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, #ff5fa2, #ff8bd6);
    color: #000;
}

.cookie-btn.decline {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .cookie-notification {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}

/* --- App Screens Section --- */
.screens-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.screens-header {
    text-align: center;
    margin-bottom: 80px;
}

.screens-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.screens-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    perspective: 1000px;
}

.screen-card {
    width: 260px;
    height: 520px;
    background: #000;
    border-radius: 40px;
    border: 8px solid #2a2a2a;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    transition: transform 0.5s ease;
    display: flex;
    flex-direction: column;
}

.screen-card:hover {
    transform: translateY(-15px);
    border-color: #444;
}

.screen-inner {
    background: #121225;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    border-radius: 30px;
}

/* Schematic Radar */
.radar-view {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #1a1a2e 0%, #090916 100%);
}

.radar-circle {
    position: absolute;
    border: 1px solid rgba(255, 0, 128, 0.2);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 0, 128, 0.05);
}

.c1 {
    width: 80px;
    height: 80px;
    animation: pulseRadar 3s infinite;
}

.c2 {
    width: 140px;
    height: 140px;
    animation: pulseRadar 3s infinite 0.5s;
}

.c3 {
    width: 200px;
    height: 200px;
    animation: pulseRadar 3s infinite 1s;
}

.user-dot {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #fff;
    z-index: 10;
}

.neighbor-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--neon-pink);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--neon-pink);
    opacity: 0.8;
}

.n1 {
    top: 35%;
    left: 35%;
    animation: blink 2s infinite;
}

.n2 {
    bottom: 30%;
    right: 25%;
    animation: blink 2.5s infinite;
}

.n3 {
    top: 25%;
    right: 30%;
    animation: blink 3s infinite;
}

@keyframes pulseRadar {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.2;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.6;
    }
}

@keyframes blink {
    50% {
        opacity: 0.3;
    }
}

/* Schematic Chat */
.chat-view {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 40px;
}

.chat-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    align-items: flex-end;
}

.chat-row.right {
    flex-direction: row-reverse;
}

.avatar-circle {
    width: 28px;
    height: 28px;
    background: #333;
    border-radius: 50%;
}

.msg-box {
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 10px;
    max-width: 160px;
    color: #fff;
    position: relative;
}

.msg-left {
    background: #2a2a35;
    border-bottom-left-radius: 2px;
}

.msg-right {
    background: var(--primary-gradient);
    border-bottom-right-radius: 2px;
}

.msg-line {
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    margin-bottom: 4px;
    width: 100px;
}

.msg-line.short {
    width: 60px;
    margin-bottom: 0;
}

/* Schematic Profile */
.profile-view {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
}

.profile-pic {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00C6FF, #0072FF);
    margin-bottom: 15px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.profile-pic::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
}

.p-line {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 8px;
}

.name-line {
    width: 100px;
    height: 12px;
    background: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.bio-line {
    width: 140px;
    height: 6px;
}

.bio-line-2 {
    width: 100px;
    height: 6px;
    margin-bottom: 30px;
}

.settings-row {
    width: 85%;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 10px;
}

.s-icon {
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.s-text {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

/* App Bottom Nav */
.app-nav {
    height: 50px;
    background: #0e0e18;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 5px;
}

.nav-icon {
    font-size: 1rem;
    color: #444;
    transition: 0.3s;
}

.nav-icon.active {
    color: var(--neon-pink);
    transform: scale(1.2);
}

/* --- Detailed Features --- */
.detailed-features {
    padding: 50px 0 100px;
    background: radial-gradient(circle at center, #10101d 0%, var(--bg-dark) 100%);
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 20px;
    transition: 0.3s;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.f-icon {
    min-width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 0, 128, 0.1);
    color: var(--neon-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(255, 0, 128, 0.15);
}

.f-content h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: #fff;
}

.f-content p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.5;
}

.why-us-title {
    text-align: center;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .feature-list {
        grid-template-columns: 1fr;
    }

    .screens-container {
        gap: 30px;
    }
}

/* Enhanced Animations for Chat & Profile */
@keyframes msgSlideLeft {
    from {
        opacity: 0;
        transform: translateX(-15px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes msgSlideRight {
    from {
        opacity: 0;
        transform: translateX(15px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.msg-box {
    animation-fill-mode: forwards;
    opacity: 0;
}

.msg-left {
    animation: msgSlideLeft 0.5s ease forwards;
}

.msg-right {
    animation: msgSlideRight 0.5s ease forwards;
}

/* Stagger chat delays */
.chat-row:nth-child(1) .msg-box {
    animation-delay: 0.2s;
}

.chat-row:nth-child(2) .msg-box {
    animation-delay: 0.8s;
}

.chat-row:nth-child(3) .msg-box {
    animation-delay: 1.4s;
}

/* Profile Animation */
@keyframes profilePop {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes rowSlide {
    from {
        transform: translateY(10px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.profile-pic {
    animation: profilePop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    opacity: 0;
    animation-delay: 0.2s;
}

.p-line {
    opacity: 0;
    animation: rowSlide 0.5s ease forwards;
}

.name-line {
    animation-delay: 0.4s;
}

.bio-line {
    animation-delay: 0.5s;
}

.bio-line-2 {
    animation-delay: 0.6s;
}

.settings-row {
    opacity: 0;
    animation: rowSlide 0.5s ease forwards;
}

.settings-row:nth-child(5) {
    animation-delay: 0.8s;
}

.settings-row:nth-child(6) {
    animation-delay: 0.9s;
}

.settings-row:nth-child(7) {
    animation-delay: 1.0s;
}

/* Signal Icon Resize */
.status-bar .icons .fa-signal {
    font-size: 0.85em;
    margin-right: 4px;
}

/* Stats Hover Effect */
.stat-item {
    transition: transform 0.3s ease;
    cursor: default;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
}

.stat-item:hover h3 {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}


/* Footer Button Pulse Enhancement */
.btn-download.large:hover {
    box-shadow: 0 0 40px rgba(255, 0, 128, 0.7);
}

/* --- Creative Stats Section --- */
.stats {
    padding: 80px 0;
    position: relative;
    z-index: 10;
}

.stats-glass {
    background: rgba(18, 18, 37, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 60px 40px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.stats-glass::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.05) 0%, transparent 60%);
    animation: rotateBg 20s linear infinite;
    z-index: -1;
}

@keyframes rotateBg {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.stat-item {
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-item:hover {
    transform: translateY(-15px);
    transform: translateY(-15px) scale(1.05);
    /* Combined hover effect from previous */
}

.stat-icon {
    font-size: 2.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    filter: drop-shadow(0 5px 15px rgba(255, 0, 128, 0.3));
}

.stat-item h3 {
    /* Overwrites previous h3 style */
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.stat-item p {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* --- Creative & Cool Footer --- */
.cta-footer {
    padding: 150px 0 60px;
    background: #05050a;
    /* Darker clean background */
    position: relative;
    overflow: hidden;
    text-align: center;
}

.footer-bg-glow {
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(121, 40, 202, 0.2) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.relative-z {
    position: relative;
    z-index: 1;
}

.footer-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.footer-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 50px;
}

.footer-cta-wrapper {
    margin-bottom: 80px;
    display: inline-block;
    position: relative;
}

.footer-cta-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 160%;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.15) 0%, transparent 70%);
    z-index: -1;
    animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.footer-links a {
    color: #666;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.copyright a {
    color: #444;
    font-size: 0.85rem;
    text-decoration: none;
}

.copyright a:hover {
    color: var(--neon-pink);
}

@media (max-width: 768px) {
    .stat-item h3 {
        font-size: 2.5rem;
    }

    .footer-title {
        font-size: 2.8rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}