/* Sharp Strong Style - Auto-themed */
:root {
    --sh-primary: #0C200E;
    --sh-accent: #20bd64;
    --sh-gold: #29cb5f;
    --sh-gold-light: #405773;
    --sh-gold-dark: #0f3243;
    --sh-bg: #FFFFFF;
    --sh-bg-dark: #0f0f0f;
    --sh-bg-gradient: linear-gradient(135deg, #1e2012 0%, #0f0f0f 50%, #1d1d1e 100%);
    --sh-text: #0C200E;
    --sh-text-light: #504c61;
    --sh-border: #b4cee2;
    --sh-shadow: 0 1px 3px rgba(0,0,0,0.06);
    --sh-shadow-hover: rgba(0, 0, 0, 0.2);
    --sh-shadow-gold: rgba(237,202,62,0.35);
    --sh-success: #33d571;
    --sh-danger: #e24f37;
    --sh-overlay: rgba(0, 0, 0, 0.65);
}

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

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.75;
    color: var(--sh-text);
    background: var(--sh-bg);
    background-image: 
        linear-gradient(90deg, rgba(243,199,65,0.02) 0%, transparent 50%),
        linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    background-attachment: fixed;
    font-size: 16px;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(242,205,72,0.015) 3px, rgba(241,196,64,0.015) 6px);
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

body.js-enabled .sh-article-image {
    will-change: opacity, filter;
}

body.js-enabled .sh-stat-card,
body.js-enabled .sh-criteria-item,
body.js-enabled .sh-faq-item {
    will-change: transform;
}

body.fonts-loaded {
    font-display: swap;
}

body.fonts-loaded .sh-hero-title,
body.fonts-loaded .sh-article h2 {
    font-display: swap;
}

body.page-hidden * {
    animation-play-state: paused !important;
}

body.page-loaded .sh-article-image {
    transition: opacity 0.6s ease, filter 0.6s ease;
}

/* Enhanced loading states */
.sh-article-image[loading="lazy"]:not(.loaded) {
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 50%, #e9ecef 100%);
    background-size: 200% 100%;
    animation: sh-skeleton-loading 1.5s ease-in-out infinite;
}

.sh-article-image[loading="lazy"].loaded {
    animation: sh-fadeIn 0.8s ease forwards;
}

/* Additional polish for interactive elements */
.sh-btn:active {
    transform: translateY(-2px) scale(0.98);
}

.sh-nav-link:active {
    transform: translateY(0) scale(0.95);
}

.sh-faq-question:active {
    transform: scale(0.98);
}

/* Smooth transitions for all interactive elements */
.sh-btn,
.sh-nav-link,
.sh-faq-question,
.sh-criteria-item,
.sh-stat-card,
.sh-tag,
.sh-share-btn {
    will-change: transform;
}

/* Performance optimization */
.sh-hero,
.sh-stats-section,
.sh-faq-section {
    contain: layout style paint;
}

/* Enhanced visual feedback */
.sh-article a {
    color: var(--sh-gold);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-weight: 600;
}

.sh-article a:hover {
    border-bottom-color: var(--sh-gold);
    color: var(--sh-gold-dark);
}

.sh-article a:focus {
    outline: 1px solid var(--sh-gold);
    outline-offset: 3px;
    border-radius: 2px;
}

/* Enhanced visual details */
.sh-hero::before {
    animation: sh-pulse 4.5s ease-in-out infinite, sh-move-gradient 15s ease infinite;
}

@keyframes sh-move-gradient {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
}

.sh-ticker-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--sh-gold);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.sh-ticker-item:hover::after {
    width: 80%;
}

.sh-logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sh-gold), transparent);
    transition: width 0.4s ease;
    border-radius: 1px;
}

.sh-logo:hover::after {
    width: 100%;
}

.sh-logo {
    position: relative;
}

/* Enhanced table styling */
.sh-article table tbody tr:nth-child(even) {
    background: rgba(245,202,67,0.02);
}

.sh-article table tbody tr:nth-child(odd) {
    background: transparent;
}

.sh-article table tbody tr:hover {
    background: linear-gradient(135deg, rgba(245,192,59,0.12), rgba(233,184,35,0.06)) !important;
}

/* Enhanced badge styling */
.sh-hero-badge::after {
    content: '✨';
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 16px;
    animation: sh-sparkle 2s ease-in-out infinite;
    opacity: 0.8;
}

/* Enhanced rating stars */
.sh-star--filled::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(245,205,58,0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: sh-star-glow 2s ease-in-out infinite;
}

@keyframes sh-star-glow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.2); }
}

.sh-star--filled {
    position: relative;
}

/* Enhanced section dividers */
.sh-section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--sh-gold), var(--sh-gold-light), var(--sh-gold), transparent);
    margin: 46px 0;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.sh-section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: sh-shine-divider 3s infinite;
}

@keyframes sh-shine-divider {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Enhanced list styling */
.sh-article ol {
    counter-reset: list-counter;
}

.sh-article ol li {
    counter-increment: list-counter;
    position: relative;
    padding-left: 40px;
}

.sh-article ol li::before {
    content: counter(list-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--sh-gold), var(--sh-gold-light));
    color: var(--sh-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(245,202,61,0.3);
}

/* Enhanced code blocks */
.sh-article pre {
    background: linear-gradient(135deg, #1b171d 0%, #0f0f0f 100%);
    color: #ffffff;
    padding: 22px;
    border-radius: 15px;
    overflow-x: auto;
    border-left: 4px solid var(--sh-gold);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    margin: 31px 0;
}

.sh-article pre code {
    background: transparent;
    padding: 0;
    border: none;
    color: inherit;
    font-size: 14px;
    line-height: 1.6;
}

/* Enhanced blockquote styling */
.sh-article blockquote p::first-letter {
    font-size: 2em;
    float: left;
    line-height: 0.8;
    margin: 0.1em 0.1em 0.1em 0;
    color: var(--sh-gold);
    font-weight: 900;
}

/* Enhanced image loading states */
.sh-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245,198,60,0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
    border-radius: 19px;
}

.sh-image-wrapper:hover::before {
    opacity: 1;
}

/* Enhanced footer links */
.sh-footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--sh-gold);
    font-weight: 700;
}

.sh-footer-links a:hover::before {
    opacity: 1;
    left: -16px;
}

.sh-footer-links a {
    position: relative;
    padding-left: 0;
}

.sh-footer-links a:hover {
    padding-left: 20px;
}

/* Enhanced warning/alert styles */
.sh-content-highlight[style*="border-left-color: #e15543"] {
    border-left-width: 6px;
}

.sh-content-highlight[style*="border-left-color: #ea4f40"] p strong::before {
    content: '⚠️ ';
    margin-right: 5px;
}

/* Enhanced table badge styling */
.sh-article .pm-badge,
.sh-article .sh-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.sh-article .pm-badge--yes,
.sh-article .sh-badge--yes {
    background: linear-gradient(135deg, #27c870, #29a459);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(41,208,110,0.3);
}

.sh-article .pm-badge--no,
.sh-article .sh-badge--no {
    background: linear-gradient(135deg, #ed543c, #bb3b26);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(225,71,65,0.3);
}

/* Enhanced reading progress */
#readingProgress {
    background: linear-gradient(90deg, var(--sh-gold), var(--sh-gold-light), var(--sh-gold));
    box-shadow: 0 -2px 12px rgba(238,201,62,0.5);
    height: 4px;
}

/* Enhanced mobile menu */
.sh-mobile-nav {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.sh-mobile-link {
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.sh-mobile-link::before {
    content: '▸';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--sh-gold);
}

.sh-mobile-link:hover,
.sh-mobile-link:focus {
    padding-left: 17px;
    color: var(--sh-gold);
    background: rgba(244,198,65,0.1);
}

.sh-mobile-link:hover::before,
.sh-mobile-link:focus::before {
    opacity: 1;
    left: 8px;
}

/* Enhanced accessibility */
.sh-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -2px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Enhanced focus states */
*:focus-visible {
    outline: 2px solid var(--sh-gold);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Enhanced loading states */
img[loading="lazy"]:not(.loaded):not(.loading) {
    opacity: 0;
    transition: opacity 0.6s ease;
}

img[loading="lazy"].loading {
    opacity: 0.5;
    filter: blur(4px);
}

img[loading="lazy"].loaded {
    opacity: 1;
    filter: blur(0);
}

/* Enhanced print styles */
@media print {
    .sh-article-image {
        max-width:100%;
        page-break-inside: avoid;
        break-inside: avoid;
    }
    
    .sh-article h2,
    .sh-article h3 {
        page-break-after: avoid;
        break-after: avoid;
    }
    
    .sh-article p,
    .sh-article li {
        orphans: 3;
        widows: 3;
    }
    
    .sh-article blockquote {
        page-break-inside: avoid;
        break-inside: avoid;
    }
}

/* Enhanced responsive images */
.sh-article-image {
    max-width:100%;
    height: auto;
}

@media (max-width: 768px) {
    .sh-article-image {
        min-height: 250px;
    }
}

/* Enhanced accessibility for screen readers */
.sh-sr-only:focus {
    position: static;
    width: auto;
    height: auto;
    padding: inherit;
    margin: inherit;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

/* Enhanced skip link */
.sh-skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--sh-gold);
    color: var(--sh-primary);
    padding: 9px 14px;
    text-decoration: none;
    font-weight: 700;
    z-index: 10000;
    border-radius: 0 0 5px 0;
}

.sh-skip-link:focus {
    top: 0;
    outline: 3px solid var(--sh-gold);
    outline-offset: 1px;
}

/* Enhanced visual feedback for all interactive elements */
.sh-btn:active,
.sh-nav-link:active,
.sh-faq-question:active,
.sh-mobile-link:active {
    transform: scale(0.97);
}

/* Enhanced table responsive */
@media (max-width: 768px) {
    .sh-article table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .sh-article table thead {
        display: none;
    }
    
    .sh-article table tr {
        display: block;
        margin-bottom: 15px;
        border: 3px solid var(--sh-border);
        border-radius: 9px;
        padding: 10px;
    }
    
    .sh-article table td {
        display: block;
        text-align: right;
        padding: 11px 12px;
        border: none;
        border-bottom: 1px solid var(--sh-border);
    }
    
    .sh-article table td::before {
        content: attr(data-label) ': ';
        float: left;
        font-weight: 700;
        color: var(--sh-gold);
    }
    
    .sh-article table td:last-child {
        border-bottom: none;
    }
}

/* Enhanced loading animation */
@keyframes sh-pulse-slow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.sh-article-image:not(.loaded) {
    animation: sh-pulse-slow 2s ease-in-out infinite;
}

/* Viewport tracking styles */
[data-viewed="true"] {
    animation: sh-fadeInView 0.6s ease forwards;
}

@keyframes sh-fadeInView {
    from {
        opacity: 0.8;
    }
    to {
        opacity: 1;
    }
}

/* Preloading state */
img.preloading {
    opacity: 0.7;
    filter: blur(3px);
}

img.preloading.loaded {
    opacity: 1;
    filter: none;
}

/* Additional visual enhancements */
.sh-article::before,
.sh-article::after {
    transition: opacity 0.3s ease;
}

.sh-article:hover::before,
.sh-article:hover::after {
    opacity: 0.15;
}

/* Enhanced visual details */
.sh-article h2::before {
    animation: sh-glow-pulse 3s ease-in-out infinite, sh-slide-in 0.8s ease-out;
}

@keyframes sh-slide-in {
    from { 
        width: 0; 
        opacity: 0; 
        transform: translateX(-10px);
    }
    to { 
        width: 6px; 
        opacity: 1;
        transform: translateX(0);
    }
}

.sh-article h2:hover::before {
    box-shadow: 0 0 16px var(--sh-shadow-gold);
    width: 8px;
}

.sh-criteria-item {
    position: relative;
}

.sh-criteria-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 65%;
    background: linear-gradient(90deg, transparent, rgba(243,204,72,0.15));
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 13px 0 0 10px;
    box-shadow: -1px 0 10px rgba(242,194,64,0.2);
}

.sh-criteria-item:hover::after {
    width: 5px;
}

.sh-stat-card .sh-stat-number {
    position: relative;
}

.sh-stat-card .sh-stat-number::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--sh-gold), var(--sh-gold-light), var(--sh-gold), transparent);
    border-radius: 3px;
    opacity: 0.7;
    box-shadow: 0 2px 5px rgba(241,201,67,0.4);
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus styles for accessibility */
.sh-btn:focus,
.sh-nav-link:focus,
.sh-faq-question:focus,
.sh-mobile-link:focus {
    outline: 4px solid var(--sh-gold);
    outline-offset: 2px;
    border-radius: 7px;
}

.sh-form-input:focus,
.sh-form-textarea:focus,
.sh-form-select:focus {
    outline: 4px solid var(--sh-gold);
    outline-offset: 1px;
}

/* Print styles */
@media print {
    .sh-ticker,
    .sh-header,
    .sh-footer,
    .sh-hero-actions,
    .sh-social-share,
    .sh-menu-toggle {
        display: none !important;
    }
    
    .sh-article {
        max-width:100%;
        padding: 0;
    }
    
    .sh-article-image {
        page-break-inside: avoid;
        max-width:100%;
    }
    
    a[href^="http"]:after {
        content: " (" attr(href) ")";
    }
    
    .sh-article h2,
    .sh-article h3 {
        page-break-after: avoid;
    }
}

.sh-container {
    max-width:100%;
    margin: 0 auto;
    padding: 0 31px;
    position: relative;
}

.sh-container::before,
.sh-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--sh-gold), transparent);
    opacity: 0.05;
}

.sh-container::before {
    left: 0;
}

.sh-container::after {
    right: 0;
}

@media (min-width: 1400px) {
    .sh-container {
        max-width:100%;
    }
}

/* Scroll Progress */
.sh-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sh-gold), var(--sh-gold-light));
    z-index: 9999;
    transition: width 0.2s ease;
    box-shadow: 0 2px 8px var(--sh-shadow-gold);
}

/* Reading Progress */
#readingProgress {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sh-gold), var(--sh-gold-light));
    z-index: 9998;
    transition: width 0.3s ease;
    box-shadow: 0 -2px 8px var(--sh-shadow-gold);
}

/* Price Ticker */
.sh-ticker {
    background: linear-gradient(135deg, #0f0f0f 0%, #22141b 50%, #0f0f0f 100%);
    color: #ffffff;
    padding: 16px 0;
    border-bottom: 3px solid var(--sh-gold);
    overflow: hidden;
    position: relative;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.sh-ticker::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--sh-gold), var(--sh-gold-light), var(--sh-gold), transparent);
    animation: sh-shimmer 4s infinite;
}

@keyframes sh-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.sh-ticker-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    flex-wrap: wrap;
    padding: 0 27px;
}

.sh-ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    padding: 5px 16px;
    border-radius: 5px;
    transition: all 0.3s;
    position: relative;
}

.sh-ticker-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(245,204,58,0.12);
    border-radius: 7px;
    opacity: 0;
    transition: opacity 0.3s;
}

.sh-ticker-item:hover::before {
    opacity: 1;
}

.sh-ticker-item:hover {
    transform: translateY(-2px);
}

.sh-ticker-metal {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 700;
}

.sh-ticker-price {
    font-size: 17px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--sh-gold), var(--sh-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 24px rgba(245,200,61,0.6);
    position: relative;
}

.sh-ticker-change {
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 3px;
}

.sh-ticker-change svg {
    width: 14px;
    height: 11px;
    flex-shrink: 0;
}

.sh-ticker-change--up {
    color: var(--sh-success);
}

.sh-ticker-change--down {
    color: var(--sh-danger);
}

.sh-ticker-separator {
    width: 2px;
    height: 22px;
    background: rgba(255, 255, 255, 0.25);
}

.sh-ticker-update {
    text-align: center;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.sh-ticker-live {
    width: 6px;
    height: 10px;
    background: var(--sh-success);
    border-radius: 50%;
    display: inline-block;
    animation: sh-pulse 2s infinite;
}

@keyframes sh-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Header */
.sh-header {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.96) 100%);
    border-bottom: 3px solid var(--sh-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(22px) saturate(190%);
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(238,206,70,0.05);
    position: relative;
    transition: box-shadow 0.3s ease;
}

.sh-header.scrolled {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(244,203,73,0.1);
}

.sh-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--sh-gold), var(--sh-gold-light), var(--sh-gold), transparent);
}

.sh-header-container {
    max-width:100%;
    margin: 0 auto;
    padding: 20px 21px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sh-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--sh-primary);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.7px;
}

.sh-logo-icon {
    width: 49px;
    height: 48px;
    background: linear-gradient(135deg, var(--sh-gold) 0%, var(--sh-gold-light) 50%, var(--sh-gold-dark) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sh-primary);
    font-size: 24px;
    font-weight: 900;
    box-shadow: 0 6px 20px var(--sh-shadow-gold), 0 2px 8px rgba(243,193,64,0.3);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(242,199,72,0.3);
}

.sh-logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    animation: sh-rotate 3.5s infinite;
}

@keyframes sh-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.sh-logo-text {
    font-weight: 700;
}

.sh-nav {
    display: flex;
    gap: 26px;
    align-items: center;
}

.sh-nav-link {
    color: var(--sh-text);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    padding: 10px 17px;
    border-radius: 12px;
    letter-spacing: 0.2px;
}

.sh-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245,196,67,0.12), rgba(234,187,27,0.08));
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.35s;
    z-index: -1;
}

.sh-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 75%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--sh-gold), transparent);
    border-radius: 1px;
    transition: transform 0.35s;
}

.sh-nav-link:hover {
    color: var(--sh-gold);
    transform: translateY(-2px);
}

.sh-nav-link:hover::before {
    opacity: 1;
}

.sh-nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.sh-nav-link--active {
    color: var(--sh-gold);
    background: linear-gradient(135deg, rgba(245,192,69,0.18), rgba(232,184,30,0.12));
    box-shadow: 0 3px 12px rgba(245,205,68,0.25);
}

.sh-nav-link--active::after {
    transform: translateX(-50%) scaleX(1);
    background: linear-gradient(90deg, transparent, var(--sh-gold), var(--sh-gold-light), var(--sh-gold), transparent);
    height: 4px;
}

.sh-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
}

.sh-menu-toggle.active .sh-menu-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.sh-menu-toggle.active .sh-menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.sh-menu-line {
    width: 26px;
    height: 3px;
    background: var(--sh-primary);
    transition: all 0.3s ease;
    border-radius: 1px;
}

.sh-mobile-nav {
    display: none;
    flex-direction: column;
    padding: 25px 25px;
    background: var(--sh-bg);
    border-top: 2px solid var(--sh-border);
}

.sh-mobile-nav.active {
    display: flex;
}

.sh-mobile-link {
    padding: 17px 0;
    color: var(--sh-text);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--sh-border);
    font-size: 15px;
}

.sh-mobile-link:last-child {
    border-bottom: none;
}

/* Hero Section */
.sh-hero {
    background: linear-gradient(135deg, #0f0f0f 0%, #111018 30%, #0f0f0f 50%, #102221 70%, #0f0f0f 100%);
    color: #ffffff;
    padding: 140px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.sh-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 35%, rgba(245,195,60,0.18) 0%, transparent 50%),
        radial-gradient(circle at 75% 65%, rgba(237,187,32,0.12) 0%, transparent 50%);
    animation: sh-pulse 4.5s ease-in-out infinite;
}

.sh-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 110px,
        rgba(245,192,71,0.035) 110px,
        rgba(240,198,62,0.035) 220px
    );
    animation: sh-drift 22s linear infinite;
}

@keyframes sh-drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.sh-hero-content {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 23px;
    animation: sh-fadeInUp 1s ease-out;
}

@keyframes sh-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sh-hero-badge {
    display: inline-block;
    padding: 13px 24px;
    background: linear-gradient(135deg, var(--sh-gold), var(--sh-gold-light), var(--sh-gold));
    color: var(--sh-primary);
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 7px;
    margin-bottom: 34px;
    box-shadow: 0 7px 27px var(--sh-shadow-gold), 0 4px 12px rgba(239,205,70,0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: sh-float 3s ease-in-out infinite, sh-pulse-glow 2s ease-in-out infinite;
    border: 2px solid rgba(18,27,33,0.1);
    position: relative;
    overflow: hidden;
}

.sh-hero-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: sh-shine 3s infinite;
}

@keyframes sh-shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes sh-pulse-glow {
    0%, 100% { box-shadow: 0 8px 24px var(--sh-shadow-gold), 0 4px 12px rgba(243,198,72,0.4); }
    50% { box-shadow: 0 12px 32px var(--sh-shadow-gold), 0 6px 16px rgba(242,204,59,0.6); }
}

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

.sh-hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 27px;
    background: linear-gradient(135deg, #ffffff 0%, var(--sh-gold-light) 40%, var(--sh-gold) 60%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 50px rgba(241,194,67,0.6);
    animation: sh-gradient-shift 5s ease infinite;
    letter-spacing: -2px;
    position: relative;
}

@keyframes sh-gradient-shift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.sh-hero-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--sh-gold), var(--sh-gold-light), var(--sh-gold), transparent);
    border-radius: 1px;
    opacity: 0.6;
}

.sh-hero-subtitle {
    font-size: 21px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 39px;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.3px;
    position: relative;
    padding: 0 20px;
}

.sh-hero-subtitle::before,
.sh-hero-subtitle::after {
    content: '✦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--sh-gold);
    font-size: 16px;
    opacity: 0.6;
    animation: sh-sparkle 2s ease-in-out infinite;
}

.sh-hero-subtitle::before {
    left: 0;
}

.sh-hero-subtitle::after {
    right: 0;
}

@keyframes sh-sparkle {
    0%, 100% { opacity: 0.4; transform: translateY(-50%) scale(1); }
    50% { opacity: 0.8; transform: translateY(-50%) scale(1.2); }
}

.sh-hero-actions {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.sh-btn {
    padding: 15px 35px;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
}

.sh-btn-primary {
    background: linear-gradient(135deg, var(--sh-gold), var(--sh-gold-light));
    color: var(--sh-primary);
    box-shadow: 0 8px 24px var(--sh-shadow-gold), 0 4px 12px rgba(245,197,61,0.3);
    position: relative;
    overflow: hidden;
}

.sh-btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.sh-btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.sh-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px var(--sh-shadow-gold), 0 6px 16px rgba(245,194,60,0.4);
}

.sh-btn-primary span {
    position: relative;
    z-index: 1;
}

.sh-btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 3px solid var(--sh-gold);
    backdrop-filter: blur(11px);
    box-shadow: 0 5px 17px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.sh-btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(240,203,70,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.sh-btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.sh-btn-secondary:hover {
    background: rgba(239,194,65,0.25);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(238,200,73,0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: var(--sh-gold-light);
}

.sh-btn-secondary span {
    position: relative;
    z-index: 1;
}

/* Rating Section */
.sh-rating-section {
    padding: 33px 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    border-bottom: 2px solid var(--sh-border);
}

.sh-rating-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 21px;
    flex-wrap: wrap;
    padding: 24px;
    background: var(--sh-bg);
    border-radius: 11px;
    box-shadow: 0 7px 23px var(--sh-shadow), 0 2px 8px rgba(244,196,72,0.1);
    max-width: 650px;
    margin: 0 auto;
    border: 3px solid rgba(243,203,59,0.15);
    position: relative;
    overflow: hidden;
}

.sh-rating-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(242,193,67,0.1), transparent);
    transition: left 0.6s ease;
}

.sh-rating-box:hover::before {
    left: 100%;
}

.sh-rating-label {
    font-weight: 700;
    color: var(--sh-text);
    font-size: 15px;
}

.sh-stars {
    display: flex;
    gap: 3px;
}

.sh-star {
    font-size: 26px;
    color: var(--sh-border);
    transition: all 0.3s ease;
    display: inline-block;
    margin: 0 1px;
}

.sh-star--filled {
    color: var(--sh-gold);
    text-shadow: 0 0 12px var(--sh-shadow-gold), 0 0 20px rgba(241,199,58,0.4);
    animation: sh-star-twinkle 2s ease-in-out infinite;
    transform: scale(1.1);
}

@keyframes sh-star-twinkle {
    0%, 100% { 
        opacity: 1;
        transform: scale(1.1);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.15);
    }
}

.sh-rating-number {
    font-size: 26px;
    font-weight: 900;
    color: var(--sh-primary);
    background: linear-gradient(135deg, var(--sh-primary), var(--sh-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 8px rgba(245,206,66,0.2);
    letter-spacing: -0.4px;
}

.sh-rating-reviews {
    font-size: 14px;
    color: var(--sh-text-light);
    font-weight: 600;
}

/* Main Content */
.sh-main {
    padding: 69px 0;
    position: relative;
}

.sh-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sh-gold), transparent);
    opacity: 0.3;
}

.sh-article {
    max-width: 840px;
    margin: 0 auto;
    position: relative;
    padding: 0 6px;
    background: linear-gradient(180deg, transparent, rgba(245,196,61,0.01), transparent);
    border-radius: 19px;
}

.sh-article::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--sh-gold), transparent 20%, transparent 80%, var(--sh-gold));
    opacity: 0.12;
    border-radius: 2px;
    box-shadow: 3px 0 7px rgba(245,202,69,0.1);
}

.sh-article::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--sh-gold), transparent 20%, transparent 80%, var(--sh-gold));
    opacity: 0.12;
    border-radius: 4px;
    box-shadow: -1px 0 11px rgba(245,193,60,0.1);
}

.sh-intro {
    margin-bottom: 52px;
    padding: 33px;
    background: linear-gradient(135deg, rgba(245,199,68,0.1), rgba(238,190,40,0.06));
    border-left: 6px solid var(--sh-gold);
    border-radius: 13px;
    box-shadow: 0 5px 21px rgba(245,196,63,0.15), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.sh-intro::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(240,192,62,0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.sh-lead {
    font-size: 20px;
    line-height: 1.7;
    color: var(--sh-text);
    font-weight: 500;
    margin-bottom: 22px;
}

.sh-article h2 {
    font-size: 33px;
    font-weight: 900;
    color: var(--sh-primary);
    margin: 59px 0 33px;
    line-height: 1.25;
    padding-bottom: 16px;
    border-bottom: 6px solid var(--sh-gold);
    position: relative;
    padding-left: 24px;
    letter-spacing: -0.4px;
    text-shadow: 0 3px 3px rgba(0, 0, 0, 0.05);
}

.sh-article h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, var(--sh-gold), var(--sh-gold-light), var(--sh-gold));
    border-radius: 5px;
    box-shadow: 0 0 10px var(--sh-shadow-gold);
    animation: sh-glow-pulse 3s ease-in-out infinite;
}

@keyframes sh-glow-pulse {
    0%, 100% { 
        box-shadow: 0 0 12px var(--sh-shadow-gold);
        opacity: 1;
    }
    50% { 
        box-shadow: 0 0 20px var(--sh-shadow-gold);
        opacity: 0.8;
    }
}

.sh-article h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 160px;
    height: 5px;
    background: linear-gradient(90deg, var(--sh-gold), var(--sh-gold-light), transparent);
    border-radius: 0 0 5px 5px;
    box-shadow: 0 1px 11px rgba(238,205,64,0.3);
    transition: width 0.4s ease;
}

.sh-article h2:hover::after {
    width: 150px;
}

.sh-article h3 {
    font-size: 27px;
    font-weight: 800;
    color: var(--sh-primary);
    margin: 50px 0 23px;
    line-height: 1.35;
    padding-left: 27px;
    border-left: 7px solid var(--sh-gold);
    padding-top: 10px;
    padding-bottom: 15px;
    background: linear-gradient(90deg, rgba(237,195,72,0.08), rgba(231,186,28,0.03), transparent);
    border-radius: 0 10px 7px 0;
    position: relative;
    letter-spacing: -0.4px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(243,192,67,0.1);
}

.sh-article h3:hover {
    background: linear-gradient(90deg, rgba(242,198,58,0.12), rgba(228,189,35,0.05), transparent);
    border-left-width: 7px;
    padding-left: 26px;
    box-shadow: 0 5px 12px rgba(245,195,61,0.15);
}

.sh-article h3::before {
    content: '▶';
    position: absolute;
    left: 2px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--sh-gold);
    opacity: 0.7;
    text-shadow: 0 0 8px rgba(245,201,69,0.5);
    transition: all 0.3s ease;
}

.sh-article h3:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(2px);
    color: var(--sh-gold-light);
}

.sh-article p {
    margin-bottom: 23px;
    line-height: 1.85;
    color: var(--sh-text);
    font-size: 16px;
    text-align: justify;
    hyphens: auto;
    word-spacing: 0.05em;
}

.sh-article p:first-of-type {
    font-size: 20px;
    line-height: 2;
    color: var(--sh-primary);
    font-weight: 600;
    margin-bottom: 32px;
    position: relative;
    padding-left: 21px;
    border-left: 5px solid var(--sh-gold);
    background: linear-gradient(90deg, rgba(245,207,60,0.05), rgba(232,183,37,0.02), transparent);
    padding-top: 11px;
    padding-bottom: 15px;
    padding-right: 13px;
    border-radius: 0 8px 13px 0;
    box-shadow: 0 2px 5px rgba(245,204,71,0.1), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.sh-article ul, .sh-article ol {
    margin: 27px 0;
    padding-left: 39px;
    position: relative;
}

.sh-article ul::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--sh-gold), var(--sh-gold-light), var(--sh-gold));
    border-radius: 2px;
    opacity: 0.35;
    box-shadow: 3px 0 8px rgba(245,201,70,0.2);
    transition: opacity 0.3s ease;
}

.sh-article ul:hover::before {
    opacity: 0.5;
}

.sh-article li {
    margin-bottom: 13px;
    line-height: 1.8;
    color: var(--sh-text);
    position: relative;
    padding-left: 14px;
    transition: all 0.3s ease;
}

.sh-article li::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background: var(--sh-gold);
    border-radius: 50%;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.sh-article li:hover {
    padding-left: 14px;
    color: var(--sh-primary);
}

.sh-article li:hover::before {
    opacity: 1;
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(245,207,62,0.5);
}

.sh-article ul li::marker {
    color: var(--sh-gold);
    font-weight: 800;
    font-size: 1.2em;
    text-shadow: 0 0 4px rgba(240,197,73,0.3);
}

.sh-article ol li::marker {
    color: var(--sh-gold);
    font-weight: 800;
    font-size: 1.1em;
    text-shadow: 0 0 4px rgba(239,203,65,0.3);
}

.sh-article strong {
    color: var(--sh-primary);
    font-weight: 800;
    background: linear-gradient(135deg, rgba(238,194,72,0.18), rgba(224,185,33,0.12));
    padding: 4px 7px;
    border-radius: 7px;
    display: inline-block;
    position: relative;
    border-left: 3px solid var(--sh-gold);
    box-shadow: 0 2px 6px rgba(244,206,67,0.15);
    transition: all 0.3s ease;
}

.sh-article strong:hover {
    background: linear-gradient(135deg, rgba(243,197,59,0.25), rgba(229,188,35,0.18));
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(241,193,61,0.25);
}

.sh-image-wrapper {
    margin: 43px 0;
    border-radius: 21px;
    overflow: hidden;
    box-shadow: 0 15px 46px rgba(0, 0, 0, 0.18), 0 6px 16px rgba(245,206,60,0.12), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 3px solid rgba(245,203,71,0.25);
    padding: 3px;
}

.sh-image-wrapper figcaption {
    padding: 23px 29px;
    background: linear-gradient(135deg, rgba(245,193,63,0.1), rgba(238,184,39,0.05));
    border-top: 4px solid rgba(245,205,62,0.25);
    margin-top: 0;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.65;
    border-radius: 0 0 16px 13px;
    position: relative;
    color: var(--sh-text);
}

.sh-image-wrapper figcaption::before {
    content: '📷';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    opacity: 0.6;
}

.sh-image-wrapper figcaption {
    padding-left: 51px;
}

.sh-image-wrapper[role="img"] {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.sh-image-wrapper[role="img"]:hover {
    transform: scale(1.01);
}

.sh-image-wrapper[role="img"]:active {
    transform: scale(0.99);
}

/* Additional visual polish */
.sh-article p:first-of-type::first-letter {
    font-size: 3.5em;
    float: left;
    line-height: 0.8;
    margin: 0.1em 0.1em 0.1em 0;
    color: var(--sh-gold);
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(245,196,73,0.3);
}

.sh-article p:first-of-type::first-line {
    font-weight: 600;
    letter-spacing: 0.4px;
    color: var(--sh-primary);
}

.sh-article p:first-of-type {
    position: relative;
    padding-top: 8px;
}

.sh-article p:first-of-type::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--sh-gold), transparent);
    border-radius: 1px;
}

/* Enhanced scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 7px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--sh-gold), var(--sh-gold-light));
    border-radius: 5px;
    border: 3px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--sh-gold-light), var(--sh-gold));
    box-shadow: 0 0 8px rgba(240,202,65,0.4);
}

/* Selection styles */
::selection {
    background: var(--sh-gold);
    color: var(--sh-primary);
    text-shadow: none;
}

::-moz-selection {
    background: var(--sh-gold);
    color: var(--sh-primary);
    text-shadow: none;
}

/* Focus visible for better accessibility */
*:focus-visible {
    outline: 2px solid var(--sh-gold);
    outline-offset: 3px;
    border-radius: 3px;
}

/* Loading skeleton for images */
.sh-article-image:not(.loaded) {
    background: linear-gradient(90deg, #f0f0f0 25%, #d7dfde 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: sh-skeleton-loading 1.5s ease-in-out infinite;
}

@keyframes sh-skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.sh-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(239,192,72,0.05) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.sh-article-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease, filter 0.5s ease;
    opacity: 0;
    min-height: 400px;
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
    object-fit: cover;
    border-radius: 15px;
    filter: blur(4px) brightness(0.9);
}

.sh-article-image.loading {
    filter: blur(6px) brightness(0.9);
}

.sh-article-image.loaded {
    opacity: 1;
    filter: blur(0) brightness(1);
}

.sh-article-image[loading="lazy"] {
    opacity: 0;
    animation: sh-fadeIn 0.8s ease forwards;
}

@keyframes sh-fadeIn {
    from {
        opacity: 0;
        filter: blur(5px) brightness(0.9);
    }
    to {
        opacity: 1;
        filter: blur(0) brightness(1);
    }
}

.sh-image-wrapper:hover .sh-article-image {
    transform: scale(1.05);
}

.sh-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--sh-gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sh-image-wrapper:hover::after {
    opacity: 1;
}

/* Stats Counter Component */
.sh-stats-section {
    padding: 72px 0;
    background: linear-gradient(135deg, #141519 0%, #0f0f0f 50%, #131322 100%);
    margin: 69px 0;
    border-radius: 23px;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(238,199,64,0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.sh-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(243,202,66,0.18) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(229,177,27,0.12) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 100px, rgba(241,198,69,0.02) 100px, rgba(245,205,61,0.02) 200px);
    animation: sh-background-shift 20s linear infinite;
}

@keyframes sh-background-shift {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

.sh-stats-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--sh-gold), var(--sh-gold-light), var(--sh-gold), transparent);
    animation: sh-shimmer 3s infinite;
}

.sh-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 34px;
    position: relative;
    z-index: 2;
    padding: 23px 0;
}

.sh-stats-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(245,195,68,0.3), transparent);
    border-radius: 1px;
}

.sh-stats-grid::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(245,201,71,0.3), transparent);
    border-radius: 1px;
}

.sh-stat-card {
    text-align: center;
    padding: 43px 33px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    backdrop-filter: blur(17px);
    border: 3px solid rgba(245,198,70,0.25);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.sh-stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245,201,65,0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    animation: sh-rotate 10s linear infinite;
}

.sh-stat-card:hover::before {
    opacity: 1;
}

.sh-stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 19px;
    padding: 4px;
    background: linear-gradient(135deg, var(--sh-gold), var(--sh-gold-light), var(--sh-gold));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.sh-stat-card:hover::after {
    opacity: 0.3;
}

.sh-stat-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--sh-gold);
    box-shadow: 0 20px 48px rgba(240,207,72,0.5), 0 0 40px rgba(239,197,64,0.3), inset 0 2px 4px rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.12);
    border-width: 5px;
}

.sh-stat-number {
    font-size: 53px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--sh-gold), var(--sh-gold-light), var(--sh-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    display: block;
    text-shadow: 0 0 30px rgba(244,200,66,0.3);
    letter-spacing: -1px;
    line-height: 1.1;
}

.sh-stat-label {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    margin-top: 3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.sh-stat-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: rgba(241,203,61,0.5);
    border-radius: 1px;
}

/* Phone CTA Component */
.sh-phone-cta {
    background: linear-gradient(135deg, var(--sh-gold), var(--sh-gold-light), var(--sh-gold));
    padding: 54px 43px;
    border-radius: 23px;
    margin: 57px 0;
    text-align: center;
    box-shadow: 0 12px 48px var(--sh-shadow-gold), 0 6px 20px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.25);
}

.sh-phone-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 60px,
        rgba(255, 255, 255, 0.12) 60px,
        rgba(255, 255, 255, 0.12) 120px
    );
    animation: sh-rotate 25s linear infinite;
    opacity: 0.6;
}

.sh-phone-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.sh-phone-cta-content {
    position: relative;
    z-index: 2;
}

.sh-phone-cta-content::before {
    content: '📞';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 48px;
    opacity: 0.15;
    animation: sh-phone-bounce 2s ease-in-out infinite;
}

@keyframes sh-phone-bounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(-5deg); }
    75% { transform: translateY(-5px) rotate(5deg); }
}

.sh-phone-cta-title {
    font-size: 30px;
    font-weight: 900;
    color: var(--sh-primary);
    margin-bottom: 19px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.5px;
    position: relative;
}

.sh-phone-cta-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: rgba(30,32,32,0.2);
    border-radius: 3px;
}

.sh-phone-cta-number {
    font-size: 39px;
    font-weight: 900;
    color: var(--sh-primary);
    text-decoration: none;
    display: inline-block;
    margin: 16px 0;
    padding: 19px 32px;
    background: rgba(21,22,24,0.12);
    border-radius: 9px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(20,28,27,0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.sh-phone-cta-number::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(18,25,26,0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.sh-phone-cta-number:hover::before {
    width: 300px;
    height: 300px;
}

.sh-phone-cta-number:hover {
    background: rgba(25,31,18,0.25);
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: rgba(23,28,21,0.4);
}

.sh-phone-cta-number span {
    position: relative;
    z-index: 1;
}

.sh-phone-cta-text {
    font-size: 17px;
    color: var(--sh-primary);
    font-weight: 700;
    margin-top: 13px;
    opacity: 0.9;
    letter-spacing: 0.3px;
}

.sh-phone-cta-text:first-of-type {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 6px;
}

/* Criteria Box Component */
.sh-criteria-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    border: 4px solid var(--sh-gold);
    border-radius: 20px;
    padding: 41px;
    margin: 58px 0;
    box-shadow: 0 13px 43px var(--sh-shadow), 0 6px 16px rgba(241,192,68,0.2), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.sh-criteria-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, transparent, var(--sh-gold), var(--sh-gold-light), var(--sh-gold), transparent);
    box-shadow: 0 2px 8px rgba(245,205,63,0.4);
}

.sh-criteria-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(245,195,71,0.3), transparent);
}

.sh-criteria-header {
    display: flex;
    align-items: center;
    gap: 23px;
    margin-bottom: 33px;
    padding-bottom: 22px;
    border-bottom: 5px solid var(--sh-gold);
    position: relative;
}

.sh-criteria-header::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 160px;
    height: 4px;
    background: linear-gradient(90deg, var(--sh-gold), var(--sh-gold-light), transparent);
    border-radius: 0 0 2px 4px;
}

.sh-criteria-icon {
    width: 61px;
    height: 60px;
    background: linear-gradient(135deg, var(--sh-gold), var(--sh-gold-light), var(--sh-gold));
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px var(--sh-shadow-gold), 0 4px 12px rgba(245,201,62,0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(32,24,25,0.1);
    position: relative;
    animation: sh-icon-float 3s ease-in-out infinite;
}

@keyframes sh-icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.sh-criteria-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--sh-gold), var(--sh-gold-light));
    border-radius: 13px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(11px);
}

.sh-criteria-icon svg {
    width: 31px;
    height: 30px;
    color: var(--sh-primary);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 1;
}

.sh-criteria-title {
    font-size: 30px;
    font-weight: 900;
    color: var(--sh-primary);
    margin: 0;
    letter-spacing: -0.6px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    position: relative;
    padding-bottom: 5px;
}

.sh-criteria-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--sh-gold), transparent);
    border-radius: 2px;
}

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

.sh-criteria-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 26px;
    margin-bottom: 17px;
    background: var(--sh-bg);
    border-radius: 17px;
    border-left: 6px solid var(--sh-gold);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sh-criteria-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--sh-gold), var(--sh-gold-light));
    border-radius: 0 0 0 11px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sh-criteria-item:hover {
    transform: translateX(8px) translateY(-2px);
    box-shadow: 0 8px 24px var(--sh-shadow), 0 4px 12px rgba(239,207,59,0.2);
    background: linear-gradient(135deg, rgba(238,197,67,0.05), rgba(224,189,27,0.02));
}

.sh-criteria-item:hover::before {
    opacity: 1;
}

.sh-criteria-check {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--sh-gold), var(--sh-gold-light), var(--sh-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3px;
    box-shadow: 0 3px 15px var(--sh-shadow-gold), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(24,26,21,0.1);
    position: relative;
    animation: sh-check-pulse 2s ease-in-out infinite;
}

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

.sh-criteria-check svg {
    width: 16px;
    height: 16px;
    color: var(--sh-primary);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    animation: sh-check-bounce 0.6s ease;
}

@keyframes sh-check-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.sh-criteria-text {
    flex: 1;
}

.sh-criteria-text strong {
    font-size: 19px;
    color: var(--sh-primary);
    display: block;
    margin-bottom: 13px;
    font-weight: 900;
    letter-spacing: -0.3px;
    position: relative;
    padding-left: 6px;
}

.sh-criteria-text strong::before {
    content: '▸';
    position: absolute;
    left: -4px;
    color: var(--sh-gold);
    font-size: 14px;
    opacity: 0.7;
}

.sh-criteria-text p {
    margin: 0;
    color: var(--sh-text);
    line-height: 1.75;
    font-size: 15px;
    text-align: justify;
}

/* FAQ Accordion */
.sh-faq-section {
    margin: 90px 0;
    padding: 69px 43px;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    border-radius: 21px;
    box-shadow: 0 6px 35px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(245,194,71,0.1);
    position: relative;
}

.sh-faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--sh-gold), var(--sh-gold-light), var(--sh-gold));
    border-radius: 19px 23px 0 0;
}

.sh-faq-header {
    text-align: center;
    margin-bottom: 53px;
    position: relative;
    padding-bottom: 22px;
}

.sh-faq-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--sh-gold), var(--sh-gold-light), var(--sh-gold), transparent);
    border-radius: 1px;
    box-shadow: 0 3px 7px rgba(245,200,62,0.3);
}

.sh-faq-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--sh-primary);
    margin-bottom: 21px;
    letter-spacing: -1px;
    text-shadow: 0 3px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    padding-bottom: 13px;
}

.sh-faq-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--sh-gold), var(--sh-gold-light), var(--sh-gold), transparent);
    border-radius: 3px;
}

.sh-faq-subtitle {
    font-size: 20px;
    color: var(--sh-text-light);
    font-weight: 600;
    margin-top: 6px;
    letter-spacing: 0.3px;
}

.sh-faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.sh-faq-item {
    background: var(--sh-bg);
    border: 2px solid var(--sh-border);
    border-radius: 16px;
    margin-bottom: 17px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.sh-faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--sh-gold), var(--sh-gold-light));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sh-faq-item:hover {
    border-color: var(--sh-gold);
    box-shadow: 0 8px 24px var(--sh-shadow), 0 4px 12px rgba(245,197,65,0.15);
    transform: translateX(4px);
}

.sh-faq-item:hover::before {
    opacity: 1;
}

.sh-faq-item.active {
    border-color: var(--sh-gold);
    box-shadow: 0 10px 32px var(--sh-shadow-gold), 0 4px 16px rgba(245,203,73,0.2);
    background: linear-gradient(135deg, rgba(245,193,64,0.05), rgba(236,185,41,0.02));
}

.sh-faq-item.active::before {
    opacity: 1;
}

.sh-faq-question {
    padding: 24px 35px;
    font-size: 19px;
    font-weight: 800;
    color: var(--sh-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    letter-spacing: -0.1px;
    position: relative;
}

.sh-faq-question:hover {
    color: var(--sh-gold);
    background: linear-gradient(90deg, rgba(240,206,59,0.05), transparent);
    padding-left: 38px;
}

.sh-faq-question:hover::before {
    content: '▶';
    position: absolute;
    left: 8px;
    font-size: 12px;
    color: var(--sh-gold);
    opacity: 0.6;
}

.sh-faq-question::after {
    content: '+';
    font-size: 32px;
    font-weight: 900;
    color: var(--sh-gold);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239,196,67,0.1);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(238,202,58,0.2);
}

.sh-faq-item.active .sh-faq-question::after {
    transform: rotate(45deg);
    background: rgba(237,193,66,0.2);
    box-shadow: 0 4px 12px rgba(244,199,61,0.3);
}

.sh-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease;
    padding: 0 35px;
    background: linear-gradient(180deg, rgba(243,205,69,0.02), transparent);
    border-radius: 0 0 13px 10px;
}

.sh-faq-item.active .sh-faq-answer {
    max-height: 2000px;
    padding: 0 32px 25px;
    border-top: 3px solid rgba(242,196,60,0.1);
    margin-top: 3px;
}

.sh-faq-answer p {
    color: var(--sh-text);
    line-height: 1.85;
    margin-bottom: 17px;
    font-size: 17px;
    text-align: justify;
}

.sh-faq-answer p:first-child {
    margin-top: 6px;
}

.sh-faq-answer p:last-child {
    margin-bottom: 0;
}

/* Footer */
.sh-footer {
    background: linear-gradient(135deg, #192016 0%, #0f0f0f 100%);
    color: #ffffff;
    padding: 73px 0 36px;
    margin-top: 90px;
    position: relative;
    overflow: hidden;
}

.sh-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--sh-gold), var(--sh-gold-light), var(--sh-gold), transparent);
}

.sh-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(241,202,63,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(235,177,40,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.sh-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 51px;
    margin-bottom: 49px;
    position: relative;
    z-index: 2;
}

.sh-footer-col h4 {
    font-size: 19px;
    font-weight: 900;
    margin-bottom: 27px;
    color: var(--sh-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 9px;
}

.sh-footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--sh-gold), transparent);
    border-radius: 3px;
}

.sh-footer-logo {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 22px;
    padding-bottom: 23px;
    border-bottom: 3px solid rgba(255, 255, 255, 0.12);
    position: relative;
    padding-left: 3px;
}

.sh-footer-logo::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--sh-gold), var(--sh-gold-light), transparent);
    border-radius: 0 0 4px 2px;
    box-shadow: 0 3px 8px rgba(245,205,70,0.3);
}

.sh-footer-logo .sh-logo-icon {
    box-shadow: 0 4px 16px rgba(245,195,65,0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(245,192,64,0.4);
}

.sh-footer-logo .sh-logo-text {
    color: var(--sh-gold);
    text-shadow: 0 2px 8px rgba(245,198,72,0.3);
    font-size: 24px;
}

.sh-footer-tagline {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-size: 15px;
    font-weight: 500;
    margin-top: 5px;
    padding-left: 5px;
    border-left: 1px solid rgba(240,195,67,0.3);
    padding-left: 15px;
}

.sh-footer-links {
    list-style: none;
    padding: 0;
}

.sh-footer-links li {
    margin-bottom: 13px;
}

.sh-footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.sh-footer-links a::before {
    content: '→';
    position: absolute;
    left: -16px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--sh-gold);
    font-weight: 700;
}

.sh-footer-links a:hover {
    color: var(--sh-gold);
    padding-left: 23px;
    transform: translateX(4px);
}

.sh-footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

.sh-footer-bottom {
    text-align: center;
    padding-top: 33px;
    border-top: 3px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    position: relative;
    z-index: 2;
}

.sh-footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--sh-gold), var(--sh-gold-light), var(--sh-gold), transparent);
    box-shadow: 0 2px 8px rgba(244,204,69,0.4);
    border-radius: 0 0 3px 2px;
}

.sh-footer-bottom p {
    position: relative;
    padding: 0 22px;
}

.sh-footer-bottom p::before,
.sh-footer-bottom p::after {
    content: '●';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--sh-gold);
    font-size: 8px;
    opacity: 0.5;
}

.sh-footer-bottom p::before {
    left: 0;
}

.sh-footer-bottom p::after {
    right: 0;
}

/* Additional Detail Elements */
.sh-breadcrumb {
    padding: 27px 0;
    font-size: 15px;
    color: var(--sh-text-light);
    border-bottom: 2px solid var(--sh-border);
    margin-bottom: 39px;
    background: linear-gradient(180deg, rgba(243,194,60,0.02), transparent);
    padding-left: 8px;
    padding-right: 5px;
    border-radius: 0 0 10px 7px;
    position: relative;
}

.sh-breadcrumb::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--sh-gold), transparent);
    border-radius: 0 0 3px 2px;
}

.sh-breadcrumb a {
    color: var(--sh-gold);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    padding: 3px 10px;
    border-radius: 5px;
    display: inline-block;
    position: relative;
}

.sh-breadcrumb a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 8px;
    right: 8px;
    height: 2px;
    background: var(--sh-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.sh-breadcrumb a:hover {
    color: var(--sh-gold-dark);
    background: rgba(242,201,68,0.1);
}

.sh-breadcrumb a:hover::after {
    transform: scaleX(1);
}

.sh-article-meta {
    display: flex;
    gap: 25px;
    padding: 26px 27px;
    border-bottom: 4px solid var(--sh-border);
    margin-bottom: 37px;
    flex-wrap: wrap;
    font-size: 12px;
    color: var(--sh-text-light);
    background: linear-gradient(135deg, rgba(241,207,71,0.03), rgba(235,182,32,0.02));
    border-radius: 15px 12px 0 0;
    border-top: 1px solid rgba(245,204,70,0.15);
    position: relative;
}

.sh-article-meta::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, var(--sh-gold), transparent);
    border-radius: 0 0 3px 1px;
}

.sh-meta-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 8px 11px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    border: 1px solid rgba(245,200,73,0.2);
    transition: all 0.3s ease;
    font-weight: 600;
}

.sh-meta-item:hover {
    background: rgba(245,206,64,0.1);
    border-color: var(--sh-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245,197,72,0.15);
}

.sh-meta-item svg {
    width: 18px;
    height: 18px;
    color: var(--sh-gold);
    filter: drop-shadow(0 1px 2px rgba(245,203,59,0.3));
}

.sh-reading-time {
    background: linear-gradient(135deg, rgba(245,193,67,0.12), rgba(227,185,27,0.06));
    padding: 13px 27px;
    border-radius: 11px;
    border-left: 4px solid var(--sh-gold);
    margin: 31px 0;
    font-size: 15px;
    color: var(--sh-text);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(239,206,66,0.15), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 11px;
    position: relative;
    overflow: hidden;
}

.sh-reading-time::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(237,203,69,0.2), transparent);
    transition: left 0.6s ease;
}

.sh-reading-time:hover::before {
    left: 100%;
}

.sh-content-highlight {
    background: linear-gradient(135deg, rgba(244,193,60,0.14), rgba(230,184,37,0.1));
    padding: 29px 34px;
    border-radius: 17px;
    border-left: 6px solid var(--sh-gold);
    margin: 33px 0;
    box-shadow: 0 7px 19px rgba(242,206,71,0.2), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.sh-content-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(245,202,70,0.18) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(25%, -25%);
    animation: sh-pulse 4s ease-in-out infinite;
}

.sh-content-highlight p {
    position: relative;
    z-index: 1;
    margin: 0;
}

.sh-content-highlight p strong {
    display: inline;
    background: transparent;
    padding: 0;
    border-radius: 0;
    font-size: inherit;
}

.sh-content-highlight p {
    margin: 0;
    font-size: 20px;
    line-height: 1.8;
    color: var(--sh-primary);
    font-weight: 500;
}

.sh-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 29px 0;
    padding: 26px 0;
    border-top: 1px solid var(--sh-border);
    border-bottom: 2px solid var(--sh-border);
}

.sh-tag {
    padding: 11px 16px;
    background: linear-gradient(135deg, rgba(245,192,62,0.18), rgba(233,184,42,0.12));
    border: 2px solid var(--sh-gold);
    border-radius: 24px;
    font-size: 10px;
    font-weight: 700;
    color: var(--sh-primary);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(245,205,65,0.2);
}

.sh-tag::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(245,195,72,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.sh-tag:hover::before {
    width: 200px;
    height: 200px;
}

.sh-tag:hover {
    background: linear-gradient(135deg, var(--sh-gold), var(--sh-gold-light));
    color: var(--sh-primary);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 16px var(--sh-shadow-gold), 0 2px 8px rgba(245,202,64,0.3);
    border-color: var(--sh-gold-dark);
}

.sh-tag span {
    position: relative;
    z-index: 1;
}

.sh-social-share {
    display: flex;
    gap: 11px;
    padding: 27px 0;
    border-top: 3px solid var(--sh-border);
    margin-top: 46px;
}

.sh-share-btn {
    width: 51px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sh-gold), var(--sh-gold-light), var(--sh-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sh-primary);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 16px var(--sh-shadow-gold), 0 2px 8px rgba(245,192,67,0.3);
    border: 2px solid rgba(30,24,19,0.1);
    position: relative;
    overflow: hidden;
}

.sh-share-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.sh-share-btn:hover::before {
    width: 100px;
    height: 100px;
}

.sh-share-btn:hover {
    transform: translateY(-4px) scale(1.15) rotate(5deg);
    box-shadow: 0 10px 28px var(--sh-shadow-gold), 0 4px 12px rgba(239,195,61,0.4);
}

.sh-share-btn svg {
    position: relative;
    z-index: 1;
}

.sh-share-btn svg {
    width: 20px;
    height: 20px;
}

/* Enhanced Typography */
.sh-article blockquote {
    border-left: 6px solid var(--sh-gold);
    padding: 28px 33px;
    margin: 38px 0;
    background: linear-gradient(135deg, rgba(238,201,69,0.1), rgba(224,177,29,0.06));
    border-radius: 11px;
    font-style: italic;
    font-size: 22px;
    line-height: 1.85;
    color: var(--sh-primary);
    position: relative;
    box-shadow: 0 4px 20px rgba(244,198,68,0.15), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-right: 2px solid rgba(242,194,63,0.1);
}

.sh-article blockquote::before {
    content: '"';
    font-size: 72px;
    color: var(--sh-gold);
    position: absolute;
    top: -15px;
    left: 20px;
    opacity: 0.25;
    font-family: serif;
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(241,201,70,0.3);
}

.sh-article blockquote::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 160px;
    height: 120px;
    background: radial-gradient(circle, rgba(245,207,62,0.12) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(25%, 25%);
    animation: sh-pulse 3s ease-in-out infinite;
}

.sh-article blockquote p {
    position: relative;
    z-index: 1;
    margin: 0;
    padding-left: 20px;
}

.sh-article blockquote p:last-child {
    margin-bottom: 0;
}

.sh-article code {
    background: linear-gradient(135deg, rgba(245,197,73,0.15), rgba(233,189,34,0.1));
    padding: 3px 12px;
    border-radius: 5px;
    font-size: 17px;
    color: var(--sh-primary);
    font-weight: 700;
    border: 1px solid rgba(245,194,72,0.2);
    font-family: 'Courier New', monospace;
    box-shadow: 0 2px 4px rgba(245,200,64,0.1);
    display: inline-block;
    margin: 0 2px;
}

.sh-article table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 33px 0;
    box-shadow: 0 7px 23px var(--sh-shadow), 0 2px 8px rgba(245,207,67,0.1);
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid rgba(245,197,59,0.15);
}

.sh-article table thead {
    background: linear-gradient(135deg, var(--sh-gold), var(--sh-gold-light), var(--sh-gold));
    position: relative;
}

.sh-article table thead::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(30,29,26,0.2), transparent);
}

.sh-article table th {
    padding: 15px 22px;
    text-align: left;
    font-weight: 900;
    color: var(--sh-primary);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    text-shadow: 0 2px 1px rgba(0, 0, 0, 0.1);
    position: relative;
}

.sh-article table th::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(20,26,29,0.2);
}

.sh-article table td {
    padding: 16px 15px;
    border-bottom: 3px solid var(--sh-border);
    color: var(--sh-text);
    transition: all 0.3s ease;
    position: relative;
}

.sh-article table td::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--sh-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sh-article table tr:hover td::before {
    opacity: 0.3;
}

.sh-article table tr {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.sh-article table tr::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--sh-gold), var(--sh-gold-light));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 0 4px 2px 0;
}

.sh-article table tr:hover {
    background: linear-gradient(135deg, rgba(238,206,61,0.1), rgba(224,181,37,0.05));
    transform: translateX(4px) scale(1.005);
    box-shadow: 0 4px 12px rgba(244,203,71,0.2), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.sh-article table tr:hover::before {
    opacity: 0.5;
}

.sh-article table tr:hover td {
    color: var(--sh-primary);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .sh-menu-toggle {
        display: flex;
    }

    .sh-nav {
        display: none;
    }

    .sh-hero-title {
        font-size: 36px;
    }

    .sh-hero-subtitle {
        font-size: 18px;
    }

    .sh-article h2 {
        font-size: 26px;
    }

    .sh-stats-grid {
        grid-template-columns: 1fr;
    }

    .sh-phone-cta {
        padding: 35px 24px;
    }

    .sh-phone-cta-number {
        font-size: 28px;
    }

    .sh-criteria-box {
        padding: 26px;
    }

    .sh-footer-grid {
        grid-template-columns: 1fr;
    }

    .sh-article-image {
        min-height: 250px;
    }

    .sh-article-meta {
        flex-direction: column;
        gap: 15px;
    }

    .sh-social-share {
        justify-content: center;
    }
}

/* ============================================
   EXTRA DETAILED DESIGN ENHANCEMENTS
   ============================================ */

/* Enhanced gradient overlays */
.sh-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(242,199,70,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(228,191,31,0.12) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    animation: sh-gradient-pulse 8s ease-in-out infinite;
}

@keyframes sh-gradient-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Enhanced text shadows for depth */
.sh-hero-title {
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.1),
        0 4px 8px rgba(0, 0, 0, 0.08),
        0 0 20px rgba(245,193,72,0.15);
    position: relative;
}

.sh-hero-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(135deg, var(--sh-gold), var(--sh-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(10px);
    opacity: 0.4;
    transform: translate(1px, 3px);
}

/* Enhanced button with 3D effect */
.sh-btn {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sh-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.sh-btn:hover::before {
    left: 100%;
}

.sh-btn:active {
    transform: translateY(2px) scale(0.98);
    box-shadow: 0 2px 8px rgba(245,205,67,0.4);
}

/* Enhanced card with glassmorphism */
.sh-criteria-box,
.sh-rating-box,
.sh-facts-box {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(7px);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* Enhanced image with parallax effect */
.sh-image-wrapper {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.sh-article-image {
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.sh-image-wrapper:hover .sh-article-image {
    transform: scale(1.02) translateZ(20px);
}

/* Enhanced list items with animated markers */
.sh-article ul li::marker {
    color: var(--sh-gold);
    font-weight: 900;
    animation: sh-marker-pulse 2s ease-in-out infinite;
}

@keyframes sh-marker-pulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Enhanced table with zebra striping and hover */
.sh-article table tbody tr {
    transition: all 0.3s ease;
    position: relative;
}

.sh-article table tbody tr::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--sh-gold);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    border-radius: 0 3px 5px 0;
}

.sh-article table tbody tr:hover::after {
    transform: scaleY(1);
}

/* Enhanced FAQ with smooth accordion */
.sh-faq-item {
    border-left: 4px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sh-faq-item:hover {
    border-left-color: var(--sh-gold);
    background: linear-gradient(90deg, rgba(239,205,61,0.05), transparent);
}

.sh-faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 24px;
    font-weight: 300;
    color: var(--sh-gold);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sh-faq-item.active .sh-faq-question::after {
    transform: rotate(45deg);
    color: var(--sh-gold-dark);
}

/* Enhanced stats counter with glow */
.sh-stats-counter-number {
    position: relative;
}

.sh-stats-counter-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(238,195,68,0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}

.sh-stats-counter:hover .sh-stats-counter-number::after {
    opacity: 1;
    animation: sh-glow-expand 2s ease-in-out infinite;
}

@keyframes sh-glow-expand {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.6; }
}

/* Enhanced phone CTA with ring animation */
.sh-phone-cta {
    position: relative;
    overflow: hidden;
}

.sh-phone-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(237,201,60,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.sh-phone-cta:hover::before {
    width: 300px;
    height: 300px;
    animation: sh-ripple 1.5s ease-out infinite;
}

@keyframes sh-ripple {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

/* Enhanced scroll progress with gradient */
#readingProgress {
    background: linear-gradient(90deg, 
        var(--sh-gold-dark) 0%, 
        var(--sh-gold) 25%, 
        var(--sh-gold-light) 50%, 
        var(--sh-gold) 75%, 
        var(--sh-gold-dark) 100%);
    background-size: 200% 100%;
    animation: sh-progress-shine 3s linear infinite;
}

@keyframes sh-progress-shine {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Enhanced lazy load placeholder */
.sh-lazy-load-placeholder {
    background: linear-gradient(90deg, 
        rgba(244,192,63,0.1) 0%, 
        rgba(243,198,71,0.2) 50%, 
        rgba(242,204,62,0.1) 100%);
    background-size: 200% 100%;
    animation: sh-skeleton-wave 1.5s ease-in-out infinite;
    border-radius: 15px;
}

@keyframes sh-skeleton-wave {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

img[loading="lazy"]:not(.loaded) {
    background: linear-gradient(135deg, 
        rgba(241,195,70,0.05) 0%, 
        rgba(235,186,34,0.08) 50%, 
        rgba(245,207,72,0.05) 100%);
    background-size: 200% 200%;
    animation: sh-image-skeleton 2s ease-in-out infinite;
}

@keyframes sh-image-skeleton {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Enhanced footer with subtle pattern */
.sh-footer {
    position: relative;
}

.sh-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--sh-gold) 20%, 
        var(--sh-gold-light) 50%, 
        var(--sh-gold) 80%, 
        transparent 100%);
    opacity: 0.6;
}

/* Enhanced header with shadow on scroll */
.sh-header {
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.sh-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1),
                0 0 40px rgba(245,204,67,0.1);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(11px);
}

/* Enhanced ticker with gradient text */
.sh-ticker-item {
    background: linear-gradient(135deg, var(--sh-gold), var(--sh-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Enhanced breadcrumbs with arrows */
.sh-breadcrumbs-item::after {
    content: '→';
    margin: 0 10px;
    color: var(--sh-gold);
    font-weight: 700;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.sh-breadcrumbs-item:hover::after {
    opacity: 1;
    transform: translateX(4px);
}

.sh-breadcrumbs-item:last-child::after {
    display: none;
}

/* Enhanced meta info with icons */
.sh-meta-info-item::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--sh-gold);
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 7px rgba(245,201,66,0.6);
    animation: sh-dot-pulse 2s ease-in-out infinite;
}

@keyframes sh-dot-pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; }
}

/* Enhanced social share buttons */
.sh-social-share-btn {
    position: relative;
    overflow: hidden;
}

.sh-social-share-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.sh-social-share-btn:hover::before {
    width: 200%;
    height: 200%;
}

/* Enhanced form inputs */
.sh-form-input:focus {
    box-shadow: 
        0 0 0 3px rgba(245,197,69,0.2),
        0 4px 12px rgba(240,203,61,0.15);
    border-color: var(--sh-gold);
    transform: translateY(-1px);
}

/* Enhanced scroll to top button */
.sh-scroll-to-top {
    box-shadow: 
        0 4px 16px rgba(239,194,68,0.4),
        0 0 30px rgba(238,200,60,0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sh-scroll-to-top:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 
        0 8px 24px rgba(237,206,63,0.5),
        0 0 40px rgba(244,197,71,0.3);
}

.sh-scroll-to-top:active {
    transform: translateY(-2px) scale(1.05);
}

/* Enhanced mobile menu backdrop */
.sh-mobile-nav-overlay {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.7);
}

/* Enhanced rating stars with twinkle */
.sh-star--filled {
    position: relative;
    animation: sh-star-twinkle 3s ease-in-out infinite;
}

.sh-star--filled:nth-child(2n) {
    animation-delay: 0.5s;
}

.sh-star--filled:nth-child(3n) {
    animation-delay: 1s;
}

/* Enhanced comparison section */
.sh-comparison-section {
    position: relative;
}

.sh-comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        var(--sh-gold) 20%, 
        var(--sh-gold-light) 50%, 
        var(--sh-gold) 80%, 
        transparent 100%);
    opacity: 0.3;
    z-index: 0;
}

/* Enhanced CTA banner */
.sh-cta-banner {
    position: relative;
    overflow: hidden;
}

.sh-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(242,193,70,0.1) 0%, transparent 70%);
    animation: sh-rotate-slow 20s linear infinite;
}

@keyframes sh-rotate-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced tags */
.sh-tag {
    position: relative;
    overflow: hidden;
}

.sh-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.sh-tag:hover::before {
    left: 100%;
}

/* Enhanced quote block */
.sh-quote-block {
    position: relative;
    padding-left: 39px;
}

.sh-quote-block::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 80px;
    line-height: 1;
    color: var(--sh-gold);
    opacity: 0.2;
    font-family: Georgia, serif;
    font-weight: 900;
}

/* Enhanced dropcap */
.sh-dropcap {
    position: relative;
    padding: 0 6px 0 0;
}

.sh-dropcap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sh-gold), transparent);
    opacity: 0.5;
}

/* Enhanced section titles */
.sh-section-title {
    position: relative;
    display: inline-block;
}

.sh-section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--sh-gold), var(--sh-gold-light));
    border-radius: 1px;
    box-shadow: 0 3px 9px rgba(245,206,73,0.4);
}

/* Enhanced loading states */
.sh-loading {
    position: relative;
    overflow: hidden;
}

.sh-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(245,196,64,0.3), 
        transparent);
    animation: sh-loading-shine 1.5s infinite;
}

@keyframes sh-loading-shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Enhanced focus ring */
*:focus-visible {
    outline: 2px solid var(--sh-gold);
    outline-offset: 5px;
    border-radius: 6px;
    box-shadow: 0 0 0 5px rgba(245,203,72,0.2);
}

/* Enhanced print styles */
@media print {
    .sh-hero::after,
    .sh-hero::before,
    .sh-btn::before,
    .sh-image-wrapper::before {
        display: none;
    }
    
    .sh-article-image {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    .sh-section-divider {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}


/* ==================
   Company Logo Styles (110px height)
   ================== */
.fb-company-logo {
    width: 240px;
    height: 165px;
    object-fit: contain;
    background: var(--fb-white);
    border-radius: var(--fb-radius-sm);
    padding: 9px;
    margin-bottom: 6px;
    border: 2px solid var(--fb-gray-200);
}

.fb-company-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* ==================
   Action Buttons (Go + Review)
   ================== */
.fb-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fb-btn-primary {
    display: inline-block;
    padding: 7px 26px;
    background: var(--fb-secondary);
    color: var(--fb-dark);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border-radius: var(--fb-radius-sm);
    transition: var(--fb-transition);
    text-decoration: none;
}

.fb-btn-primary:hover {
    background: var(--fb-secondary-dark);
    color: var(--fb-dark);
    transform: translateY(-1px);
}

.fb-btn-review {
    display: inline-block;
    padding: 11px 22px;
    background: transparent;
    color: var(--fb-primary);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border: 2px solid var(--fb-primary);
    border-radius: var(--fb-radius-sm);
    transition: var(--fb-transition);
    text-decoration: none;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .fb-company-logo {
        width: 160px;
        height: 100px;
    }

    .fb-action-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .fb-btn-primary,
    .fb-btn-review {
        padding: 11px 17px;
        font-size: 11px;
    }
}
/* ==================
   UNIVERSAL MOBILE FIX - Company Logos & Table Adaptivity
   Applied to all sites
   ================== */
@media (max-width: 768px) {
    /* Universal logo selectors */
    [class*='company-logo'],
    [class*='CompanyLogo'],
    [class*='company_logo'],
    img[class*='logo'][class*='company'],
    .company-logo,
    .fb-company-logo,
    .catCompanyLogo,
    .tf-company-card__logo,
    .th-company-logo,
    .op-company-logo,
    .card-logo,
    .review-logo {
        width: 140px !important;
        min-width: 140px !important;
        height: auto !important;
        min-height: 80px !important;
        max-height: 100px !important;
        padding: 11px !important;
        margin: 0 auto 13px !important;
        display: block !important;
        object-fit: contain !important;
    }
    
    /* Center company info/cards */
    [class*='company-info'],
    [class*='CompanyInfo'],
    [class*='company_info'],
    .fb-company-info,
    .catCompanyInfo,
    .tf-company-card__info {
        align-items: center !important;
        text-align: center !important;
    }
    
    /* Center company name */
    [class*='company-name'],
    [class*='CompanyName'],
    .catCompanyName,
    .tf-company-card__name {
        text-align: center !important;
    }
    
    /* Center rating/stars */
    [class*='rating'],
    [class*='Rating'],
    [class*='stars'],
    [class*='Stars'],
    .catRating,
    .catStars {
        justify-content: center !important;
        text-align: center !important;
    }
    
    /* Buttons full width */
    [class*='action-btn'],
    [class*='ActionBtn'],
    [class*='btn-cta'],
    [class*='btn-primary'],
    [class*='btn-review'],
    .catBtnCta,
    .catBtnReview,
    .fb-btn-primary,
    .fb-btn-review,
    .tf-btn-primary,
    .tf-btn-outline {
        display: block !important;
        width: 100% !important;
        padding: 10px 23px !important;
        text-align: center !important;
        font-size: 14px !important;
        margin-bottom: 5px !important;
    }
    
    /* Site logo bigger */
    [class*='site-logo'] img,
    [class*='SiteLogo'] img,
    .catLogo__icon,
    .tf-logo__icon,
    .th-logo__icon,
    header [class*='logo'] img {
        min-width: 45px !important;
        min-height: 45px !important;
    }
}


/* Max width 1400px for desktop */
.sh-wrapper, .sh-content, .sh-hero-inner, .sh-companies-container, 
.sh-article, .sh-container, .sh-footer-inner, .sh-main {
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Center buttons in company cards */
.sh-company-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}
.sh-td-action {
    text-align: center !important;
}
.sh-action-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: 8px !important;
}


/* ===== OVERRIDE FIXES (Mar 2026) ===== */
/* Desktop company table logos */
.sh-cc img {
    width: 200px !important;
    max-width: 230px !important;
    min-width: 170px !important;
    height: auto !important;
}

/* Review page logo background */
.review-logo {
    background: rgba(255,255,255,0.75);
    padding: 18px;
    border-radius: 15px;
    box-shadow: 0 3px 13px rgba(0,0,0,0.08);
}
