:root {
    /* Colors */
    --bg-color: #fdfbf7;
    /* Warm Paper */
    --text-color: #2d2d2d;
    /* Soft Pencil Black */
    --text-muted: #666666;
    /* Erased Pencil */
    --accent-red: #ff4d4d;
    /* Red Correction Marker */
    --accent-blue: #2d5da1;
    /* Blue Ballpoint Pen */
    --accent-yellow: #fff9c4;
    /* Post-it Yellow */
    --card-bg: #ffffff;
    --border-color: #2d2d2d;

    /* Fonts */
    --font-heading: 'Kalam', cursive;
    --font-body: 'Patrick Hand', cursive;

    /* Shadows */
    --shadow-hard: 4px 4px 0px 0px var(--border-color);
    --shadow-hover: 2px 2px 0px 0px var(--border-color);
    --shadow-deep: 8px 8px 0px 0px var(--border-color);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    /* Paper Texture */
    background-image: radial-gradient(#e5e0d8 1px, transparent 1px);
    background-size: 24px 24px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    /* Prevent rotation scrollbars */
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-color);
}

p {
    font-size: 1.125rem;
    /* Larger for handwritten readability */
}

a {
    color: var(--accent-blue);
    text-decoration: none;
    position: relative;
}

a:hover {
    text-decoration: underline;
    text-decoration-style: wavy;
    text-decoration-thickness: 2px;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    padding: 24px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(5px);
    border-bottom: 2px dashed rgba(45, 45, 45, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.header-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #fff;
    border: 3px solid var(--border-color);
    border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
    box-shadow: var(--shadow-hard);
    cursor: pointer;
    transform: rotate(-1deg);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-toggle:hover {
    transform: translate(2px, 2px) rotate(1deg);
    box-shadow: var(--shadow-hover);
}

.nav-toggle:active {
    transform: translate(4px, 4px) rotate(0deg);
    box-shadow: none;
}

.nav-toggle-icon {
    display: grid;
    gap: 6px;
}

.nav-toggle-icon span {
    display: block;
    width: 22px;
    height: 3px;
    background: var(--text-color);
    border-radius: 2px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-color) !important;
    text-decoration: none !important;
    transform: rotate(-2deg);
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-list {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-list a {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 400;
}

.nav-list a:hover {
    color: var(--accent-red);
}

.nav-list a.active {
    color: var(--accent-red);
    text-decoration: underline;
    text-decoration-style: wavy;
    text-decoration-thickness: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border: 3px solid var(--border-color);
    /* Irregular oval */
    border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    background: #fff;
    color: var(--text-color);
    box-shadow: var(--shadow-hard);
    transform: rotate(-1deg);
}

.btn:hover {
    transform: translate(2px, 2px) rotate(1deg);
    /* Jiggle and depress */
    box-shadow: var(--shadow-hover);
}

.btn:active {
    transform: translate(4px, 4px) rotate(0deg);
    /* Fully depressed */
    box-shadow: none;
}

.btn-primary {
    background: #fff;
}

.btn-primary:hover {
    background: var(--accent-red);
    color: #fff;
    border-color: var(--border-color);
}

.btn-secondary {
    background: var(--accent-yellow);
    transform: rotate(2deg);
}

.btn-secondary:hover {
    background: #fff59d;
}

/* Hero Section */
.hero {
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
    pointer-events: none;
    /* Optional: Add a scribble background or just keep it clean */
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.badge {
    background: var(--accent-yellow);
    padding: 8px 16px;
    border: 2px solid var(--border-color);
    border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
    /* Wobbly */
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 24px;
    transform: rotate(-3deg);
    box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.hero h1 {
    font-size: 4.5rem;
    /* Massive */
    letter-spacing: -1px;
    margin-bottom: 24px;
    position: relative;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.05);
}

.hero p.subhead {
    font-size: 1.5rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 48px;
    transform: rotate(1deg);
}

.hero-image-container {
    margin: 32px 0 40px;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    border-radius: 20px;
    /* Optional: subtle float animation or shadow */
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

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

.cta-group {
    display: flex;
    gap: 24px;
    align-items: center;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;

    /* Animation */
    opacity: 0;
    translate: 0 30px;
    transition: opacity 0.6s ease, translate 0.6s ease;
}

.section-header.visible {
    opacity: 1;
    translate: 0 0;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 16px;
    transform: rotate(-1deg);
}

.section-header p {
    font-size: 1.4rem;
    color: var(--text-muted);
}

/* Features Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    /* Wobbly rect */
    border-radius: 5px 255px 5px 225px / 225px 5px 225px 5px;
    padding: 32px;
    box-shadow: var(--shadow-hard);
    transition: transform 0.3s ease, box-shadow 0.3s ease, translate 0.6s ease, opacity 0.6s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    /* Animation initial state */
    opacity: 0;
    translate: 0 30px;
    transform: rotate(var(--rotation, 0deg));
}

.feature-card.visible {
    opacity: 1;
    translate: 0 0;
}

.feature-card:hover {
    transform: scale(1.02) rotate(0deg);
    box-shadow: var(--shadow-deep);
    z-index: 10;
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 1.1rem;
    color: var(--text-muted);
}


/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: #fff;
    border: 2px solid var(--border-color);
    /* Speech bubble-ish rough box */
    border-radius: 20px 20px 20px 5px;
    padding: 40px;
    box-shadow: var(--shadow-hard);
    position: relative;

    /* Animation */
    opacity: 0;
    translate: 0 30px;
    transform: rotate(var(--rotation, 0deg));
    transition: opacity 0.6s ease, translate 0.6s ease, transform 0.3s ease;
}

.testimonial-card.visible {
    opacity: 1;
    translate: 0 0;
}

.testimonial-card::after {
    /* Rough triangle tail for speech bubble */
    content: '';
    position: absolute;
    bottom: -14px;
    left: 40px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-bottom: 2px solid var(--border-color);
    border-right: 2px solid var(--border-color);
    transform: rotate(45deg);
}

.quote {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.4;
}

.author strong {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    display: block;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 2px solid var(--border-color);
    margin-bottom: 24px;
    border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
    box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s;
}

.faq-item:hover {
    box-shadow: 4px 4px 0px 0px var(--border-color);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 2rem;
    line-height: 1;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 24px;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-muted);
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    border-top: 2px dashed rgba(45, 45, 45, 0.2);
    /* Scribble background effect */
    background:
        radial-gradient(#e5e0d8 1px, transparent 1px);
    background-size: 24px 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-col h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-col a {
    color: var(--text-muted);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 12px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
    /* Hand-drawn look */
    box-shadow: 2px 2px 0px 0px var(--border-color);
    transition: all 0.2s ease;
    padding: 8px;
}

.social-icon:hover {
    transform: translateY(-2px) rotate(3deg);
    box-shadow: 4px 4px 0px 0px var(--border-color);
    background: var(--accent-yellow);
}

.social-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--text-color);
}

.copyright {
    margin-top: 60px;
    text-align: center;
    color: var(--text-muted);
    font-family: var(--font-heading);
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 40px 0;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }

    .header-container {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .header-menu {
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding-top: 24px;
        border-top: 2px dashed rgba(45, 45, 45, 0.1);
        margin-top: 16px;
    }

    .header.menu-open .header-menu {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        gap: 16px;
        padding: 8px 0;
        align-items: center;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .feature-grid,
    .blog-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .footer-col {
        align-items: center;
    }

    .footer-col a.logo {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .feature-card,
    .testimonial-card,
    .blog-card {
        padding: 24px;
    }
}

/* Language Switcher */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.language-switcher {
    position: relative;
}

.language-switcher select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
    padding: 8px 32px 8px 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-color);
    cursor: pointer;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232d2d2d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.language-switcher select:hover {
    box-shadow: 3px 3px 0px 0px var(--border-color);
    transform: translateY(-1px);
}

.language-switcher select:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 3px 3px 0px 0px var(--accent-blue);
}

.language-switcher select option {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    padding: 8px;
}

/* Mobile: Hide language switcher text, show icon */
@media (max-width: 768px) {
    .header-actions {
        flex-direction: column;
        gap: 8px;
    }

    .language-switcher select {
        padding: 6px 28px 6px 10px;
        font-size: 0.9rem;
    }
}

/* Blog Styles */
.blog-hero {
    padding-bottom: 40px;
    border-bottom: 2px dashed rgba(45, 45, 45, 0.1);
}

.blog-grid-section {
    background: transparent;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.blog-card {
    background: #fff;
    border: 2px solid var(--border-color);
    padding: 20px;
    box-shadow: var(--shadow-hard);
    /* Polaroids are often just slightly rotated rectangles */
    border-radius: 2px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 60px;
    /* Space for 'read more' */
}

.blog-card:hover {
    transform: scale(1.02) rotate(var(--rotation, 0deg)) !important;
    /* Keep rotation but scale */
    box-shadow: var(--shadow-deep);
    z-index: 10;
}

.blog-image {
    position: relative;
    margin-bottom: 20px;
    background: #eee;
    border: 1px solid #ddd;
    padding: 10px;
    /* Polaroid frame */
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.blog-card:hover .blog-image img {
    filter: grayscale(0%);
}

.tape-strip {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%) rotate(2deg);
    width: 120px;
    height: 35px;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-left: 1px dashed rgba(0, 0, 0, 0.1);
    border-right: 1px dashed rgba(0, 0, 0, 0.1);
    z-index: 5;
    opacity: 0.8;
}

.blog-date {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-muted);
    border: 1px solid var(--text-muted);
    padding: 2px 8px;
    border-radius: 50% 20% / 10% 40%;
    margin-bottom: 10px;
    transform: rotate(-2deg);
}

.blog-content h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.blog-content h2 a {
    color: var(--text-color);
}

.blog-content h2 a:hover {
    color: var(--accent-red);
}

.blog-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
}

.read-more {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-family: var(--font-heading);
    color: var(--accent-blue) !important;
    font-size: 1.2rem;
    transform: rotate(-3deg);
}

/* AI Quiz Section */
.ai-quiz {
    background: rgba(255, 249, 196, 0.2);
    /* Very faint yellow background like a highlighted area */
    border-top: 2px dashed rgba(45, 45, 45, 0.1);
    border-bottom: 2px dashed rgba(45, 45, 45, 0.1);
}

.quiz-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.quiz-feature-card {
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 15px 225px 15px 255px / 255px 15px 225px 15px;
    padding: 30px;
    box-shadow: var(--shadow-hard);
    transition: transform 0.3s ease;
    text-align: center;
}

.quiz-feature-card:hover {
    transform: translateY(-5px) rotate(1deg);
}

.quiz-feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.quiz-feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.quiz-feature-card p {
    font-size: 1rem;
    color: var(--text-muted);
}

.social-proof-banner {
    background: var(--accent-yellow);
    border: 3px solid var(--border-color);
    border-radius: 20px 100px 20px 100px / 100px 20px 100px 20px;
    padding: 40px;
    text-align: center;
    transform: rotate(-1deg);
    box-shadow: var(--shadow-deep);
}

.social-proof-content p {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 24px;
    color: var(--text-color);
}

.social-proof-content .btn {
    transform: rotate(1deg);
}

/* Video Showcase Section */
.video-showcase {
    background: transparent;
    padding: 0;
    width: 100%;
}

.video-wrapper {
    width: 100%;
    margin: 0;
    overflow: hidden;
    line-height: 0;
    /* Removes potential bottom space from inline video */
}

.showcase-video {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
    /* Disables right-click and other interactions */
    user-select: none;
}

/* Mobile responsive for video */
@media (max-width: 768px) {
    .video-showcase {
        padding: 0;
    }
}

/* Single Post Styles */

.post-article {
    padding-top: 40px;
}

.post-container {
    max-width: 800px;
    background: #fff;
    padding: 60px;
    border: 1px solid #ddd;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
    /* Use a standard paper look for readability, less wobbly */
    position: relative;
    min-height: 800px;
}

/* Add holes to look like binder paper? Optional */
.post-container::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    border-left: 2px solid #ffcccc;
    /* Red margin line */
}

.back-link {
    display: inline-block;
    margin-bottom: 30px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.post-header {
    margin-bottom: 40px;
    text-align: center;
    border-bottom: 2px dashed #ddd;
    padding-bottom: 30px;
}

.post-date {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.post-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.post-meta {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-style: italic;
}

.post-body {
    font-size: 1.2rem;
    line-height: 1.8;
}

.post-hero-image {
    width: 100%;
    border: 4px solid #222;
    border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
    margin-bottom: 40px;
    transform: rotate(1deg);
}

.post-body p {
    margin-bottom: 24px;
}

.post-body .lead {
    font-size: 1.4rem;
    font-weight: 700;
}

.post-body h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--accent-blue);
    transform: rotate(-1deg);
}

.post-body blockquote {
    margin: 40px 0;
    padding: 20px 40px;
    background: var(--accent-yellow);
    border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 1.4;
    transform: rotate(1deg);
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}

.post-body ul {
    margin-bottom: 24px;
    padding-left: 40px;
    list-style-type: square;
}

.post-body li {
    margin-bottom: 10px;
}

.post-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px dashed #ddd;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.4rem;
}

@media (max-width: 768px) {
    .post-container {
        padding: 30px 20px;
    }

    .post-header h1 {
        font-size: 2.2rem;
    }
}

/* ========================================
   Performance Optimizations
   ======================================== */

/* Add will-change hints for elements that will animate */
.feature-card,
.testimonial-card,
.section-header {
    will-change: transform, opacity;
}

/* Remove will-change after animation completes to free GPU memory */
.feature-card.visible,
.testimonial-card.visible,
.section-header.visible {
    will-change: auto;
}

/* Simplify backdrop-filter with fallback for low-end devices */
.header {
    background: rgba(253, 251, 247, 0.98);
    /* Fallback: solid background */
}

@supports (backdrop-filter: blur(5px)) {
    .header {
        background: rgba(253, 251, 247, 0.95);
        backdrop-filter: blur(5px);
    }
}

/* Reduced Motion: Disable/minimize animations for accessibility and performance */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    /* Disable complex effects */
    .header {
        backdrop-filter: none !important;
    }

    /* Show elements immediately without animation */
    .feature-card,
    .testimonial-card,
    .section-header {
        opacity: 1 !important;
        translate: none !important;
        will-change: auto !important;
    }

    /* Disable hover transforms */
    .feature-card:hover,
    .testimonial-card:hover,
    .blog-card:hover {
        transform: none !important;
    }

    /* Disable smooth scrolling */
    html {
        scroll-behavior: auto;
    }
}

/* App Store Screenshot Section */
.app-screenshot-section {
    background-color: transparent;
    padding-bottom: 40px;
    /* Extra space for scrollbar */
}

.screenshot-gallery-wrapper {
    width: 100%;
    overflow-x: auto;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--border-color) transparent;
}

.screenshot-gallery-wrapper::-webkit-scrollbar {
    height: 8px;
}

.screenshot-gallery-wrapper::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

.screenshot-gallery-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.screenshot-gallery {
    display: flex;
    gap: 30px;
    padding: 0 40px;
    /* Ease in padding */
    width: max-content;
}

.screenshot-gallery img {
    height: 600px;
    /* Fixed height, auto width maintains aspect ratio */
    width: auto;
    border-radius: 30px;
    border: 3px solid var(--border-color);
    box-shadow: var(--shadow-hard);
    scroll-snap-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    cursor: grab;
}

.screenshot-gallery img:hover {
    transform: scale(1.02) rotate(-1deg);
    box-shadow: var(--shadow-deep);
    z-index: 10;
}

.screenshot-gallery img:nth-child(even):hover {
    transform: scale(1.02) rotate(1deg);
}

/* Mobile responsive for screenshots */
@media (max-width: 768px) {
    .screenshot-gallery img {
        height: 400px;
        border-width: 2px;
    }

    .screenshot-gallery {
        gap: 20px;
        padding: 0 20px;
    }
}