* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    /* font-family: 'Lemon Milk', sans-serif; */
    scroll-behavior: smooth;
    background-color: #000;

}

.hero-section {
    position: relative;
    background-image: url("./images/background1.png");
    background-color: #000000;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Lemon Milk', sans-serif;
    overflow: hidden;
}

/* Add overlay for opacity effect */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.705);
    /* Adjust 0.5 for desired opacity */
    z-index: 0;
}

/* Keep text above the overlay */
.hero-section * {
    position: relative;
    z-index: 1;
}

.scroll-section {
    /* background: #0d0d0d; */
    color: #fff;
    text-align: left;
    padding: 10px;
    font-family: "Poppins", sans-serif;
    overflow: hidden;
}

/* Top Text */
.text-row h3 {
    font-size: 1rem;
    font-weight: 700;
    text-align: center;

}

.highlight {
    color: #b68c2e;
}

/* Scroll Container */
.scroll-box {
    width: 100%;
    max-width: 1100px;
    /* height: 220px; */
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

/* Scrolling Image Row */
.scroll-images {
    display: flex;
    align-items: center;
    animation: scrollLoop 20s linear infinite;
}

.scroll-img {
    width: 250px;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
    margin-right: 10px;
}

/* 🔁 Infinite right-to-left animation */
@keyframes scrollLoop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Yellow Line and Footer Text */
.footer-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    position: relative;
}

.lines {
    position: absolute;
    top: 9px;
    left: 340px;
    /* right: 10px; */
    width: 800px;
    /* adjust */
    height: 2px;
    background: #ffcc00;
}

/* Tablets */
@media (max-width: 768px) {
    .lines {
        left: 210px;
        width: 55%;
    }
}


.footer-row .line {
    position: absolute;
    left: 0;
    right: 180px;
    height: 2px;
    background: #ffcc00;
    top: 9px;
}

.footer-text {
    color: #ffcc00;
    font-size: 1.2rem;
    font-weight: 600;
    margin-left: auto;
}


/* ====================== Brand Section ====================== */
.content .brand {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.content h2 {
    font-size: 30px;
    font-weight: 800;

}

.content h3 {
    font-size: 13px;
    font-weight: 800;

}

.world {
    padding-top: 22px;
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
}

.content p {
    font-size: 13px;
    color: #ffffff;
    margin-bottom: 15px;
}

/* Store Buttons */
.buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.store-btn img {
    height: 50px;
    transition: transform 0.2s ease;
}

.store-btn:hover img {
    transform: scale(1.05);
}


.browser-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #000;
    color: #fff;
    /* padding: 8/px 14px; */
    border-radius: 12px;
    border: 1px solid #fff;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.browser-btn img {
    width: 38px;
    height: 38px;
}

.browser-btn .text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.browser-btn .small {
    font-size: 12px;
    opacity: 0.8;
}

.browser-btn .big {
    font-size: 18px;
    font-weight: 800;
}

.browser-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #000;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    border: 0.5px solid #ffffffc0;
    text-decoration: none;
    height: 50px;
    /* match apple badge */
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.browser-btn img {
    width: 32px;
    /* slightly smaller to match apple badge */
    height: 32px;
}

.browser-btn .text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.browser-btn .small {
    font-size: 11px;
    opacity: 0.8;
}

.browser-btn .big {
    font-size: 17px;
    font-weight: 700;
}

.browser-btn:hover {
    transform: scale(1.05);
}


/* ================= MOBILE/TABLET FIX FOR CONTENT ================= */

@media (max-width: 768px) {

    .content {
        max-width: 100%;
        width: 100%;
        text-align: center;
        padding: 0 15px;
    }

    .content .brand {
        font-size: clamp(22px, 5vw, 32px);
    }

    .content h2 {
        font-size: clamp(16px, 4vw, 24px);
    }

    .content h3 {
        font-size: 8px;
    }

    .world,
    .content p {
        font-size: 11px;
        line-height: 1.6;
    }

    /* BUTTON FIX */
    .buttons {
        flex-wrap: wrap;
        width: 100%;
        gap: 10px;
        justify-content: center;
    }

    .store-btn img {
        height: clamp(32px, 7vw, 45px);
        max-width: 100%;
    }

    .browser-btn {
        padding: 6px 10px;
        gap: 8px;
        width: auto;
        max-width: 95%;
        height: 30px;
        justify-content: center;
    }

    .browser-btn img {
        width: clamp(20px, 6vw, 30px);
        height: clamp(20px, 6vw, 30px);
    }

    .browser-btn .big {
        font-size: clamp(12px, 3.5vw, 18px);
    }

    .browser-btn .small {
        font-size: clamp(10px, 3vw, 14px);
    }
}




/* =============== SMALL MOBILE FIX (max-width: 480px) =============== */
@media (max-width: 480px) {

    .content {
        padding: 0 10px;
        text-align: center;
    }

    .content .brand {
        font-size: clamp(20px, 6vw, 28px);
    }

    .buttons {
        gap: 8px;
    }

    .browser-btn {
        padding: 5px 8px;
        border-radius: 10px;
    }

    .store-btn img {
        height: clamp(28px, 8vw, 40px);
    }

    .browser-btn img {
        width: clamp(18px, 7vw, 26px);
        height: clamp(18px, 7vw, 26px);
    }
}


.phone-image {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
    text-align: center;
    padding: 60px 20px;
    background-color: #000000;
}

.phone-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.phone-card img {
    width: 360px;
    height: auto;
    max-width: 100%;
    transition: transform 0.3s ease;
}

.phone-card-apple img {
    width: 550px;
    height: auto;
    max-width: 100%;
    transition: transform 0.3s ease;
}

.app-store-badge {
    filter: brightness(0) invert(1);
}


.phone-card-webview img {
    width: 680px;
    height: auto;
    max-width: 100%;
    transition: transform 0.3s ease;
}

.phone-card img:hover {
    transform: scale(1.05);
}

.phone-card-apple img:hover {
    transform: scale(1.05);
}

/* Platform name + icon */
.platform {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

.platform img {
    width: 28px;
    height: 28px;
}

.platform h3 {

    font-size: 0.8rem;
    font-weight: 400;
    color: #ffffff;
    /* Telegram-like blue */
}

.platform h3 span {
    font-weight: 600;
    color: #333;
}

.platform h3 b {
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .phone-image {
        flex-direction: column;
        gap: 40px;
        padding: 40px 10px;
    }



    .platform h3 {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .platform img {
        width: 24px;
        height: 24px;
    }



    .platform h3 {
        font-size: 0.95rem;
    }
}

.nova-showcase {
    position: relative;
    padding: 30px;
    background: #000;
    overflow: hidden;
    text-align: center;
}

/* Floating Wave Background */
.nova-wave {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    height: 180px;
    filter: blur(80px);
    opacity: 0.35;
}

/* Title */
.nova-title {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #eacb86, #b28a55);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nova-title span {
    font-family: 'Carybe', sans-serif;
}

.nova-tagline {
    color: #ffffff;

    max-width: 550px;
    margin: 10px auto 50px;
    font-size: 1.2rem;
}

/* Orbit Layout */
.nova-orbit {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 45px;
    max-width: 900px;
    margin: 0 auto;
}

.nova-orb {
    width: 150px;
    height: 150px;
    background: rgb(0, 0, 0);
    border-radius: 10%;
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: float 4s ease-in-out infinite;
    transition: 0.3s ease;
}

.nova-orb:hover {
    transform: translateY(-10px) scale(1.07);
    border-color: rgba(255, 214, 150, 0.7);
}

.nova-orb img {
    width: 150px;
    margin-bottom: 8px;
}

.nova-orb p {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.4px;
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

.papabear-card {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border: 1px solid rgba(212, 175, 55, 0.5);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 20px;
    width: 160px;
    text-align: center;
    transition: all 0.3s ease;
    color: #ffd700;
    font-weight: 500;
}

.papabear-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
}

.papabear-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}

.papabear-phone {
    background: linear-gradient(145deg, #111, #000);
    border-radius: 40px;
    padding: 40px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 260px;
    height: 520px;
    border: 2px solid #d4af37;
    position: relative;
}

.papabear-logo {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
}

@media (max-width: 768px) {
    .papabear-container {
        flex-direction: column;
    }

    .papabear-features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

.papaBear-business-section {
    /* background: linear-gradient(135deg, #fef6f9, #fff); */
    padding: 80px 20px;
    background-color: #000;

}

.papaBear-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.papaBear-content {
    flex: 1 1 45%;
    text-align: left;
    padding: 20px;
}

.papaBear-content h2 {
    font-size: 2.3rem;
    color: #ff4d8d;
    margin-bottom: 15px;
}

.papaBear-content p {
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 15px;
}

.papaBear-btn {
    display: inline-block;
    background: #ff4d8d;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.papaBear-btn:hover {
    background: #e03c7a;
    transform: translateY(-2px);
}

.papaBear-images {
    flex: 1 1 50%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.papaBear-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 230px;
    text-align: center;
    transition: 0.3s;
}

.papaBear-card:hover {
    transform: translateY(-5px);
}

.papaBear-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.papaBear-card h4 {
    font-size: 1.1rem;
    color: #222;
    padding: 12px 0;
}

@media (max-width: 768px) {
    .papaBear-container {
        flex-direction: column;
        text-align: center;
    }

    .papaBear-content {
        flex: 1 1 100%;
    }

    .papaBear-images {
        flex: 1 1 100%;
    }
}

/* 🖤✨ Papa Bear Premium Black & Gold Theme */
:root {
    --gold-primary: #d4af37;
    /* classic gold */
    --gold-light: #f7e7b7;
    /* light gold accent */
    --gold-dark: #b68c2e;
    /* deep metallic gold */
    --black-bg: #0b0b0b;
    /* near-black background */
    --text-light: #fefefe;
    /* soft white text */
    --text-muted: #bfbfbf;
    /* subtle grey */
}

/* Hero Overlay */
.overlay {
    background: rgba(0, 0, 0, 0.65);
}

/* Brand */
.brand {
    color: var(--gold-primary);
}

/* Hero Text */
.overlay h2,
.overlay p {
    color: var(--text-light);
}

/* Papa Bear Growth Section */
.papaBearGrowth-section {
    background: linear-gradient(135deg, var(--black-bg), #1a1a1a);
    color: var(--text-light);
}

.papaBearGrowth-title {
    color: var(--gold-light);
}

.papaBearGrowth-subtext {
    color: var(--text-muted);
}

.papaBearGrowth-subheading {
    color: var(--gold-primary);
}

.papaBearGrowth-subheading::after {
    background: var(--gold-primary);
}

.papaBearGrowth-card {
    background: #141414;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
    color: white;
}

.papaBearGrowth-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.3);
}

.papaBearGrowth-icon {
    background: var(--gold-primary);
    color: var(--black-bg);
}


.papaBear-content h2 {
    color: var(--gold-light);
}

.papaBear-content p {
    color: white;
}

.papaBear-btn {
    background: var(--gold-primary);
    color: var(--black-bg);
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.4);
}

.papaBear-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

/* Papa Bear Cards */
.papaBear-card {
    background: #141414;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
    transition: 0.3s;
}

.papaBear-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
}

.papaBear-card h4 {
    color: var(--gold-light);
}

/* Text and Platform Sections */
.platform h3 {
    color: rgb(255, 255, 255);
}

.platform h3 span {
    color: #b68c2e;
}

.papabear-footer {
    border-top: 2px solid #e2e2e2;
    padding: 40px 10% 0;
    background-color: #000000;
    color: #ffffff;

    font-size: 14px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    text-align: center;
    margin-bottom: 20px;
}

.footer-column {
    min-width: 150px;
    flex: 1;
}

.footer-column h4 {
    font-weight: 400;
    margin-bottom: 10px;
    color: #ffd30e;
    font-size: 13px;
    font-family: 'Lemon Milk', sans-serif;
}

.footer-column p {
    line-height: 1;
    font-size: 10px;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}



.footer-column ul li {
    margin-bottom: 6px;
}

.footer-column ul li a {
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
    /* font-family: 'Lemon Milk', sans-serif; */
}

.footer-column ul li a:hover {
    color: #005f99;
}

/* Footer bottom section */
.footer-bottom {
    border-top: 1px solid #e2e2e2;
    padding: 15px 0;
    text-align: center;
    font-size: 10px;
    color: #ffffff;
    background-color: #000000;
}

.footer-bottom a {
    color: #0088cc;
    text-decoration: none;
    font-weight: 500;
}

.footer-bottom a:hover {
    color: #005f99;
}

.footer-logo {
    width: 150px;

}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 20px;
    }

    .footer-bottom {
        font-size: 12px;
    }
}


.pb-privacy-container {
    /* max-width: 900px; */
    margin: 20px auto;
    padding: 40px;
    background: #000000;


}

.pb-privacy-title {
    font-size: 2.2rem;
    color: #ffd700;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pb-privacy-text {
    line-height: 1.8;
    font-size: 1rem;
    color: #f5f5f5;
}

.pb-privacy-text h2 {
    color: #ffd700;
    margin-top: 25px;
    font-size: 1.3rem;
    border-bottom: 1px solid #bfa05a;
    padding-bottom: 5px;
}

.pb-privacy-text p {
    margin: 15px 0;
}

.pb-privacy-text ul {
    margin: 10px 0 20px 25px;
    padding: 0;
}

.pb-privacy-text li {
    margin-bottom: 8px;
    color: #f0e6c8;
}

.pb-privacy-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
}

.pb-privacy-link:hover {
    text-decoration: underline;
}

.pb-footer-logo-wrap {
    text-align: center;
    /* centers content inside */
}

.pb-footer-logo {
    display: block;
    margin: 0 auto;
    /* centers the image */
    max-width: 180px;
    /* optional: control size */
}

@media (max-width: 768px) {
    .pb-privacy-container {
        margin: 20px;
        padding: 20px;
    }

    .pb-privacy-title {
        font-size: 1.6rem;
    }
}