:root {
    --primary-color: #3db6a5;
    --primary-dark: #2a9d8f;
    --primary-light: #7fd1c7;
    --secondary-color: #264653;
    --accent-color: #e9c46a;
    --accent-dark: #e76f51;
    --dark-color: #263238;
    --dark-color-lighter: #37474f;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --success-color: #2ecc71;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Poppins', var(--font-main);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 15px 35px rgba(0, 0, 0, 0.18);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 20px;
    --max-width: 1400px;
    --header-height: 80px;
    --z-index-low: 10;
    --z-index-mid: 50;
    --z-index-high: 100;
    --z-index-modal: 1000;
}

[data-theme="dark"] {
    --primary-color: #2a9d8f;
    --primary-dark: #1e7971;
    --primary-light: #56c2b6;
    --secondary-color: #1a3440;
    --dark-color: #eeeeee;
    --dark-color2: #263238;
    --dark-color-lighter: #cccccc;
    --light-color: #121212;
    --gray-color: #aaaaaa;
    --light-gray: #242424;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.35);
    --shadow-xl: 0 15px 35px rgba(0, 0, 0, 0.45);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
    transition: background-color var(--transition-normal), color var(--transition-normal);
    position: relative;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast), opacity var(--transition-fast), transform var(--transition-fast);
    position: relative;
}

a:hover {
    color: var(--primary-dark);
}

a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

ul, ol {
    list-style-position: inside;
    margin-bottom: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
}

code {
    background-color: var(--light-gray);
    padding: 0.2rem 0.4rem;
    border-radius: var(--border-radius-sm);
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.9rem;
    transition: background-color var(--transition-normal);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray-color);
    font-size: 1.2rem;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.8' numOctaves='-4-4-4-4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

[data-theme="dark"] .noise-overlay {
    opacity: 0.04;
}

.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(61, 182, 165, 0.15) 0%, rgba(61, 182, 165, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    transition: background var(--transition-normal);
    opacity: 0;
    transform: translate(-50%, -50%);
}

[data-theme="dark"] .cursor-glow {
    background: radial-gradient(circle, rgba(42, 157, 143, 0.2) 0%, rgba(42, 157, 143, 0) 70%);
    opacity: 1;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: width var(--transition-normal);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn i {
    transition: transform var(--transition-normal);
}

.btn:hover i {
    transform: translateX(3px);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.btn-secondary {
    background-color: transparent;
    color: var(--dark-color);
    border: 2px solid currentColor;
}

.btn-secondary:hover {
    background-color: var(--dark-color);
    color: var(--light-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid currentColor;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-large {
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
}

.btn-animated .fa-arrow-down {
    animation: bounce 2s infinite;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Dark Mode Toggle */
.theme-switch-wrapper {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.theme-switch {
    display: inline-block;
    height: 28px;
    position: relative;
    width: 56px;
}

.theme-switch input {
    display: none;
}

.slider {
    background-color: var(--light-gray);
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.slider:before {
    background-color: var(--light-color);
    bottom: 3px;
    content: "";
    height: 20px;
    left: 4px;
    position: absolute;
    transition: var(--transition-normal);
    width: 20px;
    z-index: 2;
}

.slider .fa-sun,
.slider .fa-moon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    transition: var(--transition-normal);
}

.slider .fa-sun {
    right: 8px;
    color: #f1c40f;
}

.slider .fa-moon {
    left: 8px;
    color: #f8f9fa;
    opacity: 0;
}

input:checked + .slider {
    background-color: var(--dark-color-lighter);
}

input:checked + .slider:before {
    transform: translateX(26px);
    background-color: var(--dark-color);
}

input:checked + .slider .fa-sun {
    opacity: 0;
}

input:checked + .slider .fa-moon {
    opacity: 1;
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

/* Header & Navigation */
header {
    position: relative;
}

.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-index-high);
    padding: 1rem 0;
    transition: all var(--transition-normal);
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .glass-nav {
    background-color: rgba(18, 18, 18, 0.8);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.15);
}

.glass-nav.scrolled {
    padding: 0.7rem 0;
    background-color: rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] .glass-nav.scrolled {
    background-color: rgba(18, 18, 18, 0.9);
}

.glass-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-img {
    height: 40px;
    margin-right: 10px;
    transition: transform var(--transition-normal);
}

.logo:hover .logo-img {
    transform: rotate(10deg);
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
}

.nav-links li {
    margin: 0 0 0 1.5rem;
}

.nav-link {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
}

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

.hero {
    padding: 140px 0 80px;
    background-color: transparent;
    position: relative;
    overflow: hidden;
    perspective: 1000px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
    transition: all var(--transition-slow);
}

.circle-1 {
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background-color: var(--primary-color);
    animation: float 18s infinite ease-in-out;
}

.circle-2 {
    bottom: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    background-color: var(--accent-color);
    animation: float 15s infinite ease-in-out reverse;
}

.circle-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background-color: var(--primary-light);
    opacity: 0.15;
    animation: pulse 12s infinite ease-in-out;
}

[data-theme="dark"] .circle {
    opacity: 0.15;
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.new-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(233, 196, 106, 0.2);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.badge-text {
    margin-left: 0.5rem;
    opacity: 0.9;
}

.glitch {
    position: relative;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: text-shadow 2s ease-in-out infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -1px 0 var(--primary-light);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-1 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -1px 0 var(--primary-dark);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% {
        clip: rect(30px, 9999px, 10px, 0);
    }
    10% {
        clip: rect(16px, 9999px, 95px, 0);
    }
    20% {
        clip: rect(89px, 9999px, 56px, 0);
    }
    30% {
        clip: rect(32px, 9999px, 36px, 0);
    }
    40% {
        clip: rect(93px, 9999px, 100px, 0);
    }
    50% {
        clip: rect(9px, 9999px, 17px, 0);
    }
    60% {
        clip: rect(34px, 9999px, 34px, 0);
    }
    70% {
        clip: rect(89px, 9999px, 4px, 0);
    }
    80% {
        clip: rect(9px, 9999px, 92px, 0);
    }
    90% {
        clip: rect(41px, 9999px, 71px, 0);
    }
    100% {
        clip: rect(21px, 9999px, 6px, 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip: rect(93px, 9999px, 26px, 0);
    }
    10% {
        clip: rect(53px, 9999px, 2px, 0);
    }
    20% {
        clip: rect(92px, 9999px, 52px, 0);
    }
    30% {
        clip: rect(28px, 9999px, 65px, 0);
    }
    40% {
        clip: rect(45px, 9999px, 46px, 0);
    }
    50% {
        clip: rect(54px, 9999px, 18px, 0);
    }
    60% {
        clip: rect(10px, 9999px, 72px, 0);
    }
    70% {
        clip: rect(23px, 9999px, 58px, 0);
    }
    80% {
        clip: rect(38px, 9999px, 39px, 0);
    }
    90% {
        clip: rect(31px, 9999px, 62px, 0);
    }
    100% {
        clip: rect(61px, 9999px, 77px, 0);
    }
}

@keyframes text-shadow {
    0% {
        text-shadow: 0.25px 0 1px rgba(0, 0, 0, 0.1), -0.25px 0 1px rgba(255, 255, 255, 0.2);
    }
    20% {
        text-shadow: 0.25px 0 1px rgba(0, 0, 0, 0.1), -0.25px 0 1px rgba(255, 255, 255, 0.2);
    }
    21% {
        text-shadow: 1px 0 1px rgba(0, 0, 0, 0.1), -1px 0 1px rgba(255, 255, 255, 0.2);
    }
    40% {
        text-shadow: 1px 0 1px rgba(0, 0, 0, 0.1), -1px 0 1px rgba(255, 255, 255, 0.2);
    }
    60% {
        text-shadow: 0.5px 0 1px rgba(0, 0, 0, 0.1), -0.5px 0 1px rgba(255, 255, 255, 0.2);
    }
    80% {
        text-shadow: 0.25px 0 1px rgba(0, 0, 0, 0.1), -0.25px 0 1px rgba(255, 255, 255, 0.2);
    }
    100% {
        text-shadow: 0.25px 0 1px rgba(0, 0, 0, 0.1), -0.25px 0 1px rgba(255, 255, 255, 0.2);
    }
}

.hero-subtitle {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: var(--dark-color);
    transition: color var(--transition-normal);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--gray-color);
    max-width: 540px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

/* Product Hunt Badge in Hero Section */
.product-hunt-badge {
    margin-top: 25px;
    transition: transform 0.3s ease;
}

.product-hunt-badge:hover {
    transform: translateY(-5px);
}

[data-theme="dark"] .product-hunt-badge img {
    filter: invert(1);
}

.hero-image {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    position: relative;
    z-index: 1;
}

.demo-gif {
    max-width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.hover-float {
    animation: float-vertical 6s ease-in-out infinite;
}

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

.demo-shadow {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 25px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0) 80%);
    border-radius: 50%;
    z-index: -1;
    animation: shadow-pulse 6s ease-in-out infinite;
}

@keyframes shadow-pulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.15;
    }
    50% {
        transform: translateX(-50%) scale(0.85);
        opacity: 0.1;
    }
}

.floating-labels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-label {
    position: absolute;
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
    animation: float-labels 5s ease-in-out infinite;
}

[data-theme="dark"] .floating-label {
    background-color: rgba(18, 18, 18, 0.9);
}

.floating-label:nth-child(2) {
    animation-delay: 1.5s;
}

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

.label-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: 8px;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--gray-color);
    font-size: 0.875rem;
    opacity: 0.8;
    transition: opacity var(--transition-normal);
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid currentColor;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background-color: currentColor;
    border-radius: 4px;
    margin-top: 8px;
    animation: mouse-wheel 2s ease infinite;
}

@keyframes mouse-wheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background-color: rgba(0, 0, 0, 0.03);
    transition: background-color var(--transition-normal);
}

[data-theme="dark"] .stats {
    background-color: rgba(255, 255, 255, 0.03);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    flex: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--gray-color);
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background-color: var(--light-color);
    position: relative;
    z-index: 1;
}

[data-theme="dark"] .features {
    background-color: var(--light-color);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.highlight {
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), background-color var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

[data-theme="dark"] .feature-card {
    background-color: rgba(30, 30, 35, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(60, 60, 70, 0.5);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 50%, rgba(61, 182, 165, 0.03) 100%);
    z-index: -1;
    transition: opacity var(--transition-normal);
}

[data-theme="dark"] .feature-card::before {
    background: linear-gradient(45deg, transparent 50%, rgba(42, 157, 143, 0.05) 100%);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: transform var(--transition-normal);
}

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    transition: color var(--transition-normal);
}

.feature-card p {
    color: var(--gray-color);
}

.feature-hover-content {
    margin-top: 1.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.feature-card:hover .feature-hover-content {
    opacity: 1;
    transform: translateY(0);
}

.feature-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
}

.feature-link i {
    margin-left: 0.5rem;
    transition: transform var(--transition-normal);
}

.feature-link:hover i {
    transform: translateX(3px);
}

/* Video Showcase */
.video-showcase {
    padding: 6rem 0;
    background-color: var(--light-gray);
    transition: background-color var(--transition-normal);
}

.video-container {
    margin-bottom: 3rem;
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-placeholder {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    cursor: pointer;
}

.video-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.video-placeholder:hover .video-thumb {
    transform: scale(1.02);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
    transition: all var(--transition-normal);
    box-shadow: 0 0 0 10px rgba(61, 182, 165, 0.2);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 0 15px rgba(61, 182, 165, 0.2);
}

.video-text {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.video-text h2 {
    margin-bottom: 1rem;
}

.video-text p {
    color: var(--gray-color);
    font-size: 1.2rem;
}

/* Installation Section */
.installation {
    padding: 6rem 0;
    background-color: var(--light-color);
    transition: background-color var(--transition-normal);
}

.installation-steps {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.step {
    display: flex;
    gap: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    background-color: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), background-color var(--transition-normal);
}

.step:hover .step-number {
    transform: scale(1.1) rotate(10deg);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    transition: color var(--transition-normal);
}

.step-content p {
    margin-bottom: 1.5rem;
    color: var(--gray-color);
}

.image-reveal {
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
}

.image-reveal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transform: translateX(-100%);
    opacity: 0.2;
    z-index: 1;
    transition: transform 0.6s ease;
}

.step.visible .image-reveal::before {
    transform: translateX(100%);
}

.step-image {
    max-width: 100%;
    border-radius: var(--border-radius-lg);
    display: block;
    transition: transform var(--transition-normal);
}

.image-reveal:hover .step-image {
    transform: scale(1.02);
}

/* Usage Section */
.usage {
    padding: 6rem 0;
    background-color: var(--light-gray);
    transition: background-color var(--transition-normal);
}

.usage-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.usage-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.usage-card {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), background-color var(--transition-normal);
}

[data-theme="dark"] .usage-card {
    background-color: rgba(30, 30, 35, 0.8);
}

.usage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.usage-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    transition: color var(--transition-normal);
}

.shortcuts {
    list-style: none;
    margin-bottom: 1.5rem;
}

.shortcuts li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.shortcut {
    display: inline-block;
    background-color: var(--light-color);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-md);
    font-family: monospace;
    margin-right: 1rem;
    border: 1px solid #ddd;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    font-weight: 600;
}

[data-theme="dark"] .shortcut {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-sm);
}

.shortcuts li:hover .shortcut {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.shortcut-description {
    color: var(--gray-color);
}

.tips-list {
    list-style: none;
    margin-bottom: 0;
}

.tips-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--gray-color);
}

.tips-list i {
    color: var(--success-color);
    margin-right: 0.75rem;
}

.usage-image {
    flex: 1;
}

.macbook-mockup {
    position: relative;
    padding-bottom: 20px;
    perspective: 1000px;
}

.macbook-screen {
    position: relative;
    background-color: #111;
    border-radius: 12px 12px 0 0;
    padding: 12px 12px 0;
    box-shadow: var(--shadow-lg);
    transform: rotateX(5deg);
    transition: transform var(--transition-normal);
}

.macbook-mockup:hover .macbook-screen {
    transform: rotateX(0);
}

.usage-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 2px 2px 0 0;
}

.macbook-body {
    height: 20px;
    background-color: #ddd;
    border-radius: 0 0 12px 12px;
    position: relative;
    transform: rotateX(5deg);
    transition: transform var(--transition-normal);
}

.macbook-mockup:hover .macbook-body {
    transform: rotateX(0);
}

.macbook-body::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 6px;
    background-color: #bbb;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

[data-theme="dark"] .macbook-body {
    background-color: #333;
}

[data-theme="dark"] .macbook-body::before {
    background-color: #555;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background-color: var(--light-color);
    transition: background-color var(--transition-normal);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto 2rem;
    height: 300px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow var(--transition-normal);
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .testimonial-card {
    background-color: rgba(30, 30, 35, 0.8);
    border: 1px solid rgba(60, 60, 70, 0.5);
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.testimonial-content p {
    position: relative;
    padding: 0 2rem;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-light);
    position: absolute;
    line-height: 1;
}

.testimonial-content p::before {
    left: 0;
    top: -0.5rem;
}

.testimonial-content p::after {
    right: 0;
    bottom: -1.5rem;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--light-gray);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.author-info p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-gray);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    padding: 0;
}

.testimonial-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
    perspective: 1000px;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 20, 25, 0.9) 0%, rgba(30, 30, 35, 0.9) 100%);
}

.cta-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-content .btn-primary {
    background-color: white;
    color: var(--primary-color);
    font-size: 1.2rem;
    padding: 1rem 2rem;
    margin-bottom: 1.5rem;
}

.cta-content .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.compatibility {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

.compatibility i {
    margin-right: 0.5rem;
}

/* Uninstall Section */
.uninstall {
    padding: 6rem 0;
    background-color: var(--light-gray);
    transition: background-color var(--transition-normal);
}

.uninstall-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
}

.uninstall-image {
    margin-bottom: 3rem;
}

.sad-logo {
    width: 100px;
    height: 100px;
    opacity: 0.8;
    filter: grayscale(50%);
    transition: all var(--transition-normal);
}

.sad-logo:hover {
    filter: grayscale(0);
    transform: scale(1.05);
}

.uninstall-steps {
    list-style: none;
    width: 100%;
    padding: 0;
    margin-bottom: 3rem;
}

.uninstall-steps li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .uninstall-steps li {
    background-color: var(--dark-color-lighter);
    border-color: rgba(255, 255, 255, 0.05);
}

.uninstall-steps li:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.uninstall-step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background-color: var(--light-gray);
    color: var(--gray-color);
    border-radius: 50%;
    font-weight: 600;
    margin-right: 1.5rem;
    flex-shrink: 0;
    transition: all var(--transition-normal);
}

.uninstall-steps li:hover .uninstall-step-number {
    background-color: var(--primary-color);
    color: white;
}

.uninstall-step-text {
    font-size: 1.1rem;
    color: var(--dark-color);
    transition: color var(--transition-normal);
}

.reinstall-prompt {
    text-align: center;
    font-size: 1.1rem;
}

.reinstall-prompt a {
    font-weight: 600;
}

/* Support Section */
.support {
    padding: 6rem 0;
    background-color: var(--light);
    transition: background-color var(--transition-normal);
}

.support-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.support-option {
    background-color: var(--light-color);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    flex: 1;
    max-width: 350px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .support-option {
    background-color: var(--dark-color-lighter);
    border-color: rgba(255, 255, 255, 0.05);
}

.support-option:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.support-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(61, 182, 165, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    font-size: 2rem;
    transition: all var(--transition-normal);
}

.support-option:hover .support-icon {
    transform: scale(1.1);
    background-color: var(--primary-color);
    color: white;
}

.support-option h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    transition: color var(--transition-normal);
}

.support-option p {
    margin-bottom: 2rem;
    color: var(--gray-color);
}

.support-option .btn {
    min-width: 160px;
    margin-top: 1rem;
}

/* Footer */
footer {
    position: relative;
    padding: 80px 0 30px;
    overflow: hidden;
    background-color: #1e2022; /* Dark background for footer in both modes */
    color: #ffffff;
    z-index: 1;
}

[data-theme="dark"] footer {
    background-color: #121314; /* Slightly darker in dark mode */
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
    z-index: -1;
}

.wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-repeat: repeat-x;
    opacity: 0.15;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23ffffff' fill-opacity='.1'/%3E%3C/svg%3E");
}

.wave1 {
    opacity: 0.2;
    animation: wave-animation 25s linear infinite;
}

.wave2 {
    opacity: 0.1;
    animation: wave-animation-reverse 20s linear infinite;
}

.wave3 {
    opacity: 0.05;
    animation: wave-animation 15s linear infinite;
}

@keyframes wave-animation {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-25%);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes wave-animation-reverse {
    0% {
        transform: translateX(-50%);
    }
    50% {
        transform: translateX(-25%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Improve footer content styling */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-logo-img {
    height: 40px;
    margin-right: 10px;
}

.footer-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.footer-nav-column h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-nav-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-column li {
    margin-bottom: 10px;
}

.footer-nav-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-nav-column a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.heart-beat {
    display: inline-block;
    animation: heart-beat 2s infinite;
}

@keyframes heart-beat {
    0%, 100% {
        transform: scale(1);
    }
    10%, 30% {
        transform: scale(1.2);
    }
    20%, 40% {
        transform: scale(0.9);
    }
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    color: white;
    font-size: 1.5rem;
    transition: all var(--transition-normal);
}

.social-link:hover {
    opacity: 0.8;
    color: white;
    transform: translateY(-5px);
}

.footer-nav {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-nav-column {
    flex: 1;
    max-width: 200px;
}

.footer-nav-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: white;
    opacity: 0.9;
}

.footer-nav-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-nav-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-normal);
}

.footer-nav-column a:hover {
    color: white;
    transform: translateX(3px);
    display: inline-block;
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: var(--z-index-high);
}

#back-to-top-btn {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    opacity: 0;
    transform: translateY(20px);
    cursor: pointer;
}

#back-to-top-btn.show {
    opacity: 1;
    transform: translateY(0);
}

#back-to-top-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: var(--z-index-high);
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--dark-color);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

[data-theme="dark"] .mobile-menu-toggle span {
    background-color: var(--light-color);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--light-color);
    z-index: calc(var(--z-index-high) - 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    padding: 2rem;
}

[data-theme="dark"] .mobile-menu {
    background-color: var(--light-color);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav-links li {
    margin-bottom: 2rem;
}

.mobile-nav-links a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    transition: all var(--transition-normal);
}

.mobile-nav-links a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 95%;
    }
    
    h1 {
        font-size: 3.5rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero .container,
    .usage-content {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .cta-buttons,
    .floating-labels {
        justify-content: center;
    }
    
    .usage-text {
        margin-bottom: 3rem;
        order: 2;
    }
    
    .usage-image {
        order: 1;
        margin-bottom: 2rem;
    }
    
    .macbook-mockup {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .support-options {
        flex-direction: column;
        align-items: center;
    }
    
    .support-option {
        margin-bottom: 2rem;
        width: 100%;
    }
    
    .step {
        gap: 1.5rem;
    }
    
    .stats-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-content,
    .footer-nav {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-nav-column {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-right {
        justify-content: flex-end;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero {
        padding: 100px 0 50px;
    }
    
    .floating-label {
        display: none;
    }

    .product-hunt-badge img {
        width: 200px;
        height: 43px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        margin-right: 0;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
    }
    
    .uninstall-steps li {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .uninstall-step-number {
        margin-right: 0;
    }
}

@media (max-width: 576px) {
    .feature-card {
        flex-basis: 100%;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .product-hunt-badge {
        margin-top: 20px;
    }
    
    .product-hunt-badge img {
        width: 180px;
        height: 39px;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
    
    .back-to-top {
        right: 15px;
        bottom: 15px;
    }
    
    #back-to-top-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* About Us Section */
.about-us {
    background-color: var(--bg-color);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .about-us {
    background-color: var(--bg-dark);
}

.about-container {
    display: flex;
    justify-content: center;
    perspective: 1000px;
    margin: 3rem 0;
}

.developer-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 1.5rem;
    padding: 2.5rem;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    transform: rotateY(0deg);
}

[data-theme="dark"] .developer-card {
    background: rgba(30, 30, 34, 0.9);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.developer-card:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .developer-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.developer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--primary-rgb), 0) 50%);
    z-index: 0;
    pointer-events: none;
}

.developer-profile {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.profile-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-right: 2rem;
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.profile-image i {
    font-size: 3rem;
    color: white;
}

.developer-info {
    flex: 1;
}

.developer-info h3 {
    font-size: 2rem;
    margin: 0 0 0.3rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.developer-title {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.developer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.developer-links a {
    display: flex;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    background: rgba(var(--primary-rgb), 0.1);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

[data-theme="dark"] .developer-links a {
    background: rgba(255, 255, 255, 0.1);
}

.developer-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.developer-bio {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.developer-bio p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.developer-bio p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.4;
    line-height: 1;
}

.dev-quote {
    font-weight: 500;
    font-style: normal !important;
    margin-top: 1rem;
    padding-left: 0 !important;
}

.dev-quote::before {
    display: none;
}

.fun-facts, .tech-stack {
    background: rgba(var(--primary-rgb), 0.05);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

[data-theme="dark"] .fun-facts,
[data-theme="dark"] .tech-stack {
    background: rgba(255, 255, 255, 0.05);
}

.fun-facts:hover, .tech-stack:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .fun-facts:hover,
[data-theme="dark"] .tech-stack:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.fun-facts h4, .tech-stack h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    color: var(--text-color);
}

.emoji {
    margin-left: 0.5rem;
    font-size: 1.2rem;
    display: inline-block;
    animation: bounce 2s infinite;
}

.facts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.facts-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--text-color);
    transition: transform 0.3s ease;
}

.facts-list li:hover {
    transform: translateX(10px);
}

.fact-icon {
    margin-right: 0.8rem;
    font-size: 1.2rem;
    display: inline-block;
}

.tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tech-pill {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-pill:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.4);
}

.about-cta {
    text-align: center;
    margin-top: 3rem;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.about-cta .btn {
    padding: 0.8rem 2rem;
    font-weight: 600;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

/* Parallax Effects */
.parallax-container {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.circle-parallax {
    transform: translateZ(-1px) scale(1.1);
}

.hero-parallax {
    transform: translateZ(-2px) scale(1.2);
}

.sloth-mascot {
    position: absolute;
    z-index: 1;
    width: 150px;
    height: auto;
    bottom: -50px;
    right: -40px;
    transform: translateZ(0);
    will-change: transform;
    transition: transform 0.2s ease-out;
}

/* Floating images */
.floating-image {
    position: absolute;
    z-index: 1;
    will-change: transform;
    transition: transform 0.2s ease-out;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
}

.clipboard-icon {
    width: 100px;
    height: auto;
    top: 20%;
    right: -30px;
    animation: float-clipboard 6s ease-in-out infinite;
}

.mac-icon {
    width: 120px;
    height: auto;
    bottom: -30px;
    left: -30px;
    animation: float-mac 8s ease-in-out infinite alternate;
}

.keyboard-icon {
    width: 90px;
    height: auto;
    top: 15%;
    left: -20px;
    animation: float-keyboard 5s ease-in-out infinite;
}

[data-theme="dark"] .floating-image {
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5)) brightness(0.85);
}

@keyframes float-clipboard {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

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

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

@media (max-width: 768px) {
    .floating-image {
        width: 80px; /* Default size for all floating images on mobile */
    }
    
    .sloth-mascot {
        width: 100px;
        bottom: -40px;
        right: -20px;
    }
    
    .clipboard-icon {
        top: 10%;
        right: -15px;
    }
    
    .mac-icon {
        width: 90px;
        bottom: -25px;
        left: -15px;
    }
    
    .keyboard-icon {
        top: 8%;
        left: -10px;
    }
}

/* Fix dark mode for tech pills */
.tech-pill {
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 10px;
    padding: 8px 16px;
    background-color: var(--primary-color-lighter);
    color: var(--text-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

[data-theme="dark"] .tech-pill {
    background-color: var(--dark-color-lighter);
    color: var(--dark-text-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .tech-pill:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background-color: rgba(50, 50, 55, 0.8);
}

/* Fix dark mode for support cards */
.support-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

[data-theme="dark"] .support-option {
    background-color: rgba(30, 30, 35, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(60, 60, 70, 0.5);
}

.support-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Fix "Built With" tech pills shown in the About section */
.about-us .tech-pills {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

.about-us .tech-pill {
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 8px;
    padding: 8px 16px;
    background-color: var(--primary-color-lighter);
    color: var(--text-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

[data-theme="dark"] .about-us .tech-pill {
    background-color: rgba(40, 40, 45, 0.8);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(60, 60, 70, 0.5);
}

/* Specific styling for the Built With pills shown in the screenshot */
.built-with-pills .tech-pill {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

[data-theme="dark"] .built-with-pills .tech-pill {
    background-color: var(--dark-color-lighter);
    color: white;
    border: 1px solid rgba(80, 80, 90, 0.5);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--text-color);
    transition: var(--transition-color), transform 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* Product Hunt badge styling */
.product-hunt-link {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.product-hunt-link img {
    transition: transform 0.3s ease;
}

.product-hunt-link:hover img {
    transform: translateY(-3px);
}

[data-theme="dark"] .product-hunt-link img {
    filter: invert(1);
}