
        :root {
            /* Primary font families */
            --font-primary: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-heading: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-display: 'Original Surfer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-byline: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-mono: 'Source Code Pro', 'JetBrains Mono', 'Fira Code', monospace;
            --font-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'JetBrains Mono', monospace;
        }

        :root {
            /* Font sizes */
            --font-size-xs: 0.7rem;
            --font-size-sm: 0.9rem;
            --font-size-base: 1rem;
            --font-size-lg: 1.1rem;
            --font-size-xl: 1.4rem;
            --font-size-2xl: 1.8rem;
            --font-size-3xl: 2.2rem;
            --font-size-4xl: 2.8rem;
            --font-size-5xl: 3.2rem;
        }

        :root {
            /* Font weights */
            --font-weight-normal: 400;
            --font-weight-medium: 500;
            --font-weight-semibold: 600;
            --font-weight-bold: 700;
        }
        :root {
            --card-bg: #161b22;
            --card-border: #30363d;
            --card-shadow: rgba(0, 0, 0, 0.3);
            --card-shadow-hover: rgba(0, 0, 0, 0.5);
            --card-border-hover: rgb(128, 182, 204);
            --card-title: #f0f6fc;
            --card-description: #e1e8ed;
            --card-link: rgb(128, 182, 204);
            --card-link-bg: rgba(88, 166, 255, 0.1);
            --card-link-border: rgba(88, 166, 255, 0.2);
            --card-link-bg-hover: rgba(88, 166, 255, 0.2);
            --card-link-hover: rgb(148, 202, 224);
            --status-unknown-bg: #484f58;
            --status-unknown-text: #f0f6fc;
            --body-bg-color: #000000;
            --text-color: #f8f9fa;
        }
        
        body {
            font-family: var(--font-body);
            line-height: 1.6;
            color: #f8f9fa;
            background-color: var(--body-bg-color);
            margin: 0;
            padding: 0;
            min-height: 100vh;
            overflow-x: hidden;
        }
        
        /* When TopBar is used, adjust body padding */
        body.has-topbar {
            padding-top: 70px;
        }
        
        
        :root {
            /* Primary font families */
            --font-primary: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-heading: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-display: 'Original Surfer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-byline: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-mono: 'Source Code Pro', 'JetBrains Mono', 'Fira Code', monospace;
            --font-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'JetBrains Mono', monospace;
        }

        :root {
            /* Font sizes */
            --font-size-xs: 0.7rem;
            --font-size-sm: 0.9rem;
            --font-size-base: 1rem;
            --font-size-lg: 1.1rem;
            --font-size-xl: 1.4rem;
            --font-size-2xl: 1.8rem;
            --font-size-3xl: 2.2rem;
            --font-size-4xl: 2.8rem;
            --font-size-5xl: 3.2rem;
        }

        :root {
            /* Font weights */
            --font-weight-normal: 400;
            --font-weight-medium: 500;
            --font-weight-semibold: 600;
            --font-weight-bold: 700;
        }
        /* TopBar Styles - Responsive Color Mode Navigation */
        .topbar {
            background: var(--body-bg-color);
            border-bottom: 1px solid #333;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            width: 100vw;
        }
        
        .topbar-container {
            max-width: 100%;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            min-height: 70px;
            gap: 2rem;
        }
        
        .topbar-brand {
            font-family: "Original Surfer", var(--font-primary);
            font-size: var(--font-size-xl);
            font-weight: var(--font-weight-bold);
            color: #ffffff;
            text-decoration: none;
            letter-spacing: 0.5px;
            margin: 0;
            transition: color 0.2s ease;
            flex-shrink: 0;
            grid-column: 1;
            justify-self: start;
        }
        
        .topbar-brand:hover {
            color: #f0f0f0;
            text-decoration: none;
        }
        
        .topbar-nav {
            display: flex;
            justify-content: center;
            grid-column: 2;
        }
        
        .topbar-cta-wrapper {
            display: flex;
            align-items: center;
            grid-column: 3;
            justify-self: end;
        }
        
        .topbar-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        
        .topbar-item {
            margin: 0;
        }
        
        .topbar-link {
            color: #cccccc;
            text-decoration: none;
            font-family: var(--font-primary);
            font-size: var(--font-size-base);
            font-weight: var(--font-weight-normal);
            transition: color 0.2s ease;
            padding: 0.5rem 0;
        }
        
        .topbar-link:hover {
            color: #ffffff;
            text-decoration: none;
        }
        
        .topbar-cta {
            background: #1a1a1a;
            color: #ffffff;
            text-decoration: none;
            border-radius: 8px;
            padding: 0.5rem 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-family: var(--font-primary);
            font-size: var(--font-size-base);
            font-weight: var(--font-weight-medium);
            transition: all 0.2s ease;
            border: 1px solid #333;
            flex-shrink: 0;
        }
        
        .topbar-cta:hover {
            background: #333333;
            color: #ffffff;
            text-decoration: none;
        }
        
        .topbar-cta-icon {
            font-size: 1.1em;
        }
        
        .topbar-cta-text {
            font-weight: var(--font-weight-medium);
        }
        
        /* Responsive design */
        @media (max-width: 1024px) {
            .topbar-container {
                padding: 0 1.5rem;
            }
            
            .topbar-list {
                gap: 1.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .topbar-container {
                padding: 0 1rem;
                display: flex;
                flex-wrap: wrap;
                gap: 1rem;
                min-height: auto;
                padding-top: 1rem;
                padding-bottom: 1rem;
            }
            
            .topbar-brand {
                font-size: var(--font-size-xl);
                order: 1;
                flex: 1;
                text-align: left;
                grid-column: unset;
                justify-self: unset;
            }
            
            .topbar-nav {
                order: 3;
                width: 100%;
                justify-content: center;
                grid-column: unset;
            }
            
            .topbar-list {
                gap: 1rem;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .topbar-cta-wrapper {
                order: 2;
                grid-column: unset;
                justify-self: unset;
            }
            
            .topbar-cta {
                padding: 0.5rem 0.75rem;
                font-size: var(--font-size-base);
            }
            
            .topbar-link {
                font-size: var(--font-size-sm);
            }
        }
        
        @media (max-width: 480px) {
            .topbar-container {
                flex-direction: column;
                gap: 0.75rem;
            }
            
            .topbar-brand {
                order: 1;
                text-align: center;
                width: 100%;
            }
            
            .topbar-nav {
                order: 2;
            }
            
            .topbar-list {
                gap: 0.75rem;
            }
            
            .topbar-cta-wrapper {
                order: 3;
                align-self: center;
            }
        }
    
        
        /* Minimal typography-focused header */
        .movie-header {
            text-align: center;
            margin: 3rem 0 4rem 0;
            padding: 0;
        }
        
        .movie-title {
            font-family: var(--font-mono);
            font-size: var(--font-size-4xl);
            font-weight: var(--font-weight-semibold);
            margin: 0;
            padding: 0;
            color: #ffffff;
            line-height: 1.2;
            letter-spacing: 1px;
        }
        
        .movie-subtitle {
            font-family: var(--font-mono);
            font-size: var(--font-size-base);
            font-weight: var(--font-weight-normal);
            margin: 0.5rem 0 0 0;
            padding: 0;
            color: rgb(128, 182, 204);
            letter-spacing: 2px;
            text-transform: lowercase;
        }
        
        /* Global h1 styling for unstyled headings */
        h1 {
            font-family: var(--font-primary);
            font-size: 22px;
            font-weight: var(--font-weight-semibold);
            text-align: left;
            margin: 2rem 0 1rem 0;
            padding: 0;
            color: var(--text-color);
            line-height: 1.4;
            letter-spacing: 0.5px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .movie-title {
                font-size: var(--font-size-3xl);
            }
            
            .movie-subtitle {
                font-size: var(--font-size-sm);
            }
        }
        
        @keyframes gradientShift {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }
        
        @keyframes pulse {
            0%, 100% {
                opacity: 0.6;
                transform: translateX(-50%) scaleX(1);
            }
            50% {
                opacity: 1;
                transform: translateX(-50%) scaleX(1.2);
            }
        }
        
        @keyframes shimmer {
            0%, 100% {
                opacity: 0.3;
                transform: translateX(-50%) scaleX(0.8);
            }
            50% {
                opacity: 0.8;
                transform: translateX(-50%) scaleX(1.2);
            }
        }
        
        h2 {
            font-family: var(--font-heading);
            color: #ffffff;
            margin-top: 2rem;
            margin-bottom: 1rem;
            font-size: var(--font-size-4xl);
            font-weight: var(--font-weight-normal);
            letter-spacing: 0.5px;
        }
        
        section {
            margin: 0 0 1rem 0;
            padding: 0.5rem;
            background-color: transparent;
            border-radius: 0;
            border: none;
            font-family: var(--font-system);
        }
        
        section section {
            margin: 0 0 1rem 0;
            padding: 0 0 0 2rem;
            border-left: 1px solid rgba(168, 230, 207, 0.1);
            position: relative;
        }
        
        section section::before {
            content: '';
            position: absolute;
            left: -1px;
            top: 0;
            bottom: 0;
            width: 1px;
            background: linear-gradient(180deg, transparent, rgba(168, 230, 207, 0.2), transparent);
            opacity: 0.3;
        }
        
        section section h2 {
            font-family: var(--font-heading);
            font-size: var(--font-size-2xl);
            font-weight: var(--font-weight-normal);
            color: #ffffff;
            margin: 0 0 0.5rem 0;
            text-align: left;
            letter-spacing: 0.5px;
        }
        
        section section ol {
            margin: 0;
            padding: 0;
            list-style: none;
            counter-reset: none;
            max-width: 100%;
        }
        
        section section li {
            margin: 0;
            padding: 0;
            font-family: var(--font-primary);
            font-size: var(--font-size-lg);
            font-weight: var(--font-weight-normal);
            color: #f8f9fa;
            line-height: 1.7;
            position: relative;
            padding-left: 2.5rem;
            transition: all 0.3s ease;
        }
        
        section section li::before {
            content: counter(item);
            counter-increment: item;
            position: absolute;
            left: 0;
            top: 0.1rem;
            font-family: var(--font-heading);
            font-size: var(--font-size-lg);
            font-weight: var(--font-weight-normal);
            color: #a8e6cf;
            opacity: 0.8;
            transition: all 0.3s ease;
        }
        
        section section li:hover {
            color: #f0f6fc;
            transform: translateX(0.2rem);
        }
        
        section section li:hover::before {
            color: #c7f0db;
            opacity: 1;
            transform: scale(1.1);
        }
        
        section section ol {
            counter-reset: item;
        }
        
        /* Inline code styling for list items */
        section section li code {
            font-family: var(--font-mono);
            font-size: 0.95em;
            font-weight: var(--font-weight-medium);
            background: rgba(168, 230, 207, 0.1);
            color: #a8e6cf;
            padding: 0.1em 0.3em;
            border-radius: 4px;
            border: 1px solid rgba(168, 230, 207, 0.2);
            transition: all 0.3s ease;
        }
        
        section section li:hover code {
            background: rgba(168, 230, 207, 0.15);
            color: #c7f0db;
            border-color: rgba(168, 230, 207, 0.3);
        }
        
        /* Link styling for list items - inherits from code styling */
        section section li code a {
            color: inherit;
            text-decoration: none;
            display: inline;
        }
        
        section section li code a:hover {
            color: inherit;
            text-decoration: none;
        }
        
        /* Dimmed text styling for descriptions */
        section section li dim {
            color: #8b949e;
            font-style: italic;
            font-weight: var(--font-weight-normal);
            opacity: 0.8;
            transition: all 0.3s ease;
        }
        
        section section li:hover dim {
            color: #a5a5a5;
            opacity: 1;
        }
        
        /* Responsive adjustments for all sub-sections */
        @media (max-width: 768px) {
            section section {
                padding: 0 0 0 1.5rem;
                margin: 0 0 1rem 0;
            }
            
            section section:last-child {
                margin-bottom: 0;
            }
            
            section section h2 {
                font-size: var(--font-size-xl);
                margin-bottom: 0.5rem;
            }
            
            section section li {
                font-size: var(--font-size-base);
                line-height: 1.6;
                padding-left: 2rem;
                margin: 0;
            }
            
            section section li::before {
                font-size: var(--font-size-sm);
            }
            
            section section li code {
                font-size: 0.9em;
                padding: 0.15em 0.3em;
            }
        }
        
        ol, ul {
            margin: 1rem 0;
            padding-left: 0;
            list-style: none;
        }
        
        li {
            margin: 0.8rem 0;
            line-height: 1.6;
            font-family: var(--font-system);
            color: #f8f9fa;
            font-size: var(--font-size-lg);
            font-weight: var(--font-weight-normal);
        }
        
        ol li {
            counter-increment: item;
        }
        
        ol li::before {
            content: counter(item) ". ";
            color: #a8e6cf;
            font-weight: var(--font-weight-semibold);
            font-size: var(--font-size-lg);
            margin-right: 1rem;
        }
        
        ol {
            counter-reset: item;
        }
        
        strong {
            color: #f0f6fc;
            font-weight: var(--font-weight-semibold);
        }
        
        a {
            color: #a8e6cf;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        
        a:hover {
            color: #c7f0db;
            text-decoration: underline;
        }
        
        br {
            line-height: 2;
        }
        
        /* Add some visual hierarchy */
        li strong {
            display: inline-block;
            min-width: 120px;
        }
        
        /* Improve spacing between list items */
        ol > li {
            margin-bottom: 1.5rem;
            padding: 0.5rem 0;
        }
        
        /* Style for nested content in list items */
        li > br:last-child {
            display: none;
        }
        
        /* Header image styling */
        .header-image {
            text-align: center;
            margin: 2rem 0 3rem 0;
        }
        
        .header-image img {
            max-width: 400px;
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }
        
        .header-image img:hover {
            transform: scale(1.02);
        }
        
        
        
        /* Row Section - Container for organizing components */
        .row-section {
            width: 100%;
            margin: 0;
            padding: 0;
            border: none;
            outline: none;
            box-shadow: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            box-sizing: border-box; /* Include padding and border in width calculation */
        }
        
        /* Responsive row behavior */
        @media (min-width: 768px) {
            .row-section {
                flex-direction: row;
                gap: 2rem;
            }
        }
        
        /* Override nested section styles for row content */
        .row-section section {
            border-left: none !important;
            padding-left: 0 !important;
            margin: 0 !important;
        }
        
        .row-section section::before {
            display: none !important;
        }
        
        /* Row can contain multiple components */
        .row-section > * {
            margin: 0;
            flex: 1;
            min-width: 0; /* Prevents flex items from overflowing */
            box-sizing: border-box; /* Include padding and border in width calculation */
            word-wrap: break-word; /* Break long words */
            word-break: break-word; /* Break words if necessary */
        }
        
        /* Ensure proper spacing between components in a row */
        .row-section > * + * {
            margin-top: 0;
        }
        
        /* Vertical stacking of multiple rows */
        .row-section + .row-section {
            margin-top: 2rem;
        }
        
        /* Responsive spacing for vertical stacking */
        @media (min-width: 768px) {
            .row-section + .row-section {
                margin-top: 3rem;
            }
        }
        
        /* Support for 4+ columns */
        .row-section .column,
        .row-section .columns-container,
        .row-section .component-section {
            flex: 1;
            min-width: 0;
        }
        
        /* Responsive column behavior */
        @media (max-width: 767px) {
            .row-section {
                flex-direction: column;
            }
            
            .row-section > * {
                flex: none;
                width: 100%;
            }
        }
        
        /* Support for different column counts */
        .row-section[data-columns="2"] > * {
            flex: 1;
        }
        
        .row-section[data-columns="3"] > * {
            flex: 1;
        }
        
        .row-section[data-columns="4"] > * {
            flex: 1;
        }
        
        /* Ensure components within rows don't interfere with layout */
        .row-section .component-section {
            border-left: none !important;
            padding-left: 0 !important;
        }
        
        .row-section .component-section::before {
            display: none !important;
        }
    
/* Column Component Styles */
.column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    padding: 0.5rem; /* Add padding to prevent text from touching edges */
    box-sizing: border-box; /* Include padding and border in width calculation */
    word-wrap: break-word; /* Break long words */
    word-break: break-word; /* Break words if necessary */
    hyphens: auto; /* Add hyphens for better text breaking */
}

/* Responsive column behavior */
@media (min-width: 768px) {
    .column {
        gap: 0.75rem;
        padding: 0.75rem; /* Increase padding on larger screens */
    }
}

@media (min-width: 1024px) {
    .column {
        gap: 1rem;
        padding: 1rem; /* More padding on desktop */
    }
}

/* Column within row section */
.row-section .column {
    flex: 1;
    min-width: 0; /* Prevents flex items from overflowing */
}

/* Multiple columns container */
.columns-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    box-sizing: border-box; /* Include padding and border in width calculation */
}

@media (min-width: 768px) {
    .columns-container {
        flex-direction: row;
        gap: 1rem;
    }
}

/* Individual columns within columns-container */
.columns-container .column {
    flex: 1;
    min-width: 0; /* Prevents flex items from overflowing */
    box-sizing: border-box; /* Include padding and border in width calculation */
    word-wrap: break-word; /* Break long words */
    word-break: break-word; /* Break words if necessary */
    hyphens: auto; /* Add hyphens for better text breaking */
}

/* Multiple columns in a row - handled by row styles */

/* Column content spacing */
.column > * {
    margin-bottom: 0;
}

.column > *:last-child {
    margin-bottom: 0;
}

/* Specific column positioning for numbered columns */
.column-1 {
    order: 1;
}

.column-2 {
    order: 2;
}

.column-3 {
    order: 3;
}

.column-4 {
    order: 4;
}

/* Component Container Styles */
.component-container {
    width: 100%;
    padding: 1rem;
    margin: 0;
    box-sizing: border-box;
}

/* Remove padding when component-container is inside a column to avoid double padding */
.column .component-container {
    padding: 0;
}

/* Responsive component behavior */
@media (min-width: 768px) {
    .component-container {
        padding: 1.5rem;
    }
    
    .column .component-container {
        padding: 0;
    }
}

@media (min-width: 1024px) {
    .component-container {
        padding: 2rem;
    }
    
    .column .component-container {
        padding: 0;
    }
}

/* Component content styling */
.component-container h1,
.component-container h2,
.component-container h3,
.component-container h4,
.component-container h5,
.component-container h6 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.component-container p {
    margin-bottom: 1rem;
    color: #e1e8ed;
    line-height: 1.6;
}

.component-container a {
    color: rgb(128, 182, 204);
    text-decoration: none;
}

.component-container a:hover {
    color: rgb(148, 202, 224);
    text-decoration: underline;
}

/* Individual component alignment */
.align-left {
    align-self: flex-start !important;
}

.align-center {
    align-self: center !important;
}

.align-right {
    align-self: flex-end !important;
}

/* Text Component Container Styles */
.text-component-container {
    width: 100%;
    margin: 0;
}

/* Text Component Base Styles */
.text-component {
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 1rem;
    box-sizing: border-box; /* Include padding in width calculation */
}

/* Remove padding when text component is inside a column to avoid double padding */
.column .text-component {
    padding: 0; /* Remove padding when inside column */
}

/* Responsive text component padding */
@media (min-width: 768px) {
    .text-component {
        padding: 1.5rem;
    }
    
    .column .text-component {
        padding: 0; /* Remove padding when inside column */
    }
}

@media (min-width: 1024px) {
    .text-component {
        padding: 2rem;
    }
    
    .column .text-component {
        padding: 0; /* Remove padding when inside column */
    }
}

/* Text Size Variants */
.text-size-small {
    font-size: 0.875rem; /* 14px */
}

.text-size-medium {
    font-size: 1rem; /* 16px */
}

.text-size-large {
    font-size: 1.5rem; /* 24px */
}

.text-size-xlarge {
    font-size: 2rem; /* 32px */
}

.text-size-xxlarge {
    font-size: 2.5rem; /* 40px */
}

.text-size-huge {
    font-size: 3rem; /* 48px */
}

/* Text Weight Variants */
.text-weight-thin {
    font-weight: 300;
}

.text-weight-normal {
    font-weight: 400;
}

.text-weight-bold {
    font-weight: 700;
}

.text-weight-black {
    font-weight: 900;
}

/* Font Family Variants */
.font-family-primary {
    font-family: var(--font-primary);
}

.font-family-heading {
    font-family: var(--font-heading);
}

.font-family-display {
    font-family: var(--font-display);
}

.font-family-byline {
    font-family: var(--font-byline);
}

.font-family-mono {
    font-family: var(--font-mono);
}

.font-family-system {
    font-family: var(--font-system);
}

/* Letter Spacing Variants */
.letter-spacing-tight {
    letter-spacing: -0.02em;
}

.letter-spacing-normal {
    letter-spacing: 0;
}

.letter-spacing-wide {
    letter-spacing: 0.05em;
}

/* Text Line Height Variants */
.text-line-height-small {
    line-height: 1.2;
}

.text-line-height-medium {
    line-height: 1.6;
}

.text-line-height-large {
    line-height: 2.0;
}

/* Text Alignment Variants */
.align-left {
    text-align: left;
    align-items: flex-start;
}

.align-center {
    text-align: center;
    align-items: center;
}

.align-right {
    text-align: right;
    align-items: flex-end;
}

/* Emoji Positioning */
.emoji-top {
    font-size: 1.2em;
    margin-bottom: 0.5rem;
    display: block;
}

.text-content {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.emoji-left {
    font-size: 1.1em;
    margin-right: 0.25rem;
}

.emoji-right {
    font-size: 1.1em;
    margin-left: 0.25rem;
}

/* Responsive text sizing */
@media (min-width: 768px) {
    .text-size-small {
        font-size: 1rem; /* 16px */
    }
    
    .text-size-medium {
        font-size: 1.125rem; /* 18px */
    }
    
    .text-size-large {
        font-size: 1.75rem; /* 28px */
    }
    
    .text-size-xlarge {
        font-size: 2.25rem; /* 36px */
    }
    
    .text-size-xxlarge {
        font-size: 3rem; /* 48px */
    }
    
    .text-size-huge {
        font-size: 3.5rem; /* 56px */
    }
}

@media (min-width: 1024px) {
    .text-size-small {
        font-size: 1.125rem; /* 18px */
    }
    
    .text-size-medium {
        font-size: 1.25rem; /* 20px */
    }
    
    .text-size-large {
        font-size: 2rem; /* 32px */
    }
    
    .text-size-xlarge {
        font-size: 2.5rem; /* 40px */
    }
    
    .text-size-xxlarge {
        font-size: 3.5rem; /* 56px */
    }
    
    .text-size-huge {
        font-size: 4rem; /* 64px */
    }
}

/* Dark mode text color adjustments */
@media (prefers-color-scheme: dark) {
    .text-component {
        color: #e1e8ed;
    }
}

/* Light mode text color adjustments */
@media (prefers-color-scheme: light) {
    .text-component {
        color: #1a1a1a;
    }
}

        :root {
            /* Primary font families */
            --font-primary: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-heading: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-display: 'Original Surfer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-byline: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-mono: 'Source Code Pro', 'JetBrains Mono', 'Fira Code', monospace;
            --font-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'JetBrains Mono', monospace;
        }

        :root {
            /* Font sizes */
            --font-size-xs: 0.7rem;
            --font-size-sm: 0.9rem;
            --font-size-base: 1rem;
            --font-size-lg: 1.1rem;
            --font-size-xl: 1.4rem;
            --font-size-2xl: 1.8rem;
            --font-size-3xl: 2.2rem;
            --font-size-4xl: 2.8rem;
            --font-size-5xl: 3.2rem;
        }

        :root {
            /* Font weights */
            --font-weight-normal: 400;
            --font-weight-medium: 500;
            --font-weight-semibold: 600;
            --font-weight-bold: 700;
        }
        /* Widescreen Spotlight Section - True full-screen hero */
        .widescreen-spotlight-section {
            margin: 0;
            padding: 0;
            position: relative;
            border-radius: 0;
            overflow: hidden;
            min-height: 100vh;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            margin-right: calc(-50vw + 50%);
        }
        
        /* Full-bleed background image */
        .widescreen-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        /* Widescreen Image - full bleed */
        .widescreen-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transform: translateX(var(--widescreen-shift, 0));
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .widescreen-background:hover .widescreen-image {
            transform: translateX(var(--widescreen-shift, 0)) scale(1.02);
        }
        
        /* Floating content overlay */
        .widescreen-content-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            display: flex;
            align-items: center;
            padding: 4rem;
            background: linear-gradient(to bottom, transparent 0%, transparent 60%, rgba(0, 0, 0, 0.3) 100%);
        }
        
        /* Layout variations for text positioning */
        .widescreen-layout-right .widescreen-content-overlay {
            justify-content: flex-end;
        }
        
        .widescreen-layout-left .widescreen-content-overlay {
            justify-content: flex-start;
        }
        
        /* Content */
        .widescreen-content {
            max-width: 600px;
            width: 100%;
        }
        
        /* Widescreen Title - Original Surfer font */
        .widescreen-title {
            font-family: 'Original Surfer', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
            font-size: 5rem;
            font-weight: 400;
            margin: 0 0 1rem 0;
            color: var(--widescreen-text-color, #ffffff);
            letter-spacing: -0.02em;
            line-height: 0.9;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
        }
        
        /* Widescreen Subtitle */
        .widescreen-subtitle {
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            margin: 0 0 1.5rem 0;
            color: var(--widescreen-text-color, #ffffff);
            letter-spacing: -0.01em;
            text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
        }
        
        /* Widescreen Description - Gen Z byline style */
        .widescreen-description {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
            font-size: 1.5rem;
            font-weight: 500;
            margin: 0 0 2.5rem 0;
            color: var(--widescreen-text-color, #ffffff);
            line-height: 1.4;
            text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
            max-width: 500px;
            letter-spacing: -0.01em;
        }
        
        /* Call-to-action buttons - Integrated with widescreen content */
        .widescreen-content .sss-button-group {
            margin-top: 2rem;
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .widescreen-content .sss-button-group-center {
            justify-content: flex-start;
        }
        
        .widescreen-content .sss-button-group-left {
            justify-content: flex-start;
        }
        
        .widescreen-content .sss-button-group-right {
            justify-content: flex-start;
        }
        
        .widescreen-button {
            align-items: center;
            background-color: initial;
            background-image: linear-gradient(rgba(179, 132, 201, .84), rgba(57, 31, 91, .84) 50%);
            border-radius: 42px;
            border-width: 0;
            box-shadow: rgba(57, 31, 91, 0.24) 0 2px 2px,rgba(179, 132, 201, 0.4) 0 8px 12px;
            color: #FFFFFF;
            cursor: pointer;
            display: flex;
            font-family: 'Work Sans', sans-serif;
            font-size: 18px;
            font-weight: 700;
            justify-content: center;
            letter-spacing: .04em;
            line-height: 16px;
            margin: 0;
            padding: 18px 18px;
            text-align: center;
            text-decoration: none;
            text-shadow: rgba(255, 255, 255, 0.4) 0 0 4px,rgba(255, 255, 255, 0.2) 0 0 12px,rgba(57, 31, 91, 0.6) 1px 1px 4px,rgba(57, 31, 91, 0.32) 4px 4px 16px;
            user-select: none;
            -webkit-user-select: none;
            touch-action: manipulation;
            vertical-align: baseline;
            transition: all 0.3s ease;
        }
        
        .widescreen-button-primary {
            background-image: linear-gradient(rgba(179, 132, 201, .84), rgba(57, 31, 91, .84) 50%);
        }
        
        .widescreen-button-primary:hover {
            background-image: linear-gradient(#B384C9, #391F5B 50%);
            transform: translateY(-2px);
        }
        
        .widescreen-button-secondary {
            background: transparent;
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: none;
            text-shadow: none;
        }
        
        .widescreen-button-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-1px);
        }
        
        /* Add lightning bolt icon for primary button */
        .widescreen-button-primary::after {
            content: "⚡";
            font-size: 18px;
            margin-left: 8px;
        }
        
        @media (min-width: 768px) {
            .widescreen-button {
                font-size: 21px;
                padding: 18px 34px;
            }
            
            .widescreen-button-primary::after {
                font-size: 21px;
            }
        }
        
        /* Responsive adjustments - maintain full-screen */
        @media (max-width: 1024px) {
            .widescreen-spotlight-section {
                min-height: 100vh;
            }
            
            .widescreen-content-overlay {
                padding: 3rem 2rem;
            }
            
            .widescreen-title {
                font-size: 3.5rem;
            }
            
            .widescreen-layout-right .widescreen-content-overlay,
            .widescreen-layout-left .widescreen-content-overlay {
                justify-content: center;
            }
        }
        
        @media (max-width: 768px) {
            .widescreen-spotlight-section {
                margin: 0;
                border-radius: 0;
                min-height: 100vh;
            }
            
            .widescreen-content-overlay {
                padding: 2rem 1.5rem;
            }
            
            .widescreen-title {
                font-size: 2.5rem;
            }
            
            .widescreen-subtitle {
                font-size: 1.25rem;
            }
            
            .widescreen-description {
                font-size: 1.25rem;
            }
            
            .widescreen-content .sss-button-group {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.75rem;
            }
            
            .widescreen-button {
                width: auto;
                max-width: 250px;
            }
        }
        
        @media (max-width: 480px) {
            .widescreen-spotlight-section {
                border-radius: 0;
                min-height: 100vh;
            }
            
            .widescreen-content-overlay {
                padding: 1.5rem 1rem;
            }
            
            .widescreen-title {
                font-size: 2rem;
            }
            
            .widescreen-subtitle {
                font-size: 1.125rem;
            }
            
            .widescreen-description {
                font-size: 1.125rem;
            }
        }
    
        :root {
            /* Primary font families */
            --font-primary: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-heading: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-display: 'Original Surfer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-byline: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-mono: 'Source Code Pro', 'JetBrains Mono', 'Fira Code', monospace;
            --font-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'JetBrains Mono', monospace;
        }

        :root {
            /* Font sizes */
            --font-size-xs: 0.7rem;
            --font-size-sm: 0.9rem;
            --font-size-base: 1rem;
            --font-size-lg: 1.1rem;
            --font-size-xl: 1.4rem;
            --font-size-2xl: 1.8rem;
            --font-size-3xl: 2.2rem;
            --font-size-4xl: 2.8rem;
            --font-size-5xl: 3.2rem;
        }

        :root {
            /* Font weights */
            --font-weight-normal: 400;
            --font-weight-medium: 500;
            --font-weight-semibold: 600;
            --font-weight-bold: 700;
        }
        /* Pinterest Masonry Container */
        .pinterest-container {
            column-count: 6;
            column-gap: 1px;
            margin: 0;
            padding: 0;
            width: 100%;
            max-width: none;
            max-height: 66vh;
            overflow: hidden;
            line-height: 0;
            background: black;
        }
        
        /* Pinterest Item */
        .pinterest-item {
            break-inside: avoid;
            margin-bottom: 1px;
            display: inline-block;
            width: 100%;
            background: transparent;
            border: none;
            border-radius: 2px;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: none;
            position: relative;
        }
        
        .pinterest-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
        }
        
        /* Pinterest Link */
        .pinterest-link {
            display: block;
            text-decoration: none;
            color: inherit;
            width: 100%;
            height: 100%;
        }
        
        .pinterest-link:hover {
            text-decoration: none;
            color: inherit;
        }
        
        /* Pinterest Image Container */
        .pinterest-image-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            background: transparent;
        }
        
        /* Pinterest Image */
        .pinterest-image {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s ease;
            object-fit: cover;
            border-radius: 2px;
            max-width: 100%;
        }
        
        .pinterest-item:hover .pinterest-image {
            transform: scale(1.02);
        }
        
        /* Responsive adjustments */
        @media (max-width: 1200px) {
            .pinterest-container {
                column-count: 5;
            }
        }
        
        @media (max-width: 900px) {
            .pinterest-container {
                column-count: 4;
            }
        }
        
        @media (max-width: 600px) {
            .pinterest-container {
                column-count: 3;
            }
        }
        
        @media (max-width: 400px) {
            .pinterest-container {
                column-count: 2;
            }
        }
        
        /* Full-width override for Pinterest container */
        .pinterest-container {
            margin-left: calc(-50vw + 50%);
            margin-right: calc(-50vw + 50%);
            width: 100vw;
            max-width: 100vw;
            box-sizing: border-box;
        }
        
        /* Adjust padding for mobile */
        @media (max-width: 768px) {
            .pinterest-container {
                padding-left: 1rem;
                padding-right: 1rem;
            }
        }
    
        :root {
            /* Primary font families */
            --font-primary: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-heading: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-display: 'Original Surfer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-byline: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-mono: 'Source Code Pro', 'JetBrains Mono', 'Fira Code', monospace;
            --font-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'JetBrains Mono', monospace;
        }

        :root {
            /* Font sizes */
            --font-size-xs: 0.7rem;
            --font-size-sm: 0.9rem;
            --font-size-base: 1rem;
            --font-size-lg: 1.1rem;
            --font-size-xl: 1.4rem;
            --font-size-2xl: 1.8rem;
            --font-size-3xl: 2.2rem;
            --font-size-4xl: 2.8rem;
            --font-size-5xl: 3.2rem;
        }

        :root {
            /* Font weights */
            --font-weight-normal: 400;
            --font-weight-medium: 500;
            --font-weight-semibold: 600;
            --font-weight-bold: 700;
        }
        /* Showcase Section - Full width background with centered content */
        .showcase-section {
            margin-bottom: 0;
            padding: 3rem 0;
            background: #f8f9fa;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            margin-right: calc(-50vw + 50%);
        }
        
        
        .showcase-container {
            display: flex;
            align-items: center;
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        /* Right-positioned image layout */
        .showcase-container.showcase-right {
            flex-direction: row-reverse !important;
        }
        
        /* Image container (left side) */
        .showcase-image {
            flex: 0 0 45%;
            position: relative;
        }
        
        .showcase-img {
            width: 100%;
            height: auto;
            border-radius: 16px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .showcase-image:hover .showcase-img {
            transform: scale(1.02);
        }
        
        /* Content container (right side) */
        .showcase-content {
            flex: 1;
            padding-left: 1rem;
        }
        
        /* Adjust padding for right-positioned image */
        .showcase-container.showcase-right .showcase-content {
            padding-left: 0;
            padding-right: 1rem;
        }
        
        /* Showcase Title */
        .showcase-title {
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
            font-size: 2.5rem;
            font-weight: 600;
            margin: 0 0 1rem 0;
            color: #2c3e50;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }
        
        /* Showcase Subtitle */
        .showcase-subtitle {
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
            font-size: 1.25rem;
            font-weight: 400;
            margin: 0 0 2rem 0;
            color: #5a6c7d;
            line-height: 1.4;
        }
        
        /* Showcase Steps */
        .showcase-steps {
            margin-bottom: 2.5rem;
        }
        
        .showcase-step {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
            padding: 1rem 0;
            border-bottom: 1px solid #e1e8ed;
        }
        
        .showcase-step:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }
        
        .step-emoji {
            font-size: 2rem;
            margin-right: 1rem;
            flex-shrink: 0;
            margin-top: 0.2rem;
        }
        
        .step-content {
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .step-text {
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
            font-size: 1.375rem;
            font-weight: 600;
            color: #2c3e50;
            line-height: 1.3;
            margin-bottom: 0.25rem;
        }
        
        .step-description {
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
            font-size: 1.125rem;
            font-weight: 400;
            color: #5a6c7d;
            line-height: 1.4;
        }
        
        /* Call-to-action button - matching primary button style */
        .showcase-button {
            font-family: "myriad-pro", system-ui, -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
            font-weight: 600;
            border-radius: 1.87rem;
            border: 1px solid #012880;
            background-image: linear-gradient(-180deg, #4FC3F7 0%, #2E7D32 100%);
            box-shadow: 0 0.5rem 0.625rem 0 rgba(0,0,0,0.2),
                        0 -0.125rem 0.75rem rgba(25, 118, 210, 1) inset,
                        0 0.375rem 0.125rem rgba(255,255,255, 0.4) inset,
                        0 0.125rem 0.25rem 0 rgba(76, 175, 80, 1) inset;
            color: transparent;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            letter-spacing: 0.0375em;
            line-height: 1;
            margin: 0;
            padding: 0.625rem 2rem;
            text-align: center;
            text-decoration: none;
            user-select: none;
            -webkit-user-select: none;
            touch-action: manipulation;
            vertical-align: baseline;
            position: relative;
            overflow: hidden;
            outline: none;
            transition: all 150ms ease-in-out;
            white-space: nowrap;
        }
        
        .showcase-button:hover {
            filter: brightness(1.1);
            text-decoration: none;
        }
        
        .showcase-button:active {
            transform: scale(.96);
            text-decoration: none;
        }
        
        .showcase-button:focus {
            outline: none;
        }
        
        /* Text styling for showcase button */
        .showcase-button .showcase-button-text {
            color: transparent;
            background-image: linear-gradient(0deg, #81C784 -10%, #FEFAFD 100%);
            -webkit-background-clip: text;
            background-clip: text;
            filter: drop-shadow(0 2px 2px hsla(120, 100%, 20%, 1));
        }
        
        /* Shine effects for showcase button */
        .showcase-button::before {
            content: "";
            display: block;
            height: 0.125rem;
            position: absolute;
            top: 0.25rem;
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% - 2rem);
            background: #fff;
            border-radius: 100%;
            opacity: 0.7;
            background-image: linear-gradient(-270deg, rgba(255,255,255,0.00) 0%, #FFFFFF 20%, #FFFFFF 80%, rgba(255,255,255,0.00) 100%);
        }
        
        .showcase-button::after {
            content: "";
            display: block;
            height: 0.125rem;
            position: absolute;
            bottom: 0.375rem;
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% - 2rem);
            background: #fff;
            border-radius: 100%;
            filter: blur(1px);
            opacity: 0.05;
            background-image: linear-gradient(-270deg, rgba(255,255,255,0.00) 0%, #FFFFFF 20%, #FFFFFF 80%, rgba(255,255,255,0.00) 100%);
        }
        
        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .showcase-container,
            .showcase-container.showcase-right {
                gap: 3rem;
                padding: 0 1.5rem;
            }
            
            .showcase-image {
                flex: 0 0 40%;
            }
            
            .showcase-title {
                font-size: 2.25rem;
            }
        }
        
        @media (max-width: 768px) {
            .showcase-section {
                margin: 2rem 0;
            }
            
            .showcase-container,
            .showcase-container.showcase-right {
                flex-direction: column;
                gap: 2rem;
                padding: 0 1rem;
            }
            
            .showcase-image {
                flex: none;
                width: 100%;
                max-width: 400px;
                margin: 0 auto;
            }
            
            .showcase-content {
                padding-left: 0;
                padding-right: 0;
                text-align: center;
            }
            
            .showcase-title {
                font-size: 2rem;
            }
            
            .showcase-subtitle {
                font-size: 1.125rem;
            }
            
            .showcase-step {
                justify-content: center;
                text-align: left;
            }
            
            .step-emoji {
                font-size: 1.75rem;
            }
            
            .step-text {
                font-size: 1rem;
            }
            
            .showcase-button {
                width: 100%;
                max-width: 300px;
                font-size: 1rem;
                padding: 0.625rem 2rem;
            }
        }
        
        @media (max-width: 480px) {
            .showcase-container,
            .showcase-container.showcase-right {
                padding: 0 0.75rem;
            }
            
            .showcase-title {
                font-size: 1.75rem;
            }
            
            .showcase-subtitle {
                font-size: 1rem;
            }
            
            .step-emoji {
                font-size: 1.5rem;
                margin-right: 0.75rem;
            }
            
            .step-text {
                font-size: 0.95rem;
            }
            
            .showcase-button {
                font-size: 0.9rem;
                padding: 0.5rem 1.5rem;
            }
        }
    
        :root {
            /* Primary font families */
            --font-primary: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-heading: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-display: 'Original Surfer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-byline: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-mono: 'Source Code Pro', 'JetBrains Mono', 'Fira Code', monospace;
            --font-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'JetBrains Mono', monospace;
        }

        :root {
            /* Font sizes */
            --font-size-xs: 0.7rem;
            --font-size-sm: 0.9rem;
            --font-size-base: 1rem;
            --font-size-lg: 1.1rem;
            --font-size-xl: 1.4rem;
            --font-size-2xl: 1.8rem;
            --font-size-3xl: 2.2rem;
            --font-size-4xl: 2.8rem;
            --font-size-5xl: 3.2rem;
        }

        :root {
            /* Font weights */
            --font-weight-normal: 400;
            --font-weight-medium: 500;
            --font-weight-semibold: 600;
            --font-weight-bold: 700;
        }
        /* Slick Section - Two column layout with benefits and image */
        .slick-section {
            margin: 0; 
            padding: 0; /* Remove padding from section - let container handle it */
            background-color: #f8f9fa; /* Default background, can be overridden by bgColor */
            color: #000; /* Default text color, can be overridden by color property */
            width: 100%; /* Ensure full width background */
        }
        
        .slick-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 0; /* Move padding to container so content is constrained but background is full width */
        }
        
        .slick-content-wrapper {
            display: flex;
            align-items: flex-start;
            gap: 60px;
        }
        
        /* Benefits Section */
        .slick-benefits-section {
            flex: 1.5;
            max-width: none;
        }
        
        /* Header styles */
        .slick-header {
            margin-bottom: 50px;
        }
        
        .slick-subtitle {
            color: #3b82f6; /* Keep blue for subtitle, can be overridden if needed */
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 10px;
            letter-spacing: 0.3px;
        }
        
        .slick-main-title {
            font-family: var(--font-display);
            font-size: var(--font-size-5xl);
            font-weight: 700;
            color: inherit; /* Inherit color from parent section */
            line-height: 1.2;
            margin-bottom: 0;
        }
        
        .slick-highlight {
            background-color: #fef08a;
            padding: 2px 6px;
            border-radius: 3px;
            /* Text color can be overridden by highlightColor property */
        }
        
        /* Benefits grid - 2 columns, 3 rows */
        .slick-benefits-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: repeat(3, auto);
            gap: 30px 40px;
        }
        
        /* Image Section */
        .slick-image-section {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: flex-start;
        }
        
        .slick-image-block {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .slick-phone-image {
            max-width: 80%;
            max-height: 80%;
            object-fit: contain;
            border-radius: 8px;
        }
        
        .slick-benefit-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .slick-benefit-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
            flex-shrink: 0;
            padding: 0; 
            margin: 0;
        }
        
        .slick-benefit-content {
            flex: 1;
        }
        
        .slick-benefit-title {
            font-size: 24px;
            font-weight: 700;
            color: inherit; /* Inherit color from parent section */
            margin-bottom: 8px;
            line-height: 1.3;
        }
        
        .slick-benefit-description {
            font-size: 18px;
            color: inherit; /* Inherit color from parent section */
            line-height: 1.4;
        }
        
        .slick-benefit-description em {
            font-style: italic;
            color: #6b7280;
        }
        
        /* Responsive design */
        @media (max-width: 1024px) {
            .slick-container {
                max-width: 1000px;
                padding: 60px 25px;
            }
            
            .slick-content-wrapper {
                gap: 40px;
            }
            
            .slick-benefits-grid {
                gap: 25px 35px;
            }
            
            .slick-main-title {
                font-size: 34px;
            }
            
            .slick-image-block {
                width: 220px;
                height: 520px;
            }
        }
        
        @media (max-width: 768px) {
            .slick-container {
                padding: 50px 20px;
            }
            
            .slick-content-wrapper {
                flex-direction: column;
                gap: 40px;
            }
            
            .slick-benefits-section {
                max-width: 100%;
            }
            
            .slick-benefits-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .slick-main-title {
                font-size: 30px;
            }
            
            .slick-subtitle {
                font-size: 15px;
            }
            
            .slick-benefit-item {
                gap: 12px;
            }
            
            .slick-benefit-icon {
                font-size: 36px;
            }
            
            .slick-benefit-title {
                font-size: 22px;
            }
            
            .slick-benefit-description {
                font-size: 17px;
            }
            
            .slick-image-block {
                width: 200px;
                height: 480px;
            }
        }
        
        @media (max-width: 480px) {
            .slick-container {
                padding: 40px 15px;
            }
            
            .slick-header {
                margin-bottom: 40px;
            }
            
            .slick-main-title {
                font-size: 26px;
            }
            
            .slick-subtitle {
                font-size: 14px;
            }
            
            .slick-benefits-grid {
                gap: 22px;
            }
            
            .slick-benefit-item {
                gap: 10px;
            }
            
            .slick-benefit-icon {
                font-size: 32px;
            }
            
            .slick-benefit-title {
                font-size: 20px;
            }
            
            .slick-benefit-description {
                font-size: 16px;
            }
            
            .slick-image-block {
                width: 180px;
                height: 420px;
            }
        }
    
        :root {
            /* Primary font families */
            --font-primary: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-heading: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-display: 'Original Surfer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-byline: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-mono: 'Source Code Pro', 'JetBrains Mono', 'Fira Code', monospace;
            --font-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'JetBrains Mono', monospace;
        }

        :root {
            /* Font sizes */
            --font-size-xs: 0.7rem;
            --font-size-sm: 0.9rem;
            --font-size-base: 1rem;
            --font-size-lg: 1.1rem;
            --font-size-xl: 1.4rem;
            --font-size-2xl: 1.8rem;
            --font-size-3xl: 2.2rem;
            --font-size-4xl: 2.8rem;
            --font-size-5xl: 3.2rem;
        }

        :root {
            /* Font weights */
            --font-weight-normal: 400;
            --font-weight-medium: 500;
            --font-weight-semibold: 600;
            --font-weight-bold: 700;
        }
        /* Sizzle Process Section - Full width background with centered content */
        .sizzle-section {
            margin-bottom: 0;
            padding: 3rem 0;
            background: #fafafa;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            margin-right: calc(-50vw + 50%);
        }
        
        .sizzle-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            color: #374151;
        }
        
        /* Override dark theme for sizzle section */
        .sizzle-section * {
            color: inherit;
        }

        /* Process section */
        .sizzle-container .process-section {
            text-align: center;
        }

        /* Header styles */
        .sizzle-container .header {
            margin-bottom: 60px;
        }

        .sizzle-container .subtitle {
            color: #3b82f6;
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 10px;
        }

        .sizzle-container .main-title {
            font-size: 48px;
            font-weight: 700;
            color: #111827;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .sizzle-container .description {
            font-size: 18px;
            color: #6b7280;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Process steps grid */
        .sizzle-container .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .sizzle-container .step {
            text-align: center;
            padding: 20px;
            border-radius: 12px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .sizzle-container .step:hover {
            background-color: #fff;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transform: translateY(-2px);
        }

        .sizzle-container .step-icon {
            font-size: 48px;
            margin-bottom: 20px;
            display: block;
        }

        .sizzle-container .step-title {
            font-size: 24px;
            font-weight: 700;
            color: #111827;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .sizzle-container .step-description {
            font-size: 16px;
            color: #6b7280;
            line-height: 1.6;
            max-width: 300px;
            margin: 0 auto;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .sizzle-section {
                padding: 2rem 0;
            }
            
            .sizzle-container {
                padding: 0 1rem;
            }
            
            .sizzle-container .main-title {
                font-size: 36px;
            }
            
            .sizzle-container .subtitle {
                font-size: 16px;
            }
            
            .sizzle-container .description {
                font-size: 16px;
                padding: 0 10px;
            }
            
            .sizzle-container .process-steps {
                grid-template-columns: 1fr;
                gap: 30px;
                margin-top: 30px;
            }
            
            .sizzle-container .step {
                padding: 15px;
            }
            
            .sizzle-container .step-icon {
                font-size: 40px;
                margin-bottom: 15px;
            }
            
            .sizzle-container .step-title {
                font-size: 20px;
                margin-bottom: 12px;
            }
            
            .sizzle-container .step-description {
                font-size: 15px;
            }
        }

        @media (max-width: 480px) {
            .sizzle-section {
                padding: 1.5rem 0;
            }
            
            .sizzle-container {
                padding: 0 0.75rem;
            }
            
            .sizzle-container .main-title {
                font-size: 28px;
            }
            
            .sizzle-container .subtitle {
                font-size: 14px;
            }
            
            .sizzle-container .description {
                font-size: 14px;
            }
            
            .sizzle-container .step-icon {
                font-size: 36px;
            }
            
            .sizzle-container .step-title {
                font-size: 18px;
            }
            
            .sizzle-container .step-description {
                font-size: 14px;
            }
        }

        /* Tablet landscape */
        @media (min-width: 769px) and (max-width: 1024px) {
            .sizzle-container .process-steps {
                grid-template-columns: repeat(2, 1fr);
                gap: 35px;
            }
        }

        /* Large screens */
        @media (min-width: 1025px) {
            .sizzle-container .process-steps {
                grid-template-columns: repeat(4, 1fr);
                gap: 30px;
            }
            
            .sizzle-container .step-description {
                max-width: 250px;
            }
        }
    
        :root {
            /* Primary font families */
            --font-primary: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-heading: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-display: 'Original Surfer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-byline: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-mono: 'Source Code Pro', 'JetBrains Mono', 'Fira Code', monospace;
            --font-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'JetBrains Mono', monospace;
        }

        :root {
            /* Font sizes */
            --font-size-xs: 0.7rem;
            --font-size-sm: 0.9rem;
            --font-size-base: 1rem;
            --font-size-lg: 1.1rem;
            --font-size-xl: 1.4rem;
            --font-size-2xl: 1.8rem;
            --font-size-3xl: 2.2rem;
            --font-size-4xl: 2.8rem;
            --font-size-5xl: 3.2rem;
        }

        :root {
            /* Font weights */
            --font-weight-normal: 400;
            --font-weight-medium: 500;
            --font-weight-semibold: 600;
            --font-weight-bold: 700;
        }
        /* Sly Section - Two column layout with image and text */
        .sly-section {
            margin: 0; 
            padding: 4rem 0;
            background-color: #f8f9fa;
        }
        
        .sly-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .sly-content-wrapper {
            display: flex;
            align-items: center;
            gap: 4rem;
        }
        
        /* Image Section - 30% width */
        .sly-image-section {
            flex: 0 0 30%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .sly-image-block {
            width: 100%;
            max-width: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .sly-image {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 12px;
            border: none;
            outline: none;
            display: block;
        }
        
        /* Text Section - 70% width */
        .sly-text-section {
            flex: 0 0 70%;
            padding-left: 1rem;
        }
        
        /* Header styles */
        .sly-header {
            margin-bottom: 2rem;
        }
        
        .sly-subtitle {
            color: #3b82f6;
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 12px;
            letter-spacing: 0.3px;
            text-transform: uppercase;
        }
        
        .sly-main-title {
            font-family: var(--font-display);
            font-size: var(--font-size-5xl);
            font-weight: 700;
            color: #000;
            line-height: 1.2;
            margin-bottom: 0;
        }
        
        /* Description */
        .sly-description {
            margin-bottom: 1.5rem;
        }
        
        .sly-description-text {
            font-size: 20px;
            color: #374151;
            line-height: 1.6;
            font-weight: 500;
        }
        
        /* Paragraph */
        .sly-paragraph {
            margin-bottom: 0;
        }
        
        .sly-paragraph-text {
            font-size: 18px;
            color: #6b7280;
            line-height: 1.7;
        }
        
        /* Responsive design */
        @media (max-width: 1024px) {
            .sly-container {
                padding: 0 1.5rem;
            }
            
            .sly-content-wrapper {
                gap: 3rem;
            }
            
            .sly-main-title {
                font-size: 34px;
            }
            
            .sly-description-text {
                font-size: 19px;
            }
            
            .sly-paragraph-text {
                font-size: 17px;
            }
        }
        
        @media (max-width: 768px) {
            .sly-section {
                padding: 3rem 0;
            }
            
            .sly-container {
                padding: 0 1rem;
            }
            
            .sly-content-wrapper {
                flex-direction: column;
                gap: 2.5rem;
            }
            
            .sly-image-section {
                flex: none;
                width: 100%;
                max-width: 300px;
            }
            
            .sly-text-section {
                flex: none;
                width: 100%;
                padding-left: 0;
                text-align: center;
            }
            
            .sly-main-title {
                font-size: 30px;
            }
            
            .sly-subtitle {
                font-size: 15px;
            }
            
            .sly-description-text {
                font-size: 18px;
            }
            
            .sly-paragraph-text {
                font-size: 16px;
            }
        }
        
        @media (max-width: 480px) {
            .sly-section {
                padding: 2.5rem 0;
            }
            
            .sly-container {
                padding: 0 0.75rem;
            }
            
            .sly-content-wrapper {
                gap: 2rem;
            }
            
            .sly-header {
                margin-bottom: 1.5rem;
            }
            
            .sly-main-title {
                font-size: 26px;
            }
            
            .sly-subtitle {
                font-size: 14px;
            }
            
            .sly-description {
                margin-bottom: 1.25rem;
            }
            
            .sly-description-text {
                font-size: 17px;
            }
            
            .sly-paragraph-text {
                font-size: 15px;
            }
        }
    
        :root {
            /* Primary font families */
            --font-primary: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-heading: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-display: 'Original Surfer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-byline: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-mono: 'Source Code Pro', 'JetBrains Mono', 'Fira Code', monospace;
            --font-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'JetBrains Mono', monospace;
        }

        :root {
            /* Font sizes */
            --font-size-xs: 0.7rem;
            --font-size-sm: 0.9rem;
            --font-size-base: 1rem;
            --font-size-lg: 1.1rem;
            --font-size-xl: 1.4rem;
            --font-size-2xl: 1.8rem;
            --font-size-3xl: 2.2rem;
            --font-size-4xl: 2.8rem;
            --font-size-5xl: 3.2rem;
        }

        :root {
            /* Font weights */
            --font-weight-normal: 400;
            --font-weight-medium: 500;
            --font-weight-semibold: 600;
            --font-weight-bold: 700;
        }
        /* Sinema Section - Minimal Terminal Display */
        .sinema-section {
            margin: 0; 
            padding: 0;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            border-left: none !important;
            padding-left: 0 !important;
        }
        
        .sinema-section::before {
            display: none !important;
        }
        
        .sinema-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
            width: 100%;
        }
        
        .sinema-content-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0;
        }
        
        /* Terminal Section */
        .sinema-terminal-section {
            width: 100%;
            max-width: 800px;
            display: flex;
            justify-content: center;
        }
        
        .sinema-terminal-container {
            width: 100%;
            background: transparent;
            border-radius: 0;
            padding: 0;
            box-shadow: none;
            position: relative;
        }
        
        /* OS X Tiger Traffic Light Buttons */
        .sinema-traffic-lights {
            position: absolute;
            top: 1rem;
            left: 1rem;
            display: flex;
            gap: 8px;
            z-index: 10;
        }
        
        .sinema-traffic-light {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            position: relative;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .sinema-traffic-light:hover {
            transform: scale(1.1);
        }
        
        .sinema-traffic-light.red {
            background: linear-gradient(135deg, #ff5f56 0%, #ff3b30 50%, #d70015 100%);
            box-shadow: 
                0 1px 3px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.4),
                inset 0 -1px 0 rgba(0, 0, 0, 0.2);
        }
        
        .sinema-traffic-light.yellow {
            background: linear-gradient(135deg, #ffbd2e 0%, #ff9500 50%, #ff8c00 100%);
            box-shadow: 
                0 1px 3px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.4),
                inset 0 -1px 0 rgba(0, 0, 0, 0.2);
        }
        
        .sinema-traffic-light.green {
            background: linear-gradient(135deg, #27ca3f 0%, #30d158 50%, #34c759 100%);
            box-shadow: 
                0 1px 3px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.4),
                inset 0 -1px 0 rgba(0, 0, 0, 0.2);
        }
        
        /* Glossy aqua glass effect */
        .sinema-traffic-light::before {
            content: '';
            position: absolute;
            top: 1px;
            left: 1px;
            right: 1px;
            height: 50%;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.1) 100%);
            border-radius: 50%;
            pointer-events: none;
        }
        
        /* Subtle inner glow */
        .sinema-traffic-light::after {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            right: 2px;
            bottom: 2px;
            background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        
        
        .sinema-terminal-screen {
            background: #1a1a1a;
            border-radius: 8px;
            padding: 1.5rem;
            padding-top: 2.5rem;
            min-height: 400px;
            position: relative;
            overflow: hidden;
            border: 1px solid #333;
            /* Vintage CRT curved glass effect */
            transform: perspective(800px) rotateX(2deg);
            box-shadow: 
                inset 0 0 20px rgba(0, 0, 0, 0.3),
                inset 0 0 40px rgba(0, 0, 0, 0.1),
                0 0 30px rgba(0, 0, 0, 0.2),
                0 8px 16px rgba(0, 0, 0, 0.4);
        }
        
        /* Glassmorphic glare effect */
        .sinema-terminal-screen::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(
                ellipse 300px 200px at 30% 20%,
                rgba(255, 255, 255, 0.08) 0%,
                rgba(255, 255, 255, 0.04) 40%,
                rgba(255, 255, 255, 0.02) 70%,
                transparent 100%
            );
            border-radius: 8px;
            pointer-events: none;
            z-index: 1;
        }
        
        .sinema-terminal-content {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 19px;
            line-height: 1.4;
            color: #4ade80;
            position: relative;
            z-index: 2;
            /* Vintage CRT text glow */
            text-shadow: 
                0 0 3px #4ade80,
                0 0 6px rgba(74, 222, 128, 0.3),
                0 0 9px rgba(74, 222, 128, 0.1);
        }
        
        .sinema-terminal-line {
            opacity: 0;
            animation: sinema-typewriter 0.1s ease-in-out forwards;
            margin-bottom: 0.5rem;
        }
        
        .sinema-terminal-text {
            display: inline-block;
            text-shadow: 0 0 3px #4ade80;
        }
        
        /* Terminal cursor */
        .sinema-terminal-line:last-child::after {
            content: '_';
            animation: sinema-cursor 1s infinite;
            color: #4ade80;
            text-shadow: 0 0 3px #4ade80;
        }
        
        /* Animations */
        @keyframes sinema-typewriter {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes sinema-cursor {
            0%, 50% {
                opacity: 1;
            }
            51%, 100% {
                opacity: 0;
            }
        }
        
        /* Vintage CRT scanlines and curved glass effect */
        .sinema-terminal-screen::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                repeating-linear-gradient(
                    0deg,
                    transparent,
                    transparent 1px,
                    rgba(74, 222, 128, 0.03) 1px,
                    rgba(74, 222, 128, 0.03) 2px
                ),
                radial-gradient(
                    ellipse at center,
                    transparent 0%,
                    rgba(0, 0, 0, 0.1) 70%,
                    rgba(0, 0, 0, 0.2) 100%
                );
            pointer-events: none;
            animation: sinema-scanlines 0.1s linear infinite;
            border-radius: 8px;
        }
        
        @keyframes sinema-scanlines {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(2px);
            }
        }
        
        /* Responsive design */
        @media (max-width: 1024px) {
            .sinema-container {
                padding: 1.5rem;
            }
            
            .sinema-terminal-container {
                padding: 0;
            }
            
            .sinema-terminal-screen {
                min-height: 350px;
                padding: 1.25rem;
            }
        }
        
        @media (max-width: 768px) {
            .sinema-container {
                padding: 1rem;
            }
            
            .sinema-terminal-container {
                padding: 0;
            }
            
            .sinema-terminal-screen {
                min-height: 300px;
                padding: 1rem;
            }
            
            .sinema-terminal-content {
                font-size: 14px;
            }
        }
        
        @media (max-width: 480px) {
            .sinema-container {
                padding: 0.75rem;
            }
            
            .sinema-terminal-container {
                padding: 0;
            }
            
            .sinema-terminal-screen {
                min-height: 250px;
                padding: 0.75rem;
            }
            
            .sinema-terminal-content {
                font-size: 13px;
            }
        }
    
        :root {
            /* Primary font families */
            --font-primary: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-heading: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-display: 'Original Surfer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-byline: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-mono: 'Source Code Pro', 'JetBrains Mono', 'Fira Code', monospace;
            --font-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'JetBrains Mono', monospace;
        }

        :root {
            /* Font sizes */
            --font-size-xs: 0.7rem;
            --font-size-sm: 0.9rem;
            --font-size-base: 1rem;
            --font-size-lg: 1.1rem;
            --font-size-xl: 1.4rem;
            --font-size-2xl: 1.8rem;
            --font-size-3xl: 2.2rem;
            --font-size-4xl: 2.8rem;
            --font-size-5xl: 3.2rem;
        }

        :root {
            /* Font weights */
            --font-weight-normal: 400;
            --font-weight-medium: 500;
            --font-weight-semibold: 600;
            --font-weight-bold: 700;
        }
/* SSlogan Component Styles */
.sslogan-section {
    width: 100%;
    padding: 1.5rem 1rem;
    margin: 0;
    background: transparent;
}

.sslogan-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

.sslogan-content {
    text-align: left;
    line-height: 1.6;
}

/* Typography Hierarchy */
.sslogan-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color, #ffffff);
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-family: var(--heading-font, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
}

.sslogan-subheading {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-color);
    margin: 0 0 1.25rem 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
    font-family: var(--heading-font, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
}

.sslogan-paragraph {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-secondary, #e1e8ed);
    margin: 0 0 1.5rem 0;
    line-height: 1.7;
    font-family: var(--body-font, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
}

.sslogan-paragraph:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (min-width: 768px) {
    .sslogan-section {
        padding: 2rem 1.5rem;
    }
    
    .sslogan-heading {
        font-size: 3rem;
        margin-bottom: 2rem;
    }
    
    .sslogan-subheading {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .sslogan-paragraph {
        font-size: 1.25rem;
        margin-bottom: 1.75rem;
    }
}

@media (min-width: 1024px) {
    .sslogan-section {
        padding: 2.5rem 2rem;
    }
    
    .sslogan-container {
        max-width: 900px;
    }
    
    .sslogan-heading {
        font-size: 3.5rem;
        margin-bottom: 2.5rem;
    }
    
    .sslogan-subheading {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .sslogan-paragraph {
        font-size: 1.375rem;
        margin-bottom: 2rem;
    }
}

/* Dark mode adjustments */
@media (prefers-color-scheme: dark) {
    .sslogan-heading {
        color: var(--text-color);
    }
    
    .sslogan-subheading {
        color: var(--text-color);
    }
    
    .sslogan-paragraph {
        color: var(--text-secondary);
    }
}

/* Focus states for accessibility */
.sslogan-heading:focus,
.sslogan-subheading:focus {
    outline: 2px solid var(--accent-color, #80b6cc);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Smooth transitions */
.sslogan-heading,
.sslogan-subheading,
.sslogan-paragraph {
    transition: color 0.2s ease-in-out;
}

        /* Map Container */
        .map-container {
            width: 100vw;
            height: 100vh;
            padding: 0;
            position: relative;
            margin-left: calc(-50vw + 50%);
            margin-right: calc(-50vw + 50%);
        }

        #map {
            width: 100%;
            height: 100%;
            filter: 
                hue-rotate(200deg) 
                saturate(0.6) 
                brightness(1.1) 
                contrast(0.9);
        }

        /* Custom pastel map styling */
        .leaflet-tile {
            filter: 
                hue-rotate(180deg) 
                saturate(0.7) 
                brightness(1.2) 
                contrast(0.8);
        }

        /* Override specific map elements with pastel colors */
        .leaflet-container {
            background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
        }

        /* Custom pastel styling for map tiles */
        .leaflet-tile-pane {
            opacity: 0.9;
        }

        /* Custom larger marker styling */
        .custom-marker {
            background: transparent;
            border: none;
        }

        .marker-pin {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ff6b35, #e55a2b);
            border: 4px solid #ffffff;
            border-radius: 50% 50% 50% 0;
            transform: rotate(-45deg);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(255, 107, 53, 0.2);
            position: relative;
            transition: all 0.3s ease;
        }

        .marker-pin:hover {
            transform: rotate(-45deg) scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 0 3px rgba(255, 107, 53, 0.3);
        }

        .marker-pin::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 18px;
            height: 18px;
            background: #ffffff;
            border-radius: 50%;
            transform: translate(-50%, -50%) rotate(45deg);
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        /* Apple CarPlay-style overlay layer */
        .overlay-layer {
            position: absolute;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            pointer-events: auto;
        }

        .overlay-content {
            background: linear-gradient(135deg, 
                rgba(60, 70, 80, 0.85) 0%, 
                rgba(80, 90, 100, 0.8) 50%, 
                rgba(60, 70, 80, 0.85) 100%);
            backdrop-filter: blur(20px) saturate(1.1);
            border-radius: 20px;
            padding: 48px 40px;
            box-shadow: 
                0 12px 40px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.2);
            min-width: 500px;
            max-width: 600px;
            text-align: left;
            position: relative;
            overflow: hidden;
        }

        .overlay-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(255, 255, 255, 0.3) 20%, 
                rgba(255, 255, 255, 0.5) 50%, 
                rgba(255, 255, 255, 0.3) 80%, 
                transparent 100%);
            z-index: 1;
        }

        .overlay-content::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.03) 0%, 
                transparent 30%, 
                transparent 70%, 
                rgba(255, 255, 255, 0.01) 100%);
            pointer-events: none;
            z-index: 0;
        }

        .business-name {
            color: #ffffff;
            font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 42px;
            font-weight: 800;
            letter-spacing: -0.8px;
            line-height: 1.1;
            margin-bottom: 16px;
            position: relative;
            z-index: 2;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        .business-tagline {
            color: #e5e7eb;
            font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 22px;
            font-weight: 500;
            letter-spacing: 0.3px;
            line-height: 1.3;
            margin-bottom: 20px;
            opacity: 0.9;
            position: relative;
            z-index: 2;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
        }

        .business-location {
            color: #d1d5db;
            font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 20px;
            font-weight: 400;
            letter-spacing: 0.2px;
            line-height: 1.4;
            margin-bottom: 24px;
            opacity: 0.8;
            position: relative;
            z-index: 2;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
        }

        .business-contact {
            color: #ffffff;
            font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 22px;
            font-weight: 600;
            letter-spacing: 0.4px;
            line-height: 1.3;
            position: relative;
            z-index: 2;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
        }

        .phone-number {
            color: #60a5fa;
            font-weight: 700;
            text-decoration: none;
            cursor: pointer;
            transition: color 0.2s ease;
        }

        .phone-number:hover {
            color: #93c5fd;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .map-container {
                height: 100vh;
            }
            
            .overlay-content {
                min-width: 300px;
                max-width: 400px;
                padding: 32px 24px;
            }
            
            .business-name {
                font-size: 32px;
            }
            
            .business-tagline {
                font-size: 18px;
            }
            
            .business-location {
                font-size: 16px;
            }
            
            .business-contact {
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            .map-container {
                height: 100vh;
            }
            
            .overlay-content {
                min-width: 280px;
                max-width: 320px;
                padding: 24px 20px;
            }
            
            .business-name {
                font-size: 28px;
            }
            
            .business-tagline {
                font-size: 16px;
            }
            
            .business-location {
                font-size: 14px;
            }
            
            .business-contact {
                font-size: 16px;
            }
        }
    
        :root {
            /* Primary font families */
            --font-primary: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-heading: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-display: 'Original Surfer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-byline: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-mono: 'Source Code Pro', 'JetBrains Mono', 'Fira Code', monospace;
            --font-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'JetBrains Mono', monospace;
        }

        :root {
            /* Font sizes */
            --font-size-xs: 0.7rem;
            --font-size-sm: 0.9rem;
            --font-size-base: 1rem;
            --font-size-lg: 1.1rem;
            --font-size-xl: 1.4rem;
            --font-size-2xl: 1.8rem;
            --font-size-3xl: 2.2rem;
            --font-size-4xl: 2.8rem;
            --font-size-5xl: 3.2rem;
        }

        :root {
            /* Font weights */
            --font-weight-normal: 400;
            --font-weight-medium: 500;
            --font-weight-semibold: 600;
            --font-weight-bold: 700;
        }
        /* SSS Button Component - Centralized Button Styles */
        
        /* Base button styles */
        .sss-button {
            font-family: "myriad-pro", system-ui, -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
            font-weight: 500;
            border-radius: 1000px;
            border: none;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            letter-spacing: 0.0375em;
            user-select: none;
            -webkit-user-select: none;
            touch-action: manipulation;
            vertical-align: baseline;
            position: relative;
            overflow: hidden;
            outline: none;
        }
        
        /* Button sizes */
        .sss-button-small {
            font-size: 0.875rem;
            padding: 0.5rem 1.5rem;
            min-width: 4em;
        }
        
        .sss-button-medium {
            font-size: 1rem;
            padding: 0.875rem 2rem;
            min-width: 6em;
        }
        
        .sss-button-large {
            font-size: 1.125rem;
            padding: 1rem 2.5rem;
            min-width: 6em;
        }
        
        /* Override button sizes to use custom padding for gradient buttons */
        .sss-button-default.sss-button-small,
        .sss-button-warning.sss-button-small,
        .sss-button-success.sss-button-small,
        .sss-button-neutral.sss-button-small {
            padding: 0.375rem 1rem;
            font-size: 0.875rem;
        }
        
        .sss-button-default.sss-button-medium,
        .sss-button-warning.sss-button-medium,
        .sss-button-success.sss-button-medium,
        .sss-button-neutral.sss-button-medium {
            padding: 0.5rem 1.5rem;
            font-size: 1rem;
        }
        
        .sss-button-default.sss-button-large,
        .sss-button-warning.sss-button-large,
        .sss-button-success.sss-button-large,
        .sss-button-neutral.sss-button-large {
            padding: 0.625rem 2rem;
            font-size: 1.125rem;
        }
        
        /* Link button sizes */
        .sss-button-link.sss-button-small {
            padding: 0.125rem 0.375rem;
            font-size: 0.875rem;
        }
        
        .sss-button-link.sss-button-medium {
            padding: 0.25rem 0.5rem;
            font-size: 1rem;
        }
        
        .sss-button-link.sss-button-large {
            padding: 0.375rem 0.75rem;
            font-size: 1.125rem;
        }
        
        /* Legacy primary button - maps to default for backward compatibility */
        .sss-button-primary.sss-button-small {
            padding: 0.375rem 1rem;
            font-size: 0.875rem;
        }
        
        .sss-button-primary.sss-button-medium {
            padding: 0.5rem 1.5rem;
            font-size: 1rem;
        }
        
        .sss-button-primary.sss-button-large {
            padding: 0.625rem 2rem;
            font-size: 1.125rem;
        }
        
        /* Primary button - Custom button-7 design with variants */
        .sss-button-primary {
            touch-action: manipulation;
            cursor: pointer;
            position: relative;
            padding: 0.5rem 1.5rem;
            border-radius: 1.87rem;
            line-height: 1;
            font-size: 1rem;
            font-weight: 600;
            transition: all 150ms ease-in-out;
            white-space: nowrap;
            
            border: 1px solid #012880;
            background-image: linear-gradient(-180deg, #4FC3F7 0%, #2E7D32 100%);
            box-shadow: 0 0.5rem 0.625rem 0 rgba(0,0,0,0.2),
                        0 -0.125rem 0.75rem rgba(25, 118, 210, 1) inset,
                        0 0.375rem 0.125rem rgba(255,255,255, 0.4) inset,
                        0 0.125rem 0.25rem 0 rgba(76, 175, 80, 1) inset;
        }
        
        .sss-button-primary:hover {
            filter: brightness(1.1);
            text-decoration: none;
        }
        
        .sss-button-primary:active {
            transform: scale(.96);
            text-decoration: none;
        }
        
        .sss-button-primary:focus {
            outline: none;
        }
        
        /* Primary button variants */
        .sss-button-primary.sss-button-variant-default {
            /* Default blue-green gradient - already defined above */
        }
        
        .sss-button-primary.sss-button-variant-warning {
            border: 1px solid #D84315;
            background-image: linear-gradient(-180deg, #FF7043 0%, #D84315 100%);
            box-shadow: 0 0.5rem 0.625rem 0 rgba(0,0,0,0.2),
                        0 -0.125rem 0.75rem rgba(211, 47, 47, 1) inset,
                        0 0.375rem 0.125rem rgba(255,255,255, 0.4) inset,
                        0 0.125rem 0.25rem 0 rgba(255, 87, 34, 1) inset;
        }
        
        .sss-button-primary.sss-button-variant-success {
            border: 1px solid #1B5E20;
            background-image: linear-gradient(-180deg, #66BB6A 0%, #2E7D32 100%);
            box-shadow: 0 0.5rem 0.625rem 0 rgba(0,0,0,0.2),
                        0 -0.125rem 0.75rem rgba(27, 94, 32, 1) inset,
                        0 0.375rem 0.125rem rgba(255,255,255, 0.4) inset,
                        0 0.125rem 0.25rem 0 rgba(76, 175, 80, 1) inset;
        }
        
        .sss-button-primary.sss-button-variant-neutral {
            border: 1px solid #424242;
            background-image: linear-gradient(-180deg, #E0E0E0 0%, #9E9E9E 100%);
            box-shadow: 0 0.5rem 0.625rem 0 rgba(0,0,0,0.2),
                        0 -0.125rem 0.75rem rgba(66, 66, 66, 1) inset,
                        0 0.375rem 0.125rem rgba(255,255,255, 0.4) inset,
                        0 0.125rem 0.25rem 0 rgba(158, 158, 158, 1) inset;
        }
        
        .sss-button-primary.sss-button-variant-link {
            border: none;
            background: transparent;
            box-shadow: none;
            color: #81C4F7;
            text-decoration: none;
            padding: 0;
            border-radius: 0;
            font-weight: 500;
            display: inline;
            text-align: left;
        }
        
        .sss-button-primary.sss-button-variant-link:hover {
            color: #1976D2;
            text-decoration: none;
            background: transparent;
            filter: none;
            transform: none;
        }
        
        .sss-button-primary.sss-button-variant-link:active {
            color: #0D47A1;
            transform: none;
        }
        
        .sss-button-primary.sss-button-variant-link:focus {
            outline: 1px solid #4FC3F7;
            outline-offset: 1px;
        }
        
        /* Text styling for primary button variants */
        .sss-button-primary .sss-button-text {
            color: transparent;
            background-image: linear-gradient(0deg, #81C784 -10%, #FEFAFD 100%);
            -webkit-background-clip: text;
            background-clip: text;
            filter: drop-shadow(0 2px 2px hsla(120, 100%, 20%, 1));
        }
        
        .sss-button-primary.sss-button-variant-warning .sss-button-text {
            background-image: linear-gradient(0deg, #FFAB91 -10%, #FEFAFD 100%);
            filter: drop-shadow(0 2px 2px hsla(14, 100%, 20%, 1));
        }
        
        .sss-button-primary.sss-button-variant-success .sss-button-text {
            background-image: linear-gradient(0deg, #A5D6A7 -10%, #FEFAFD 100%);
            filter: drop-shadow(0 2px 2px hsla(120, 100%, 20%, 1));
        }
        
        .sss-button-primary.sss-button-variant-neutral .sss-button-text {
            background-image: linear-gradient(0deg, #F5F5F5 -10%, #424242 100%);
            filter: drop-shadow(0 2px 2px hsla(0, 0%, 20%, 1));
        }
        
        .sss-button-primary.sss-button-variant-link .sss-button-text {
            color: inherit;
            background: none;
            -webkit-background-clip: unset;
            background-clip: unset;
            filter: none;
            text-decoration: inherit;
        }
        
        /* Shine effects for primary button variants (except link) */
        .sss-button-primary:not(.sss-button-variant-link)::before,
        .sss-button-primary.sss-button-variant-default::before,
        .sss-button-primary.sss-button-variant-warning::before,
        .sss-button-primary.sss-button-variant-success::before,
        .sss-button-primary.sss-button-variant-neutral::before {
            content: "";
            display: block;
            height: 0.125rem;
            position: absolute;
            top: 0.25rem;
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% - 1.5rem);
            background: #fff;
            border-radius: 100%;
            
            opacity: 0.7;
            background-image: linear-gradient(-270deg, rgba(255,255,255,0.00) 0%, #FFFFFF 20%, #FFFFFF 80%, rgba(255,255,255,0.00) 100%);
        }
        
        .sss-button-primary:not(.sss-button-variant-link)::after,
        .sss-button-primary.sss-button-variant-default::after,
        .sss-button-primary.sss-button-variant-warning::after,
        .sss-button-primary.sss-button-variant-success::after,
        .sss-button-primary.sss-button-variant-neutral::after {
            content: "";
            display: block;
            height: 0.125rem;
            position: absolute;
            bottom: 0.375rem;
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% - 1.5rem);
            background: #fff;
            border-radius: 100%;
            
            filter: blur(1px);
            opacity: 0.05;
            background-image: linear-gradient(-270deg, rgba(255,255,255,0.00) 0%, #FFFFFF 20%, #FFFFFF 80%, rgba(255,255,255,0.00) 100%);
        }
        
        /* Adjust shine effects for different button sizes */
        .sss-button-primary.sss-button-small::before,
        .sss-button-primary.sss-button-small::after,
        .sss-button-primary.sss-button-variant-default.sss-button-small::before,
        .sss-button-primary.sss-button-variant-default.sss-button-small::after,
        .sss-button-primary.sss-button-variant-warning.sss-button-small::before,
        .sss-button-primary.sss-button-variant-warning.sss-button-small::after,
        .sss-button-primary.sss-button-variant-success.sss-button-small::before,
        .sss-button-primary.sss-button-variant-success.sss-button-small::after,
        .sss-button-primary.sss-button-variant-neutral.sss-button-small::before,
        .sss-button-primary.sss-button-variant-neutral.sss-button-small::after {
            width: calc(100% - 1rem);
        }
        
        .sss-button-primary.sss-button-large::before,
        .sss-button-primary.sss-button-large::after,
        .sss-button-primary.sss-button-variant-default.sss-button-large::before,
        .sss-button-primary.sss-button-variant-default.sss-button-large::after,
        .sss-button-primary.sss-button-variant-warning.sss-button-large::before,
        .sss-button-primary.sss-button-variant-warning.sss-button-large::after,
        .sss-button-primary.sss-button-variant-success.sss-button-large::before,
        .sss-button-primary.sss-button-variant-success.sss-button-large::after,
        .sss-button-primary.sss-button-variant-neutral.sss-button-large::before,
        .sss-button-primary.sss-button-variant-neutral.sss-button-large::after {
            width: calc(100% - 2rem);
        }
        
        /* Secondary button - Sophisticated gradient with shine effects */
        .sss-button-secondary {
            background: linear-gradient(rgba(160, 160, 160, 0.625), rgba(255, 255, 255, 0.625));
            color: #ffffff;
            border: none;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0.375em 0.5em rgba(0, 0, 0, 0.2), 
                        0 0.125em 0.125em rgba(0, 0, 0, 0.3),  
                        inset 0 0.25em 0.25em rgba(0, 0, 0, 0.4),
                        inset 0 0.375em 0.5em 0.25em #BBBBBB;
        }
        
        .sss-button-secondary:hover {
            transform: translateY(-1px);
            box-shadow: 0 0.5em 0.6em rgba(0, 0, 0, 0.25), 
                        0 0.15em 0.15em rgba(0, 0, 0, 0.35),  
                        inset 0 0.25em 0.25em rgba(0, 0, 0, 0.4),
                        inset 0 0.375em 0.5em 0.25em #BBBBBB;
        }
        
        .sss-button-secondary:focus,
        .sss-button-secondary:active {
            box-shadow: 0 0.375em 0.5em rgba(0, 0, 0, 0.2), 
                        0 0.125em 0.125em rgba(0, 0, 0, 0.3),  
                        inset 0 0.25em 0.25em rgba(0, 0, 0, 0.4),
                        inset 0 0.375em 0.5em 0.25em #BBBBBB,
                        0 0 0.5em rgba(0, 0, 0, 0.25);
        }
        
        /* Top shine effect for secondary button */
        .sss-button-secondary::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            height: 33%;
            background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.3));
            width: calc(100% - 0.875em);
            border-radius: 2em 2em 0.5em 0.5em;
            top: 5%;
            filter: blur(1px);
            z-index: 2;
        }
        
        /* Bottom glow effect for secondary button */
        .sss-button-secondary::after {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            height: 33%;
            background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.5));
            width: calc(100% - 1.25em);
            border-radius: 0.75em;
            bottom: 10%;
            filter: blur(3px);
        }
        
        /* Text styling for secondary button */
        .sss-button-secondary .sss-button-text {
            position: relative;
            top: -1px;
            z-index: 1;
            letter-spacing: 0.0375em;
            -webkit-text-stroke-width: 0.025em;
            -webkit-text-stroke-color: #000000;
            text-shadow: 0 0.25em 0.2em rgba(0, 0, 0, 0.25);
        }
        
        /* Gradient button - Purple gradient with shadow */
        .sss-button-gradient {
            background-color: initial;
            background-image: linear-gradient(rgba(179, 132, 201, .84), rgba(57, 31, 91, .84) 50%);
            border-radius: 42px;
            border-width: 0;
            box-shadow: rgba(57, 31, 91, 0.24) 0 2px 2px,rgba(179, 132, 201, 0.4) 0 8px 12px;
            color: #FFFFFF;
            font-weight: 700;
            letter-spacing: .04em;
            text-shadow: rgba(255, 255, 255, 0.4) 0 0 4px,rgba(255, 255, 255, 0.2) 0 0 12px,rgba(57, 31, 91, 0.6) 1px 1px 4px,rgba(57, 31, 91, 0.32) 4px 4px 16px;
        }
        
        .sss-button-gradient:hover {
            background-image: linear-gradient(#B384C9, #391F5B 50%);
            transform: translateY(-2px);
        }
        
        /* CTA button - Dark with icon */
        .sss-button-cta {
            background: #1a1a1a;
            color: #ffffff;
            border: 1px solid #333;
            font-weight: 500;
        }
        
        .sss-button-cta:hover {
            background: #333333;
            transform: translateY(-1px);
        }
        
        /* Button icons */
        .sss-button-icon {
            font-size: 1.1em;
            display: inline-flex;
            align-items: center;
        }
        
        .sss-button-text {
            font-weight: inherit;
        }
        
        /* Icon-specific styles */
        .sss-button-icon-lightning::after {
            content: "⚡";
            font-size: 1.1em;
            margin-left: 0.5rem;
        }
        
        .sss-button-icon-arrow::after {
            content: "→";
            font-size: 1.1em;
            margin-left: 0.5rem;
        }
        
        .sss-button-icon-star::after {
            content: "★";
            font-size: 1.1em;
            margin-left: 0.5rem;
        }
        
        .sss-button-icon-heart::after {
            content: "♥";
            font-size: 1.1em;
            margin-left: 0.5rem;
        }
        
        .sss-button-icon-check::after {
            content: "✓";
            font-size: 1.1em;
            margin-left: 0.5rem;
        }
        
        .sss-button-icon-plus::after {
            content: "+";
            font-size: 1.1em;
            margin-left: 0.5rem;
        }
        
        .sss-button-icon-minus::after {
            content: "-";
            font-size: 1.1em;
            margin-left: 0.5rem;
        }
        
        /* Button group styles */
        .sss-button-group {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }
        
        .sss-button-group-left {
            justify-content: flex-start;
        }
        
        .sss-button-group-center {
            justify-content: center;
        }
        
        .sss-button-group-right {
            justify-content: flex-end;
        }
        
        .sss-button-group-small {
            gap: 0.5rem;
        }
        
        .sss-button-group-medium {
            gap: 1rem;
        }
        
        .sss-button-group-large {
            gap: 1.5rem;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .sss-button-group {
                flex-direction: column;
                align-items: center;
            }
            
            .sss-button-group-left,
            .sss-button-group-right {
                justify-content: center;
            }
            
            .sss-button {
                width: 100%;
                max-width: 300px;
            }
            
            .sss-button-small {
                max-width: 200px;
            }
            
            .sss-button-large {
                max-width: 350px;
            }
        }
        
        @media (max-width: 480px) {
            .sss-button-medium {
                font-size: 0.9rem;
                padding: 0.75rem 1.5rem;
            }
            
            .sss-button-large {
                font-size: 1rem;
                padding: 0.875rem 2rem;
            }
        }
        
        /* Focus styles for accessibility */
        .sss-button:focus {
            outline: none;
        }
        
        .sss-button-gradient:focus {
            outline: none;
        }
        
        .sss-button-cta:focus {
            outline: none;
        }
        
        /* Disabled state */
        .sss-button:disabled,
        .sss-button.disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none !important;
        }
        
        .sss-button:disabled:hover,
        .sss-button.disabled:hover {
            transform: none;
            box-shadow: none;
        }
    
        /* SSS Sticker Component - Sticker Styles */
        
        /* Base sticker styles */
        .sticker-component {
            display: inline-block;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            border: none;
            outline: none;
            cursor: pointer;
            transition: all 0.3s ease;
            vertical-align: middle;
        }
        
        /* Sticker sizes */
        .sticker-size-small {
            width: 32px;
            height: 32px;
        }
        
        .sticker-size-medium {
            width: 64px;
            height: 64px;
        }
        
        .sticker-size-large {
            width: 128px;
            height: 128px;
        }
        
        .sticker-size-xlarge {
            width: 256px;
            height: 256px;
        }
        
        /* Sticker positions */
        .sticker-position-left {
            margin-right: auto;
        }
        
        .sticker-position-center {
            display: block;
            margin-left: auto;
            margin-right: auto;
        }
        
        .sticker-position-right {
            margin-left: auto;
        }
        
        /* Sticker animations */
        .sticker-animation-bounce {
            animation: sticker-bounce 2s infinite;
        }
        
        .sticker-animation-spin {
            animation: sticker-spin 3s linear infinite;
        }
        
        .sticker-animation-float {
            animation: sticker-float 3s ease-in-out infinite;
        }
        
        .sticker-animation-pulse {
            animation: sticker-pulse 2s ease-in-out infinite;
        }
        
        /* Animation keyframes */
        @keyframes sticker-bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }
        
        @keyframes sticker-spin {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
        
        @keyframes sticker-float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-15px);
            }
        }
        
        @keyframes sticker-pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
        }
        
        /* Hover effects */
        .sticker-component:hover {
            transform: scale(1.05);
            filter: brightness(1.1);
        }
        
        /* Focus states for accessibility */
        .sticker-component:focus {
            outline: 2px solid #007AFF;
            outline-offset: 2px;
        }
        
        /* Responsive behavior */
        @media (max-width: 768px) {
            .sticker-size-xlarge {
                width: 192px;
                height: 192px;
            }
            
            .sticker-size-large {
                width: 96px;
                height: 96px;
            }
            
            .sticker-size-medium {
                width: 48px;
                height: 48px;
            }
            
            .sticker-size-small {
                width: 24px;
                height: 24px;
            }
        }
        
        /* High contrast mode support */
        @media (prefers-contrast: high) {
            .sticker-component {
                filter: contrast(1.2);
            }
        }
        
        /* Reduced motion support */
        @media (prefers-reduced-motion: reduce) {
            .sticker-component {
                animation: none !important;
                transition: none !important;
            }
            
            .sticker-component:hover {
                transform: none;
            }
        }
    
/* Video Component Styles */
.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    padding: 1rem;
}

.video-container video {
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background-color: #000;
    display: block;
    object-fit: cover;
}

/* Responsive video sizing */
@media (max-width: 768px) {
    .video-container {
        margin: 1rem 0;
        padding: 0.5rem;
    }
    
    .video-container video {
        /* border-radius controlled via config */
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .video-container video {
        box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
    }
}
