/*
 * OSIX - Modern HTML Template
 * Inspired by Mac OS 9 Classic Interface
 * Version: 1.0.0
 * 
 * A nostalgic yet modern template that brings back the classic Mac OS 9 aesthetic
 * with contemporary responsive design principles.
 */

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

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

html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    line-height: 1.6;
    font-family: 'Geneva', 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    color: #000;
    background: url('/assets/images/wallpaper.jpg') #797ca7;
    overflow-x: hidden;
}

/* ==========================================================================
   Typography
   ========================================================================== */

@font-face {
    font-family: 'Chicago';
    src: url('../fonts/chicago.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Charcoal';
    src: url('../fonts/charcoal.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geneva';
    src: url('../fonts/geneva.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Chicago', monospace;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #000;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

a {
    color: #322e9c;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #252275;
    text-decoration: underline;
}

/* ==========================================================================
   Layout & Grid System
   ========================================================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.col {
    flex: 1;
    padding: 0 10px;
}

.col-sidebar {
    flex: 0 0 300px;
}

.col-main {
    flex: 1;
    min-width: 0;
}

/* Responsive Grid */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }
    
    .col-sidebar {
        flex: 1;
        order: 2;
        margin-top: 20px;
    }
    
    .col-main {
        order: 1;
    }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.os-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #dedede;
    border-bottom: 2px solid #000;
    box-shadow: 
        inset 0 1px 0 rgba(255,255,255,0.5),
        inset 0 -1px 0 rgba(0,0,0,0.25),
        0 2px 4px rgba(0,0,0,0.1);
}

.os-menubar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 25px;
    padding: 0 15px;
    font-family: 'Chicago', monospace;
    font-size: 12px;
    line-height: 1;
    text-align: center;
}

.os-logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    padding: 6px 10px;
}

.os-logo:hover {
    color: #000;
    text-decoration: none;
}

.os-apple-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

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

.os-nav li {
    margin: 0;
}

.os-nav a {
    display: block;
    padding: 6px 12px;
    color: #000;
    text-decoration: none;
    transition: color 0.2s ease;
}

.os-nav a:hover,
.os-nav a.active {
    color: #ffffff;
    background: #322e9c;
    text-decoration: none;
}

.os-time {
    font-weight: bold;
    color: #000;
    padding: 6px 10px;
    font-family: 'Chicago', monospace;
    font-size: 12px;
    white-space: nowrap;
    margin-left: auto;
}

.os-mobile-toggle {
    display: none;
    background: none;
    border: none;
    padding: 4px 8px;
    font-family: 'Chicago', monospace;
    font-size: 12px;
    cursor: pointer;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .os-mobile-toggle {
        display: block;
    }
    
    .os-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #dedede;
        border: 2px solid #000;
        border-top: 1px solid #000;
        flex-direction: column;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }
    
    .os-nav.active {
        display: flex;
    }
    
    .os-nav a {
        padding: 12px 20px;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
}

/* ==========================================================================
   Main Content Area
   ========================================================================== */

.main-content {
    padding: 40px 0;
    min-height: calc(100vh - 200px);
}

/* ==========================================================================
   OS9 Window & Widget Base Components
   ========================================================================== */

/* Base container for both windows and widgets */
.os-container,
.os-window,
.widget {
    background: #c4c4c4;
    border: 1px solid #000;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    box-shadow: 
        inset 0 1px 0 rgba(255,255,255,0.5),
        inset 0 -1px 0 rgba(0,0,0,0.25),
        0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    overflow: hidden;
    font-family: 'Chicago', monospace;
}

/* Base header/title styling */
.os-window-header,
.widget-title {
    background: linear-gradient(#eaeaea 50%, #8a8a8a 50%);
    background-size: 2px 2px;
    text-align: center;
    border-bottom: 1px solid #000;
    position: relative;
}

.os-title,
.os-window-title,
.widget-title h3 {
    background: #c4c4c4;
    display: inline-block;
    padding: 5px 12px 6px 12px;
    font-weight: bold;
    font-size: 12px;
    line-height: 1;
    color: #000;
    margin: 0;
}

/* Base content styling */
.os-content,
.os-window-content,
.widget-content {
    color: #000;
    padding: 15px;
    font-size: 13px;
    line-height: 1.6;
    border: 1px solid #000;
    border-top: 0;
}

/* ==========================================================================
   OS9 Window Components (specific overrides)
   ========================================================================== */

.os-window-inner,
.widget-inner {
    margin: 3px;
}

/* Window-specific content styling */
.os-window-content {
    background: #fff;
    font-family: 'Geneva', sans-serif;
}

/* Widget-specific content styling */
.widget-content {
    background: #fff;
    font-family: 'Chicago', monospace;
    font-size: 12px;
    border-top: 2px solid #000;
    box-shadow: 
        inset 0 1px 0 rgba(255,255,255,0.5),
        inset 0 -1px 0 rgba(0,0,0,0.25);
}

.os-window-toolbar {
    background: #dedede;
    border: 1px solid #000;
    border-bottom: 2px solid #000;
    font-weight: bold;
    box-shadow: 
        inset 0 1px 0 rgba(255,255,255,0.5),
        inset 0 -1px 0 rgba(0,0,0,0.25);
}

.os-window-toolbar ul {
    list-style: none;
    display: inline-flex;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.os-window-toolbar li {
    display: inline-block;
}

.os-window-toolbar a {
    display: inline-block;
    padding: 4px 8px;
    color: #000;
    text-decoration: none;
    font-size: 11px;
    transition: all 0.2s ease;
}

.os-window-toolbar a:hover {
    background: #322e9c;
    color: #fff;
    text-decoration: none;
}

.os-window-content {
    background: #fff;
    color: #000;
    padding: 15px;
    font-family: 'Geneva', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    border: 1px solid #000;
    border-top: 0;
}

.os-window-footer {
    background: #dedede;
    border: 1px solid #000;
    border-top: 0;
    padding: 6px 15px;
    font-size: 11px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 
        inset 0 1px 0 rgba(255,255,255,0.5),
        inset 0 -1px 0 rgba(0,0,0,0.25);
}

/* ==========================================================================
   Post/Article Styles
   ========================================================================== */

.post-card {
    margin-bottom: 30px;
}

.post-meta {
    color: #666;
    font-size: 12px;
    margin-bottom: 10px;
}

.post-meta a {
    color: #666;
}

.post-meta a:hover {
    color: #322e9c;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #000;
}

.post-excerpt {
    margin-bottom: 15px;
}

.post-content ul,
.post-content ol {
    margin: 20px 0;
    padding-left: 20px;
    list-style-position: outside;
}

.post-content hr {
    border: 0;
    border-top: 1px solid #ccc;
    margin: 20px 0;
}

/* ==========================================================================
   Sidebar Widget Styles (specific overrides)
   ========================================================================== */

/* Widget-specific spacing override */
.widget {
    margin-bottom: 30px;
}

/* Widget title specific override - removes bottom border that's already in base */
.widget-title {
    border-bottom: 0;
}

.widget-content ul {
    list-style: none;
}

.widget-content li {
    margin-bottom: 8px;
    padding-left: 0;
}

.widget-content a {
    color: #000;
    text-decoration: none;
    padding: 2px 4px;
    transition: all 0.2s ease;
}

.widget-content a:hover {
    background: #322e9c;
    color: #fff;
    text-decoration: none;
}

/* ==========================================================================
   Button Styles (OS9 Button Component)
   ========================================================================== */

.btn {
    padding: 6px 12px;
    background: #ddd;
    border: 1px solid #000;
    border-radius: 4px;
    box-shadow:
        inset 0 2px rgba(255,255,255,0.7),
        inset 2px 0 rgba(255,255,255,0.7),
        inset 0 -2px rgba(0,0,0,0.2),
        inset -2px 0 rgba(0,0,0,0.2);

    text-align: center;
    line-height: 1;
    cursor: pointer;
    color: #000;
    font-family: 'Chicago', monospace;
    font-size: 12px;
    text-decoration: none;
}

.btn:hover, .btn:active, .btn:focus {
    text-decoration: none;
    color: #000;
}

.btn:active {
    box-shadow:
        inset 0 1px rgba(255,255,255,0.7),
        inset 1px 0 rgba(255,255,255,0.7),
        inset 0 -1px rgba(0,0,0,0.2),
        inset -1px 0 rgba(0,0,0,0.2);
}

.btn.btn-outline {
    outline-style: double;
    outline-width: 2px;
    outline-offset: 1px;
}

/* ==========================================================================
   Forms
   ========================================================================== */

.form-group {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-family: 'Chicago', monospace;
    font-size: 12px;
    font-weight: bold;
    color: #000;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 4px 8px;
    /* Mac OS 9 inset border effect - outer light, inner dark */
    border: 1px solid;
    border-color: #8a8a8a #000 #000 #8a8a8a;
    background: #fff;
    font-family: 'Geneva', sans-serif;
    font-size: 13px;
    color: #000;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: 
        inset 1px 1px 0 rgba(0,0,0,0.25),
        inset -1px -1px 0 rgba(255,255,255,0.8);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    background: #ccccff;
    border-color: #555 #fff #fff #555;
    box-shadow: 
        inset 1px 1px 0 rgba(0,0,0,0.4),
        inset -1px -1px 0 rgba(255,255,255,1),
        0 0 0 1px #000;
    outline: 2px solid #6667cd;
    outline-offset: 2px;
}

.form-input:focus.error,
.form-textarea:focus.error,
.form-select:focus.error {
    outline: 2px solid #cc0000;
    outline-offset: 2px;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* ==========================================================================
   Pagination
   ========================================================================== */

.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0;
    padding: 20px 0;
}

.pagination a {
    background: rgba(255,255,255,0.9);
    color: #000;
    padding: 8px 16px;
    text-decoration: none;
    font-family: 'Chicago', monospace;
    font-size: 12px;
}

.pagination a:hover {
    background: #fff;
    color: #000;
    text-decoration: none;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: #dedede;
    border-top: 2px solid #000;
    padding: 30px 0;
    text-align: center;
    font-family: 'Chicago', monospace;
    font-size: 12px;
    color: #000;
    box-shadow: 
        inset 0 1px 0 rgba(255,255,255,0.5),
        0 -2px 4px rgba(0,0,0,0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.pull-left { float: left; }
.pull-right { float: right; }

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
}

@media (max-width: 768px) {
    .site-title h1 {
        font-size: 2rem;
    }
    
    .site-description {
        font-size: 0.9rem;
    }
    
    .os-window-toolbar {
        padding: 6px;
    }
    
    .os-window-toolbar ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .pagination {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .site-title h1 {
        font-size: 1.75rem;
    }
    
    .os-window-content {
        padding: 10px;
    }
    
    .widget-content {
        padding: 10px;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
    .os-header,
    .os-mobile-toggle,
    .os-window-toolbar,
    .pagination,
    .site-footer {
        display: none;
    }
    
    .main-content {
        padding: 0;
    }
    
    .os-window {
        border: 1px solid #000;
        box-shadow: none;
        page-break-inside: avoid;
    }
}

/* ==========================================================================
   Component Classes - Extracted from inline styles
   ========================================================================== */

/* Lead paragraph styling */
.lead {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #444;
}

/* Two column grid layouts */
.grid-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* Flexible grid for responsive layouts */
.grid-flexible {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

/* Auto-fit grid for smaller items */
.grid-auto-fit {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

/* Smaller auto-fit grid */
.grid-auto-fit-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

/* Newsletter signup styling */
.newsletter-signup {
    background: #f8f8f8;
    padding: 15px;
    margin: 20px 0;
}

/* Privacy notice */
.privacy-notice {
    font-size: 11px;
    color: #666;
    margin: 15px 0;
    line-height: 1.4;
}

/* Form actions row */
.form-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 25px;
}

/* Contact info item */
.contact-info-item {
    margin-bottom: 15px;
}

/* Fieldset styling for forms */
.form-fieldset {
    border: 1px solid #ddd;
    padding: 15px;
    margin: 20px 0;
}

.form-legend {
    padding: 0 10px;
    font-weight: bold;
}

/* Checkbox group labels */
.checkbox-label {
    display: flex;
    align-items: center;
    font-size: 12px;
}

.checkbox-label input {
    margin-right: 8px;
}

/* Newsletter checkbox label */
.newsletter-label {
    display: flex;
    align-items: center;
    font-size: 13px;
}

.newsletter-label input {
    margin-right: 10px;
}

/* Form status display */
.form-status {
    margin-left: auto;
    font-size: 12px;
}

/* Small text styles */
.small-text {
    font-size: 11px;
    color: #666;
}

.small-text-margin {
    font-size: 11px;
    margin-top: 10px;
    color: #666;
}

/* Post and content images with margins */
.content-image {
    margin: 20px 0;
    width: 100%;
}

/* Author bio section */
.author-bio {
    border-top: 1px solid #ccc;
    padding-top: 20px;
    margin-top: 30px;
}

.author-bio-wide {
    border-top: 2px solid #ddd;
    padding-top: 20px;
    margin-top: 40px;
}

/* Author bio flex layout */
.author-bio-flex {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* Author avatar */
.author-avatar {
    width: 80px;
    height: 80px;
    background: #ddd;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* Team member styles */
.team-member {
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: #ddd;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

/* Post tags */
.post-tags {
    margin-top: 20px;
}

.post-tags-wide {
    margin-top: 30px;
}

.tag-link {
    display: inline-block;
    background: #f0f0f0;
    padding: 4px 8px;
    margin: 2px;
    font-size: 12px;
    color: #000;
    text-decoration: none;
}

.tag-link-wide {
    display: inline-block;
    background: #f0f0f0;
    padding: 6px 12px;
    margin: 4px;
    font-size: 12px;
    color: #000;
    text-decoration: none;
}

.tag-link:hover,
.tag-link-wide:hover {
    background: #e0e0e0;
    text-decoration: none;
}

/* Comment styles */
.comment {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.comment:last-child {
    border-bottom: none;
}

.comment-meta {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

/* Comment form */
.comment-form {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #ddd;
}

/* Highlight boxes */
.highlight-box {
    background: #f8f8f8;
    padding: 20px;
    border-left: 4px solid #322e9c;
    margin: 20px 0;
}

/* Typography boxes */
.typography-display {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    background: #f5f5f5;
    padding: 20px;
}

.typography-column {
    flex: 1;
}

.chicago-font {
    font-family: 'Chicago', monospace;
    font-size: 12px;
}

.geneva-font {
    font-family: 'Geneva', sans-serif;
    font-size: 13px;
}

/* Table styles */
.color-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.color-table th,
.color-table td {
    padding: 10px;
    border: 1px solid #000;
    text-align: left;
}

.color-table th {
    background: #dedede;
}

.color-table tr:nth-child(even) {
    background: #f9f9f9;
}

/* Card layouts */
.card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.card {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Content grid layouts */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.content-grid-item {
    padding: 20px;
    border: 1px solid #ddd;
}

/* Special sections */
.hero-section {
    text-align: center;
    margin-bottom: 40px;
}

.hero-image {
    margin-bottom: 30px;
}

/* Call-to-action boxes */
.cta-box {
    background: #322e9c;
    color: white;
    padding: 20px;
    margin: 20px 0;
}

.cta-box h3 {
    color: white;
    margin-bottom: 15px;
}

.cta-box ul {
    margin: 0;
    padding-left: 20px;
}

/* Support link styling */
.support-link {
    display: block;
    text-align: center;
    background: #322e9c;
    color: white;
    padding: 8px;
    text-decoration: none;
}

.support-link:hover {
    background: #252275;
    color: white;
    text-decoration: none;
}

/* Contact info section */
.contact-section {
    background: #f0f0f0;
    padding: 20px;
    margin: 20px 0;
}

/* Comments section */
.comments-section {
    margin-top: 30px;
}

/* Blockquote styling */
.blockquote-styled {
    font-style: italic;
    font-size: 1.2em;
    margin: 30px 0;
    padding: 20px;
    border-left: 4px solid #322e9c;
    background: #f8f8f8;
}

/* Citation styling */
.citation {
    display: block;
    margin-top: 15px;
    font-size: 0.9em;
    color: #666;
}

/* Ordered list styling */
.styled-list {
    margin: 20px 0;
    padding-left: 30px;
}

/* HR styling */
.styled-hr {
    margin: 40px 0;
}

/* Call-to-action section */
.cta-section {
    background: #f0f0f0;
    padding: 20px;
}

/* Values grid */
.values-section {
    margin: 20px 0;
}

/* Footer note */
.footer-note {
    margin: 40px 0;
}

.footer-note em {
    font-style: italic;
}

/* Two column comment form */
.comment-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Enhanced Lead paragraph */
.lead {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #444;
}

.lead-large {
    font-size: 1.4em;
    line-height: 1.5;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
}

/* Hero section specific styling */
.hero-section {
    text-align: center;
    margin-bottom: 40px;
}

.hero-section .content-image {
    margin-bottom: 20px;
}

/* Content image spacing */
.content-image {
    margin: 20px 0;
    width: 100%;
}

/* Spacing classes for margins */
.margin-20 {
    margin: 20px 0;
}

.margin-30 {
    margin: 30px 0;
}

.margin-40 {
    margin: 40px 0;
}

/* Comments section spacing */
.comments-section {
    margin-top: 30px;
}

/* Special CTA box ul styling */
.cta-box ul {
    margin: 0;
    padding-left: 20px;
}

/* Form Error States */
.form-input.error,
.form-textarea.error,
.form-select.error {
    border-color: #cc0000;
    background-color: #fff5f5;
}

.field-error {
    color: #cc0000;
    font-size: 11px;
    margin-top: 5px;
    font-family: 'Chicago', monospace;
}

.form-help {
    font-size: 11px;
    color: #666;
    margin-top: 5px;
    font-family: 'Chicago', monospace;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .os-window {
        border-width: 2px;
    }
    
    .form-input,
    .form-textarea,
    .form-select {
        border-width: 2px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
