/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* --- Theme Color Variables --- */
:root, [data-bs-theme="light"] {
    --app-primary-color: #F00C93; /* Relax Pink/Magenta */
    --app-primary-rgb: 240, 12, 147;
    --app-primary-hover: #d10a81; /* Darker pink */
    --app-secondary-color: #667EEA; /* Complementary Purple/Blue */
    --app-secondary-rgb: 102, 126, 234;
    --app-card-bg-rgb: 255, 255, 255;

    --app-body-bg: #ffffff;
    --app-body-color: #212529;
    --app-section-bg-subtle: #f8f9fa; /* Bootstrap light */
    --app-card-bg: #ffffff;
    --app-border-color: #dee2e6;
    --app-muted-text: #6c757d;
    --app-heading-color: #111827; /* Darker heading */

    /* Hero variables for light theme */
    --app-hero-bg: #f8f9fa;
    --app-hero-text: #111827;
    --app-hero-text-muted: #6c757d;

    --app-navbar-bg-transparent: rgba(255, 255, 255, 0.0); /* Fully transparent initially */
    --app-navbar-bg-scrolled: rgba(255, 255, 255, 0.95);
    --app-navbar-link-color: #212529; /* Dark text for light hero */
    --app-navbar-link-color-scrolled: #212529; /* Dark text when scrolled */
    --app-navbar-link-hover: var(--app-primary-color); /* Pink on hover */
    --app-navbar-link-hover-scrolled: var(--app-primary-color); /* Pink on hover when scrolled */
    --app-navbar-brand-color: var(--app-primary-color); /* Pink brand on light */
    --app-navbar-brand-color-scrolled: var(--app-primary-color); /* Pink brand when scrolled */

    --app-footer-bg: var(--app-section-bg-subtle);
    --app-footer-link-color: var(--app-muted-text);
}

[data-bs-theme="dark"] {
    --app-primary-color: #F00C93; /* Keep pink vibrant */
    --app-primary-rgb: 240, 12, 147;
    --app-primary-hover: #ff4db8; /* Lighter pink for hover on dark */
    --app-secondary-color: #7f9cf5; /* Lighter purple/blue */
    --app-secondary-rgb: 127, 156, 245;
    --app-card-bg-rgb: 30, 30, 30;

    --app-body-bg: #121212; /* Standard dark */
    --app-body-color: #e5e7eb; /* Light gray text */
    --app-section-bg-subtle: #1a1a1a; /* Dark gray */
    --app-card-bg: #1a1a1a; /* Same as subtle section */
    --app-border-color: #2a2a2a; /* Darker border */
    --app-muted-text: #9ca3af; /* Lighter muted */
    --app-heading-color: #ffffff;

    /* Hero variables for dark theme */
    --app-hero-bg: #0f0f0f;
    --app-hero-text: #ffffff;
    --app-hero-text-muted: rgba(255, 255, 255, 0.75);

    --app-navbar-bg-transparent: rgba(18, 18, 18, 0.0);
    --app-navbar-bg-scrolled: rgba(18, 18, 18, 0.95);
    --app-navbar-link-color: rgba(255, 255, 255, 0.7);
    --app-navbar-link-color-scrolled: #ffffff;
    --app-navbar-link-hover: #ffffff;
    --app-navbar-link-hover-scrolled: var(--app-primary-hover);
    --app-navbar-brand-color: #ffffff;
    --app-navbar-brand-color-scrolled: var(--app-primary-color);

    --app-footer-bg: #0f0f0f; /* Dark footer */
    --app-footer-link-color: var(--app-muted-text);

    /* Override some Bootstrap dark variables if needed */
    --bs-body-color: var(--app-body-color);
    --bs-body-bg: var(--app-body-bg);
    --bs-tertiary-bg: var(--app-card-bg);
    --bs-link-color-rgb: var(--app-primary-rgb); /* Ensures links use primary color */
    --bs-link-hover-color-rgb: var(--app-primary-rgb); /* Adjust hover if needed */
    --bs-border-color: var(--app-border-color);
}

/* --- Bootstrap Variable Overrides --- */
:root {
    --bs-primary: var(--app-primary-color);
    --bs-primary-rgb: var(--app-primary-rgb);
    --bs-link-color: var(--app-primary-color);
    --bs-link-hover-color: var(--app-primary-hover);
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--app-primary-color);
    --bs-btn-border-color: var(--app-primary-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--app-primary-hover);
    --bs-btn-hover-border-color: var(--app-primary-hover);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--app-primary-hover);
    --bs-btn-active-border-color: var(--app-primary-hover);
    --bs-btn-focus-shadow-rgb: var(--app-primary-rgb);
}

.btn-outline-light {
    /* Ensure good contrast in dark mode */
    --bs-btn-color: var(--app-body-bg);
    --bs-btn-border-color: var(--app-body-bg);
    --bs-btn-hover-color: var(--app-body-bg);
    --bs-btn-hover-bg: var(--app-navbar-link-color-scrolled);
    --bs-btn-hover-border-color: var(--app-navbar-link-color-scrolled);
}
[data-bs-theme="dark"] .btn-outline-light {
    --bs-btn-color: var(--app-body-color);
    --bs-btn-border-color: var(--app-border-color);
    --bs-btn-hover-color: var(--app-body-bg);
    --bs-btn-hover-bg: var(--app-body-color);
    --bs-btn-hover-border-color: var(--app-body-color);
}


/* --- Global Styles --- */
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--app-body-bg);
    color: var(--app-body-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--app-heading-color);
    font-weight: 700;
}

.lead {
    font-weight: 400;
    font-size: 1.15rem;
}

.page-section {
    padding: 6rem 0;
}

hr.divider {
    height: 0.2rem;
    max-width: 5rem;
    margin: 1.5rem auto;
    background-color: var(--app-primary-color);
    opacity: 1;
    border: none;
    border-radius: 1rem;
}
hr.divider-light {
    background-color: rgba(255,255,255,0.8);
}
hr.divider.align-start {
    margin: 1.5rem 0;
    max-width: 6rem;
}

/* --- Navbar Styles --- */
#mainNav {
    background-color: var(--app-navbar-bg-transparent); /* Start transparent */
    transition: background-color 0.4s ease-in-out, padding-top 0.4s ease-in-out, padding-bottom 0.4s ease-in-out;
    border-bottom: 1px solid transparent; /* Add transparent border for smooth transition */
    backdrop-filter: none; /* Remove initial blur */
}

#mainNav .navbar-brand {
    color: var(--app-navbar-brand-color) !important;
    transition: color 0.3s ease-in-out;
}
#mainNav .navbar-brand:hover {
    color: var(--app-primary-hover) !important;
}

#mainNav .navbar-nav .nav-item .nav-link {
    color: var(--app-navbar-link-color) !important;
    font-weight: 500; /* Slightly less bold */
    padding: 0.75rem 1rem; /* Adjust padding */
    transition: color 0.2s ease;
}
#mainNav .navbar-nav .nav-item .nav-link:hover,
#mainNav .navbar-nav .nav-item .nav-link.active { /* Style active link */
    color: var(--app-navbar-link-hover) !important;
}

/* Scrolled state */
#mainNav.navbar-scrolled {
    background-color: var(--app-navbar-bg-scrolled);
    border-bottom: 1px solid var(--app-border-color);
    box-shadow: 0 0.1rem 0.5rem rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(8px); /* Add blur on scroll */
}
[data-bs-theme="dark"] #mainNav.navbar-scrolled {
    box-shadow: 0 0.1rem 0.5rem rgba(255, 255, 255, 0.03);
}

#mainNav.navbar-scrolled .navbar-brand {
    color: var(--app-navbar-brand-color-scrolled) !important;
}
#mainNav.navbar-scrolled .navbar-brand:hover {
    color: var(--app-primary-hover) !important; /* Use hover color */
}

#mainNav.navbar-scrolled .navbar-nav .nav-item .nav-link {
    color: var(--app-navbar-link-color-scrolled) !important;
}
#mainNav.navbar-scrolled .navbar-nav .nav-item .nav-link:hover,
#mainNav.navbar-scrolled .navbar-nav .nav-item .nav-link.active {
    color: var(--app-navbar-link-hover-scrolled) !important;
}

/* --- Logo Theme Switching --- */

.navbar-brand.logo-link img {
    height: 51px;
    width: auto;
    vertical-align: middle;
    transition: opacity 0.3s ease-in-out;
}

/* Logo switching based on theme */
/* logo-light = white logo (for dark backgrounds) */
/* logo-dark = dark/colored logo (for light backgrounds) */

/* Light Mode: Show dark logo (colored), hide light logo (white) */
.logo-link .logo-light {
    display: none;
}
.logo-link .logo-dark {
    display: inline-block;
}

/* Dark Mode: Show light logo (white), hide dark logo */
[data-bs-theme="dark"] .logo-link .logo-light {
    display: inline-block;
}
[data-bs-theme="dark"] .logo-link .logo-dark {
    display: none;
}


/* --- Hero Section --- */
.masthead {
    padding-top: 6rem;
    padding-bottom: 4rem;
    background: #0f0f0f;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.masthead::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

/* Hero Visual Container */
.hero-visual-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.hero-phone-wrapper {
    position: relative;
    z-index: 2;
}

.hero-phone-mockup {
    max-width: 280px;
    height: auto;
    border-radius: 36px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-phone-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

/* Floating Creative Boxes */
.floating-box {
    position: absolute;
    z-index: 3;
    animation: floatBox 4s ease-in-out infinite;
}

.floating-box-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-box-2 {
    bottom: 20%;
    left: 0%;
    animation-delay: -1s;
}

.floating-box-3 {
    top: 15%;
    right: 5%;
    animation-delay: -2s;
}

.floating-box-4 {
    bottom: 25%;
    right: 10%;
    animation-delay: -0.5s;
}

.floating-avatar {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.floating-card {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.floating-card i {
    font-size: 1.1rem;
}

.floating-card-pink {
    background: var(--app-primary-color);
    border: none;
}

@keyframes floatBox {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

/* Social Links */
.hover-white:hover {
    color: #ffffff !important;
    transition: color 0.2s ease;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 10;
}

.scroll-down-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.scroll-down-btn:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
    transform: translateY(3px);
}

/* Hero Badge */
.hero-badge .badge {
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Removed Text Gradient */
.text-gradient {
    color: #ffffff;
}

/* Hero Stats */
.hero-stats .stat-item h4 {
    font-size: 1.5rem;
    line-height: 1.2;
}

/* Hero Mockup Container */
.hero-mockup-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-mockup {
    max-width: 320px;
    border-radius: 30px;
    box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease-out;
}

.hero-mockup.main-mockup {
    z-index: 2;
}

.hero-mockup.secondary-mockup {
    position: absolute;
    max-width: 240px;
    right: -60px;
    top: 40px;
    transform: rotateY(15deg) rotateX(5deg) scale(0.8);
    opacity: 0.9;
    z-index: 1;
}

.masthead:hover .hero-mockup.main-mockup {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.masthead:hover .hero-mockup.secondary-mockup {
    transform: rotateY(10deg) rotateX(3deg) scale(0.85);
}

/* Floating Elements */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

.floating-icon:nth-child(2) {
    animation-delay: -1s;
}

.floating-icon:nth-child(3) {
    animation-delay: -2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* --- Features Section --- */
.features-section {
    background-color: var(--app-body-bg); /* Match body background */
}
.feature-card {
    background-color: var(--app-card-bg);
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    border: 1px solid var(--app-border-color);
    height: 100%; /* Ensure cards in a row have same height */
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.feature-icon {
    /* Style the icon container if needed */
    display: inline-block;
    padding: 1rem;
    background-color: rgba(var(--app-primary-rgb), 0.1);
    border-radius: 50%;
    margin-bottom: 1.5rem !important; /* Override Bootstrap margin */
}
.feature-icon i {
    font-size: 2.5rem; /* Slightly smaller icon */
    color: var(--app-primary-color);
    transition: transform 0.3s ease;
}
.feature-card:hover .feature-icon i {
    transform: scale(1.1);
}

/* --- Showcase Section --- */
.showcase-section {
    background-color: var(--app-section-bg-subtle);
    position: relative;
}

.showcase-content {
    padding: 2rem 0;
}

.showcase-icon {
    display: inline-block;
    padding: 1rem;
    background: rgba(var(--app-primary-rgb), 0.1);
    border-radius: 50%;
    margin-bottom: 1rem;
}

.showcase-features ul {
    margin-bottom: 0;
}

.showcase-stats .col-4 {
    padding: 0.5rem;
}

.app-showcase-container {
    position: relative;
    display: inline-block;
}

.app-screenshot {
    max-width: 320px;
    border-radius: 25px;
    box-shadow: 0px 15px 30px -10px rgba(0, 0, 0, 0.15);
    margin: 1rem auto;
    transition: transform 0.3s ease;
}

.app-screenshot:hover {
    transform: translateY(-5px) scale(1.02);
}

/* Showcase Overlays */
.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.live-indicator {
    position: absolute;
    top: 20px;
    left: 20px;
    animation: pulse 2s infinite;
}

.viewer-count {
    position: absolute;
    top: 20px;
    right: 20px;
}

.match-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: bounce 1s ease-in-out;
}

.earnings-indicator {
    position: absolute;
    bottom: 20px;
    right: 20px;
    animation: slideInUp 0.5s ease-out;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% { transform: translate(-50%, -50%) translateY(0); }
    40%, 43% { transform: translate(-50%, -50%) translateY(-10px); }
    70% { transform: translate(-50%, -50%) translateY(-5px); }
    90% { transform: translate(-50%, -50%) translateY(-2px); }
}

@keyframes slideInUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Revenue Stats */
.revenue-stats .stat-card {
    border: 1px solid var(--app-border-color);
    transition: transform 0.2s ease;
}

.revenue-stats .stat-card:hover {
    transform: translateY(-2px);
}

/* --- Modern Footer --- */
.modern-footer {
    padding: 4rem 0 2rem;
    background: var(--app-section-bg-subtle);
}

.modern-footer h4 {
    color: var(--app-primary-color);
    font-size: 1.5rem;
}

.modern-footer h6 {
    color: var(--app-heading-color);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--app-muted-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--app-primary-color);
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--app-card-bg);
    color: var(--app-muted-text);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--app-border-color);
}

.footer-social-icon:hover {
    color: white;
    background: var(--app-primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 12, 147, 0.2);
    border-color: var(--app-primary-color);
}

.footer-divider {
    margin: 2.5rem 0 1.5rem;
    border-top: 1px solid var(--app-border-color);
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--app-muted-text);
}

@media (max-width: 767.98px) {
    .modern-footer {
        padding: 3rem 0 1.5rem;
    }
}


/* --- Testimonials Section --- */
.testimonials-section {
    background-color: var(--app-body-bg);
}

.testimonial-card {
    background-color: var(--app-card-bg);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--app-border-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    font-size: 0.9rem;
}

.testimonial-card blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--app-body-color);
    position: relative;
}

.testimonial-card blockquote::before {
    content: '"';
    font-size: 2rem;
    color: var(--app-primary-color);
    position: absolute;
    top: -10px;
    left: -10px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.trust-indicators {
    border-top: 1px solid var(--app-border-color);
    padding-top: 3rem;
}

.trust-item {
    padding: 1rem;
    transition: transform 0.2s ease;
}

.trust-item:hover {
    transform: translateY(-3px);
}

/* --- Statistics Section --- */
.stats-section {
    background-color: var(--app-section-bg-subtle);
}

.stat-card {
    background-color: var(--app-card-bg);
    padding: 2.5rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--app-border-color);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    display: inline-block;
    padding: 1rem;
    background: rgba(var(--app-primary-rgb), 0.1);
    border-radius: 50%;
}

/* --- Download Section --- */
.download-section {
    background: var(--app-section-bg-subtle);
    padding: 6rem 0;
}

.download-card {
    background: var(--app-card-bg);
    padding: 4rem 3rem;
    border-radius: 1.5rem;
    border: 1px solid var(--app-border-color);
}

@media (max-width: 768px) {
    .download-card {
        padding: 3rem 2rem;
    }
}

/* --- Footer --- */
.footer {
    background-color: var(--app-footer-bg);
    padding: 3rem 0;
}
.footer .small {
    font-size: 0.875rem;
}
.footer a.link-secondary {
    color: var(--app-footer-link-color);
    transition: color 0.2s ease;
    text-decoration: none;
}
.footer a.link-secondary:hover {
    color: var(--app-primary-color);
    text-decoration: underline;
}
/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 33px;
    background-color: rgba(var(--app-primary-rgb), 0.1);
    border-radius: 50%;
    color: var(--app-muted-text);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.footer-social-link:hover {
    background-color: var(--app-primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--app-primary-rgb), 0.3);
}

.footer-social-link:focus {
    outline: 2px solid var(--app-primary-color);
    outline-offset: 2px;
}

/* Specific social platform colors on hover */
.footer-social-link[href*="twitter"]:hover {
    background-color: #1da1f2;
}

.footer-social-link[href*="instagram"]:hover {
    background-color: #e1306c;
}

.footer-social-link[href*="tiktok"]:hover {
    background-color: #000000;
}

.footer-social-link[href*="facebook"]:hover {
    background-color: #1877f2;
}

.footer-social-link[href*="linkedin"]:hover {
    background-color: #0077b5;
}

/* Dark theme adjustments */
[data-bs-theme="dark"] .footer-social-link {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--app-muted-text);
}

[data-bs-theme="dark"] .footer-social-link:hover {
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Mobile responsive adjustments */
@media (max-width: 767.98px) {
    .footer-social {
        justify-content: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .footer-social-link {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}


/* --- General Button Styles Refined --- */
.btn {
    font-weight: 600;
    padding: 0.8rem 1.8rem;
    border-radius: 50rem; /* Pill shape */
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08); /* Subtle shadow */
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 14px rgba(50,50,93,.1), 0 3px 6px rgba(0,0,0,.08);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* --- Badge Styles --- */
.badge {
    font-weight: 500;
    letter-spacing: 0.5px;
}

.bg-primary-subtle {
    background-color: rgba(var(--app-primary-rgb), 0.1) !important;
}

.bg-secondary-subtle {
    background-color: rgba(var(--app-secondary-rgb), 0.1) !important;
}

.bg-warning-subtle {
    background-color: rgba(255, 193, 7, 0.1) !important;
}

.text-primary {
    color: var(--app-primary-color) !important;
}

.text-secondary {
    color: var(--app-secondary-color) !important;
}

/* --- Enhanced Responsive Design --- */
@media (max-width: 767.98px) {
    .masthead {
        padding-top: 7rem;
        padding-bottom: 3rem;
        min-height: auto;
    }
    
    .masthead .min-vh-100 {
        min-height: auto !important;
    }
    
    .hero-visual-container {
        min-height: 350px;
        margin-top: 2rem;
    }
    
    .hero-phone-mockup {
        max-width: 200px;
    }
    
    .floating-box {
        display: none;
    }
    
    .floating-box-1,
    .floating-box-3 {
        display: block;
    }
    
    .floating-box-1 {
        top: 5%;
        left: -5%;
    }
    
    .floating-box-3 {
        top: 10%;
        right: -5%;
    }
    
    .floating-avatar {
        width: 45px;
        height: 45px;
    }
    
    .floating-card {
        width: 40px;
        height: 40px;
    }

    .hero-mockup.secondary-mockup {
        display: none;
    }

    .hero-stats .col-4 {
        margin-bottom: 1rem;
    }

    .floating-icon {
        display: none;
    }

    .feature-card {
        margin-bottom: 2rem;
    }

    .showcase-content {
        padding: 1rem 0;
        margin-bottom: 2rem;
    }

    .app-screenshot {
        max-width: 280px;
    }

    .download-badges .download-btn {
        min-width: auto;
        width: 100%;
        margin-bottom: 1rem !important;
    }

    .download-stats .col-auto {
        flex: 1;
        margin: 0.25rem;
    }

    .testimonial-card {
        margin-bottom: 2rem;
    }
    
    /* Vibe Rooms Mobile */
    .vibe-rooms-visual {
        min-height: 380px;
    }
    
    .vibe-phone-mockup {
        max-width: 220px;
    }
    
    .activity-float-1 {
        left: 0%;
        top: 5%;
    }
    
    .activity-float-2 {
        right: -5%;
    }
    
    .activity-float-3 {
        left: 5%;
        bottom: 10%;
    }
    
    .activity-float-inner {
        padding: 0.5rem 1rem;
    }
    
    .activity-float-inner i {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .activity-float-inner span {
        font-size: 0.8rem;
    }
    
    .activity-categories {
        grid-template-columns: 1fr;
    }
    
    /* Monetization Mobile */
    .monetization-phone-mockup {
        max-width: 240px;
    }
    
    .earning-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .display-3 {
        font-size: 2.5rem;
    }

    .display-4 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.8rem;
    }

    .hero-stats .stat-item h4 {
        font-size: 1.2rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .stat-card {
        padding: 2rem 1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}

/* --- Performance Optimizations --- */
.img-fluid {
    height: auto;
    max-width: 100%;
}

/* Lazy loading support */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* --- Accessibility Improvements --- */
.btn:focus,
.nav-link:focus {
    outline: 2px solid var(--app-primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: more) {
    .feature-card,
    .testimonial-card,
    .stat-card {
        border-width: 2px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .floating-icon {
        animation: none;
    }

    .download-icon {
        animation: none;
    }
}

/* --- Print Styles --- */
@media print {
    .navbar,
    .download-section,
    .floating-icon {
        display: none !important;
    }

    .masthead {
        background: none !important;
        color: black !important;
    }

    .text-white,
    .text-white-75 {
        color: black !important;
    }
}

/* --- Navigation Enhancements --- */
.navbar-nav {
    gap: 0.5rem;
}

.navbar-nav .nav-item {
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
}

/* Download App Button Styling */
.download-btn {
    background-color: var(--app-primary-color);
    color: white !important;
    border-radius: 25px !important;
    padding: 0.75rem 1.5rem !important;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(var(--app-primary-rgb), 0.3);
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--app-primary-rgb), 0.4);
    color: white !important;
}

.download-btn:active {
    transform: translateY(0);
}

/* Theme Switcher Button */
.theme-switcher-btn {
    background: none !important;
    border-radius: 0.375rem !important;
    color: var(--app-navbar-link-color) !important;
    padding: 0.5rem 0.75rem !important;
    transition: all 0.3s ease;
}
#mainNav.navbar-scrolled .navbar-nav .theme-switcher-btn {
    color: var(--app-navbar-link-color-scrolled) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-radius: 0.75rem;
    padding: 0.75rem 0;
    margin-top: 0.75rem;
    min-width: 200px;
    backdrop-filter: blur(10px);
    background: rgba(var(--app-card-bg-rgb), 0.95);
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: all 0.2s ease;
    border-radius: 0.375rem;
    font-weight: 500;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: var(--app-primary-color) !important;
    background-color: transparent !important;
}

.dropdown-item.active,
.dropdown-item:active{
    background-color: transparent !important;
    color: var(--app-primary-color) !important;
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    opacity: 0.8;
}

.dropdown-item:hover i {
    opacity: 1;
}

.dropdown-divider {
    margin: 0.75rem 1rem;
    border-color: var(--app-border-color);
    opacity: 0.3;
}

/* Active nav link styling */
.nav-link.active {
    color: var(--app-primary-color) !important;
    font-weight: 600;
    position: relative;
    background-color: rgba(var(--app-primary-rgb), 0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: var(--app-primary-color);
    border-radius: 1px;
}

/* Navigation hover effects */
.navbar-nav .nav-link:not(.download-btn):not(.theme-switcher-btn):hover {
    background-color: rgba(var(--app-primary-rgb), 0.08);
    color: var(--app-primary-color);
}

/* Dropdown toggle arrow styling */
.dropdown-toggle::after {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Perfect alignment for navbar items */
@media (min-width: 992px) {
    .navbar-nav {
        align-items: center;
    }

    .navbar-nav .nav-item {
        margin: 0 0.125rem;
    }

    .navbar-nav .nav-link {
        padding: 0.5rem 0.875rem;
        white-space: nowrap;
    }

    .download-btn {
        margin-left: 1rem !important;
    }

    .theme-switcher-btn {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }
}

/* Search functionality */
.navbar-search {
    padding: 1rem;
    border-top: 1px solid var(--app-border-color);
    margin-top: 1rem;
}

.navbar-search .form-control {
    border-radius: 25px;
    border: 1px solid var(--app-border-color);
    padding: 0.5rem 1rem;
}

.navbar-search .btn {
    border-radius: 25px;
    padding: 0.5rem 1rem;
}

/* Mobile navigation enhancements */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--app-card-bg);
        border-radius: 0.5rem;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .navbar-nav {
        gap: 0.25rem;
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-link.active {
        background-color: rgba(var(--app-primary-rgb), 0.1);
        border-radius: 0.25rem;
    }
}

/* --- Responsive Navbar --- */
@media (max-width: 991.98px) {
    #mainNav {
        background-color: var(--app-navbar-bg-scrolled);
        backdrop-filter: blur(10px);
    }

    #mainNav .navbar-brand {
        color: var(--app-primary-color);
    }

    .navbar-nav {
        gap: 0.25rem;
        padding: 1rem 0;
    }

    #mainNav .navbar-nav .nav-item .nav-link {
        color: var(--app-navbar-link-color-scrolled);
        padding: 0.75rem 1rem;
        border-radius: 0.5rem;
        margin: 0.125rem 0;
        font-weight: 500;
    }

    #mainNav .navbar-nav .nav-item .nav-link:hover,
    #mainNav .navbar-nav .nav-item .nav-link.active {
        color: var(--app-primary-hover);
        background-color: rgba(var(--app-primary-rgb), 0.1);
    }

    /* Mobile Download Button */
    .download-btn {
        background-color: var(--app-primary-color) !important;
        color: white !important;
        text-align: center;
        margin: 0.5rem 0 !important;
        padding: 1rem 1.5rem !important;
        border-radius: 0.75rem !important;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(var(--app-primary-rgb), 0.3);
    }

    .download-btn:hover {
        transform: none;
        background-color: var(--app-primary-hover) !important;
    }

    /* Mobile Theme Switcher */
    .theme-switcher-btn {
        justify-content: flex-start !important;
        text-align: left;
        width: 100%;
    }

    #mainNav .navbar-toggler {
        font-size: 1rem;
        padding: 0.5rem 0.75rem;
        border: 1px solid var(--app-border-color);
        border-radius: 0.375rem;
        color: var(--app-navbar-link-color);
    }

    #mainNav.navbar-scrolled .navbar-toggler {
        color: var(--app-navbar-link-color-scrolled);
    }

    #mainNav .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(var(--app-primary-rgb), 0.25);
    }

    /* Mobile Navbar Collapse */
    .navbar-collapse {
        background-color: var(--app-card-bg);
        border-radius: 0.75rem;
        margin-top: 1rem;
        padding: 1.5rem;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        border: 1px solid var(--app-border-color);
    }

    /* Mobile dropdown styling */
    .dropdown-menu {
        background-color: var(--app-section-bg-subtle);
        border: 1px solid var(--app-border-color);
        margin-top: 0.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-radius: 0.5rem;
    }

    .dropdown-item {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        margin: 0.125rem 0.25rem;
    }

    .dropdown-item:hover {
        background-color: rgba(var(--app-primary-rgb), 0.1);
        transform: none;
        border-radius: 0.375rem;
    }
}
@media (min-width: 992px) {
    #mainNav {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        border: none;
        background-color: var(--app-navbar-bg-transparent);
        transition: background-color 0.4s ease-in-out, padding-top 0.4s ease-in-out, padding-bottom 0.4s ease-in-out;
    }
    #mainNav .navbar-brand {
        color: var(--app-navbar-brand-color);
    }
    #mainNav .navbar-brand:hover {
        color: #ffffff;
    }
    #mainNav .navbar-nav .nav-item .nav-link {
        color: var(--app-navbar-link-color);
        padding: 0 1rem; /* Horizontal padding only */
    }
    #mainNav .navbar-nav .nav-item:last-child .nav-link { padding-right: 0; }

    #mainNav .navbar-nav .nav-item .nav-link:hover,
    #mainNav .navbar-nav .nav-item .nav-link.active {
        color: var(--app-navbar-link-hover); /* White on transparent bg */
    }

    #mainNav.navbar-scrolled {
        padding-top: 0.75rem; /* Reduced padding */
        padding-bottom: 0.75rem;
        background-color: var(--app-navbar-bg-scrolled);
        backdrop-filter: blur(8px);
    }
    #mainNav.navbar-scrolled .navbar-brand {
        color: var(--app-navbar-brand-color-scrolled);
    }
    #mainNav.navbar-scrolled .navbar-brand:hover {
        color: var(--app-primary-hover);
    }
    #mainNav.navbar-scrolled .navbar-nav .nav-item .nav-link {
        color: var(--app-navbar-link-color-scrolled);
    }
    #mainNav.navbar-scrolled .navbar-nav .nav-item .nav-link:hover,
    #mainNav.navbar-scrolled .navbar-nav .nav-item .nav-link.active {
        color: var(--app-navbar-link-hover-scrolled);
    }
}

/* --- Monetization Section Enhancements --- */
.showcase-content .icon-wrapper {
    background-color: var(--app-primary-color) !important;
    box-shadow: 0 8px 25px rgba(var(--app-primary-rgb), 0.3);
    transition: all 0.3s ease;
}

.showcase-content .icon-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(var(--app-primary-rgb), 0.4);
}

.feature-item {
    transition: all 0.3s ease;
    border: 1px solid var(--app-border-color) !important;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(var(--app-primary-rgb), 0.1);
    border-color: var(--app-primary-color) !important;
}

.stat-card {
    transition: all 0.3s ease;
    border: 1px solid var(--app-border-color) !important;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(var(--app-primary-rgb), 0.15);
}

.stat-bg-icon {
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.stat-card:hover .stat-bg-icon {
    opacity: 0.2;
}

/* Floating Revenue Elements */
.floating-revenue-elements .revenue-popup {
    animation: float 3s ease-in-out infinite;
}

.floating-revenue-elements .animate-float-delayed {
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.popup-card {
    backdrop-filter: blur(10px);
    border: 1px solid var(--app-border-color) !important;
    background-color: rgba(var(--app-card-bg-rgb), 0.95) !important;
}

/* Dark theme specific adjustments for monetization section */
[data-bs-theme="dark"] .feature-item:hover {
    box-shadow: 0 8px 25px rgba(var(--app-primary-rgb), 0.2);
}

[data-bs-theme="dark"] .stat-card:hover {
    box-shadow: 0 15px 35px rgba(var(--app-primary-rgb), 0.25);
}

[data-bs-theme="dark"] .popup-card {
    background-color: rgba(var(--app-card-bg-rgb), 0.9) !important;
    backdrop-filter: blur(15px);
}

/* Mobile responsiveness for monetization section */
@media (max-width: 768px) {
    .floating-revenue-elements .revenue-popup {
        display: none; /* Hide floating elements on mobile */
    }

    .feature-item:hover {
        transform: none; /* Disable hover transforms on mobile */
    }

    .showcase-content .icon-wrapper {
        width: 60px !important;
        height: 60px !important;
    }

    .showcase-content .icon-wrapper i {
        font-size: 1.5rem !important;
    }
}
/* --- Metopic-Style Dark Hero --- */
.dark-hero {
    background: var(--app-hero-bg);
    min-height: 100vh;
    padding-top: 1rem;
    padding-bottom: 0;
    position: relative;
    overflow: visible;
}

/* Dark Hero for Inner Pages */
.dark-hero-inner {
    background: var(--app-hero-bg);
    padding: 9rem 0 3rem;
    position: relative;
    overflow: hidden;
}

/* Hero text colors */
.dark-hero h1,
.dark-hero h2,
.dark-hero h3,
.dark-hero-inner h1,
.dark-hero-inner h2,
.dark-hero-inner h3,
.dark-hero .hero-title,
.dark-hero-inner .hero-title {
    color: var(--app-hero-text) !important;
}

.dark-hero p,
.dark-hero-inner p,
.dark-hero .hero-subtitle,
.dark-hero-inner .hero-subtitle {
    color: var(--app-hero-text-muted) !important;
}

/* Hero outline button - theme aware */
.dark-hero .hero-btn-outline,
.dark-hero-inner .hero-btn-outline {
    color: var(--app-hero-text);
    border-color: var(--app-border-color);
    background: transparent;
}

.dark-hero .hero-btn-outline:hover,
.dark-hero-inner .hero-btn-outline:hover {
    background: var(--app-hero-text);
    border-color: var(--app-hero-text);
    color: var(--app-hero-bg);
}

.dark-hero::before,
.dark-hero-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

/* Removed Gradient Button - Using Primary Instead */

/* Outline Light Button for Dark Theme */
[data-bs-theme="dark"] .btn-outline-light,
.dark-hero .btn-outline-light,
.dark-hero-inner .btn-outline-light {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    font-weight: 600;
}

[data-bs-theme="dark"] .btn-outline-light:hover,
.dark-hero .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Phone Mockup Container */
.hero-phone-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5rem;
    height: 600px;
}

.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    z-index: 10;
}

.main-phone-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5),
                0 0 80px rgba(240, 12, 147, 0.2);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.floating-element img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.floating-1 {
    width: 180px;
    height: 140px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-2 {
    width: 200px;
    height: 160px;
    top: 50%;
    right: 5%;
    animation-delay: -3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(-2deg);
    }
    50% {
        transform: translateY(-30px) rotate(2deg);
    }
}

/* Text White 75% Opacity */
.text-white-75 {
    color: rgba(255, 255, 255, 0.75);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-phone-container {
        height: 500px;
        margin-top: 3rem;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .floating-element {
        display: none;
    }
}

@media (max-width: 767px) {
    .dark-hero {
        padding-top: 6rem;
        padding-bottom: 2rem;
    }
    
    .hero-phone-container {
        height: 400px;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
}
/* Footer Social Links */
.footer-social-links a {
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    color: var(--app-primary-color) !important;
    transform: translateY(-3px);
}

/* Modern Icon Circles */
.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(240, 12, 147, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.icon-circle i {
    color: var(--app-primary-color);
    transition: transform 0.3s ease;
}

.feature-card:hover .icon-circle {
    background: rgba(240, 12, 147, 0.2);
    transform: scale(1.1);
}

.feature-card:hover .icon-circle i {
    transform: scale(1.1);
}

/* Simplified features section */
.features-section.bg-light {
    background-color: #fafafa !important;
}

[data-bs-theme="dark"] .features-section.bg-light {
    background-color: #121212 !important;
}

/* Simple Feature Cards */
.simple-feature-card {
    padding: 2rem 1.5rem;
    transition: transform 0.3s ease;
}

.simple-feature-card:hover {
    transform: translateY(-10px);
}

.simple-feature-icon {
    color: var(--app-primary-color);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.simple-feature-card:hover .simple-feature-icon {
    opacity: 1;
    transform: scale(1.1);
}

.simple-feature-card h4 {
    font-weight: 600;
}

.simple-feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Vibe Rooms Section */
.vibe-rooms-section {
    padding: 8rem 0;
    background: var(--app-body-bg);
    overflow: hidden;
}

[data-bs-theme="dark"] .vibe-rooms-section {
    background: var(--app-body-bg);
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(var(--app-primary-rgb), 0.1);
    color: var(--app-primary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Vibe Rooms Visual */
.vibe-rooms-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.vibe-phone-container {
    position: relative;
}

.vibe-phone-mockup {
    max-width: 280px;
    height: auto;
    border-radius: 32px;
    box-shadow: 
        0 30px 60px -15px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

/* Floating Activity Cards */
.activity-float-card {
    position: absolute;
    z-index: 2;
    animation: floatActivity 4s ease-in-out infinite;
}

.activity-float-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: white;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.activity-float-inner i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--app-primary-color);
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
}

.activity-float-inner span {
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
}

.activity-float-1 {
    top: 10%;
    left: -20%;
    animation-delay: 0s;
}

.activity-float-2 {
    top: 50%;
    right: -25%;
    animation-delay: -1.5s;
}

.activity-float-3 {
    bottom: 15%;
    left: -15%;
    animation-delay: -3s;
}

@keyframes floatActivity {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

/* Activity Categories */
.activity-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.activity-category {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--app-card-bg);
    border-radius: 16px;
    border: 1px solid var(--app-border-color);
    transition: all 0.3s ease;
}

.activity-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--app-primary-color);
}

.activity-category-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--app-primary-rgb), 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.activity-category-icon i {
    color: var(--app-primary-color);
    font-size: 1.1rem;
}

.activity-category-text {
    display: flex;
    flex-direction: column;
}

.activity-category-text strong {
    font-size: 0.95rem;
    color: var(--app-heading-color);
}

.activity-category-text span {
    font-size: 0.8rem;
    color: var(--app-muted-text);
}

/* Creator Income Section */
.creator-income-section {
    padding: 6rem 0;
    background: var(--app-body-bg);
}

/* Income Card */
.income-card {
    background: var(--app-card-bg);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--app-border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.income-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--app-primary-color);
}

.income-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    background: rgba(var(--app-primary-rgb), 0.1);
}

.income-card-icon i {
    font-size: 1.35rem;
    color: var(--app-primary-color);
}

.income-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--app-heading-color);
}

.income-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--app-muted-text);
    margin-bottom: 0;
}

/* Legacy Monetization Section - keeping for compatibility */
.monetization-section {
    padding: 8rem 0;
    background: #ffffff;
}

[data-bs-theme="dark"] .monetization-section {
    background: #121212;
}

/* Monetization Visual */
.monetization-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.monetization-phone-container {
    position: relative;
}

.monetization-phone-mockup {
    max-width: 300px;
    height: auto;
    border-radius: 32px;
    box-shadow: 
        0 30px 60px -15px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

/* Earning Methods */
.earning-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.earning-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--app-section-bg-subtle);
    border-radius: 16px;
    border: 1px solid var(--app-border-color);
    transition: all 0.3s ease;
}

.earning-method:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--app-primary-color);
}

.earning-method-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--app-primary-color);
    border-radius: 12px;
    flex-shrink: 0;
}

.earning-method-icon i {
    color: white;
    font-size: 1rem;
}

.earning-method-text {
    display: flex;
    flex-direction: column;
}

.earning-method-text strong {
    font-size: 0.95rem;
    color: var(--app-heading-color);
}

.earning-method-text span {
    font-size: 0.8rem;
    color: var(--app-muted-text);
}

/* Legacy - keeping for compatibility */
.monetization-split-section {
    min-height: 600px;
}

.bg-primary-section {
    background: var(--bs-primary);
    position: relative;
}

.bg-primary-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.03);
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.85);
}

.revenue-stats .stat-item {
    border-left: 3px solid rgba(255, 255, 255, 0.3);
    padding-left: 1rem;
}

/* Creator Story Card - Human Relatable Design */
.creator-story-card {
    background: white;
    border-radius: 20px;
    padding: 1.75rem;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.creator-story-card p {
    line-height: 1.6;
    font-size: 1rem;
}

.how-creators-earn {
    margin-top: 1rem;
}

.earn-method {
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.earn-method:hover {
    background: var(--app-section-bg-subtle) !important;
    transform: translateX(4px);
}

.earn-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--app-primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.earn-icon i {
    color: white;
    font-size: 1.25rem;
}

.revenue-method {
    background: var(--app-card-bg);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid var(--app-border-color);
}

.revenue-method:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.revenue-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--app-primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.revenue-icon i {
    color: white;
    font-size: 1.25rem;
}
