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



body {
    font-family: 'Libre Baskerville', 'Baskerville', 'Georgia', serif;
    overflow-x: hidden;
    background: #000;
    color: #ffffff;
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Global black text stroke for ALL text */
* {
    -webkit-text-stroke: 2px #000;
    text-stroke: 2px #000;
    paint-order: stroke fill;
}

/* Stronger stroke for headings and large text */
h1, h2, h3, .section-title, .promo-title, .hero-title, .product-title {
    -webkit-text-stroke: 3px #000;
    text-stroke: 3px #000;
}

/* Medium stroke for body text */
h4, h5, h6, p, span, a, li, label, button, input, textarea, select, option {
    -webkit-text-stroke: 2px #000;
    text-stroke: 2px #000;
}

/* Enhanced stroke for navigation and important UI elements */
.nav-link, .nav-logo, .cart-count, .menu-toggle,
.product-price, .product-description, .product-name,
.cart-item-details, .cart-total, .checkout-btn,
.stat-value, .stat-content h3, .badge-text h4, .badge-text p,
.about-description, .level-text, .xp-text,
.order-number, .order-status, .detail-value, .detail-label,
.item-name, .item-price, .item-quantity,
.message-content, .chat-input,
.modal-title, .modal-content,
.btn, .btn-primary, .btn-secondary,
.footer-link, .footer-text, .copyright {
    -webkit-text-stroke: 2.5px #000;
    text-stroke: 2.5px #000;
}

/* Extra strong stroke for prices and important numbers */
.product-price, .cart-total, .order-total, .item-total,
.price, .total-amount, .subtotal, .tax-amount {
    -webkit-text-stroke: 3px #000;
    text-stroke: 3px #000;
}

/* Ensure emojis and icons don't get stroked */
.stat-icon, .badge-icon, .floating-element, .feature-icon {
    -webkit-text-stroke: 0;
    text-stroke: 0;
}

/* Container */
.container {
    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;
}

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.flex-column {
    display: flex;
    flex-direction: column;
}

.grid {
    display: grid;
}

/* Accessibility - Screen reader only */
.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;
}

/* Skip link for keyboard navigation */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    z-index: 10000;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}

/* Responsive Utilities */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hidden-mobile {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
}

 