:root { --thw-bg-void: #050507;
--thw-bg-deep: #0a0a0c;
--thw-bg-dark: #0d0d10;
--thw-bg-card: #131316;
--thw-bg-elevated: #1a1a1f;
--thw-bg-hover: #222228; --thw-accent-primary: #00d4ff;
--thw-accent-secondary: #7c3aed;
--thw-accent-tertiary: #06ffa5;
--thw-accent-glow: rgba(0, 212, 255, 0.4);
--thw-accent-glow-secondary: rgba(124, 58, 237, 0.3); --thw-gradient-primary: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
--thw-gradient-accent: linear-gradient(135deg, #06ffa5 0%, #00d4ff 50%, #7c3aed 100%);
--thw-gradient-card: linear-gradient(145deg, rgba(26, 26, 31, 0.8) 0%, rgba(19, 19, 22, 0.9) 100%);
--thw-gradient-hero: linear-gradient(180deg, transparent 0%, rgba(5, 5, 7, 0.4) 40%, rgba(5, 5, 7, 0.95) 100%); --thw-text-bright: #ffffff;
--thw-text-primary: #e4e4e7;
--thw-text-secondary: #a1a1aa;
--thw-text-muted: #71717a;
--thw-text-dim: #52525b; --thw-border-subtle: rgba(255, 255, 255, 0.06);
--thw-border-default: rgba(255, 255, 255, 0.1);
--thw-border-hover: rgba(0, 212, 255, 0.3);
--thw-border-active: rgba(0, 212, 255, 0.5); --thw-glass-bg: rgba(19, 19, 22, 0.7);
--thw-glass-border: rgba(255, 255, 255, 0.08);
--thw-glass-blur: blur(20px); --thw-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
--thw-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
--thw-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
--thw-shadow-glow: 0 0 30px var(--thw-accent-glow);
--thw-shadow-glow-lg: 0 0 60px var(--thw-accent-glow), 0 0 100px rgba(0, 212, 255, 0.2); --thw-font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
--thw-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
--thw-font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace; --thw-space-1: 0.25rem;
--thw-space-2: 0.5rem;
--thw-space-3: 0.75rem;
--thw-space-4: 1rem;
--thw-space-5: 1.25rem;
--thw-space-6: 1.5rem;
--thw-space-8: 2rem;
--thw-space-10: 2.5rem;
--thw-space-12: 3rem;
--thw-space-16: 4rem;
--thw-space-20: 5rem; --thw-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
--thw-ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
--thw-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1); --thw-radius-sm: 6px;
--thw-radius-md: 10px;
--thw-radius-lg: 16px;
--thw-radius-xl: 24px;
--thw-radius-full: 9999px;
} body.thw-premium {
background: var(--thw-bg-void);
color: var(--thw-text-primary);
font-family: var(--thw-font-body);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
} body.thw-premium::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: 
radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
radial-gradient(ellipse 60% 40% at 100% 0%, rgba(124, 58, 237, 0.06) 0%, transparent 50%),
radial-gradient(ellipse 50% 30% at 0% 100%, rgba(6, 255, 165, 0.04) 0%, transparent 50%);
pointer-events: none;
z-index: -1;
} body.thw-premium::after {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: 
linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
background-size: 60px 60px;
pointer-events: none;
z-index: -1;
opacity: 0.5;
} @media (hover: hover) and (pointer: fine) {
body.thw-premium {
cursor: default;
}
body.thw-premium a,
body.thw-premium button,
body.thw-premium [role="button"] {
cursor: pointer;
}
} body.thw-premium h1,
body.thw-premium h2,
body.thw-premium h3,
body.thw-premium h4,
body.thw-premium h5,
body.thw-premium h6 {
font-family: var(--thw-font-display);
font-weight: 600;
letter-spacing: -0.02em;
color: var(--thw-text-bright);
}
body.thw-premium h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
body.thw-premium h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
body.thw-premium h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
body.thw-premium a {
color: var(--thw-accent-primary);
text-decoration: none;
transition: color 0.2s var(--thw-ease-out);
}
body.thw-premium a:hover {
color: var(--thw-text-bright);
}
body.thw-premium code,
body.thw-premium pre {
font-family: var(--thw-font-mono);
background: var(--thw-bg-elevated);
border: 1px solid var(--thw-border-subtle);
border-radius: var(--thw-radius-sm);
}
body.thw-premium code {
padding: 0.15em 0.4em;
font-size: 0.875em;
color: var(--thw-accent-primary);
} body.thw-premium .thw-header {
background: var(--thw-glass-bg);
backdrop-filter: var(--thw-glass-blur);
-webkit-backdrop-filter: var(--thw-glass-blur);
border-bottom: 1px solid var(--thw-glass-border);
transition: all 0.3s var(--thw-ease-out);
}
body.thw-premium .thw-header.scrolled-down {
transform: translateY(-100%);
}
body.thw-premium .thw-header.scrolled-up {
background: rgba(5, 5, 7, 0.95);
box-shadow: var(--thw-shadow-lg);
} body.thw-premium .thw-logo-link {
display: flex;
align-items: center;
gap: var(--thw-space-3);
transition: transform 0.3s var(--thw-ease-spring);
}
body.thw-premium .thw-logo-link:hover {
transform: scale(1.02);
}
body.thw-premium .thw-logo-icon {
transition: filter 0.3s var(--thw-ease-out);
}
body.thw-premium .thw-logo-link:hover .thw-logo-icon {
filter: drop-shadow(0 0 12px var(--thw-accent-glow));
}
body.thw-premium .thw-logo-text {
font-family: var(--thw-font-display);
font-weight: 700;
font-size: 1.4rem;
letter-spacing: -0.02em;
background: var(--thw-gradient-primary);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
body.thw-premium .thw-logo-tagline {
font-size: 0.65rem;
color: var(--thw-text-muted);
letter-spacing: 0.15em;
text-transform: uppercase;
} body.thw-premium .thw-nav-menu > li > a {
position: relative;
color: var(--thw-text-secondary);
font-weight: 500;
font-size: 0.9rem;
padding: var(--thw-space-2) var(--thw-space-4);
transition: color 0.2s var(--thw-ease-out);
}
body.thw-premium .thw-nav-menu > li > a::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
width: 0;
height: 2px;
background: var(--thw-gradient-primary);
transition: all 0.3s var(--thw-ease-out);
transform: translateX(-50%);
border-radius: 2px;
}
body.thw-premium .thw-nav-menu > li > a:hover,
body.thw-premium .thw-nav-menu > li.current-menu-item > a {
color: var(--thw-text-bright);
}
body.thw-premium .thw-nav-menu > li > a:hover::after,
body.thw-premium .thw-nav-menu > li.current-menu-item > a::after {
width: 100%;
} body.thw-premium .thw-nav-menu .sub-menu {
background: var(--thw-glass-bg);
backdrop-filter: var(--thw-glass-blur);
border: 1px solid var(--thw-glass-border);
border-radius: var(--thw-radius-lg);
padding: var(--thw-space-2);
box-shadow: var(--thw-shadow-lg);
}
body.thw-premium .thw-nav-menu .sub-menu a {
border-radius: var(--thw-radius-sm);
transition: all 0.2s var(--thw-ease-out);
}
body.thw-premium .thw-nav-menu .sub-menu a:hover {
background: var(--thw-bg-hover);
color: var(--thw-accent-primary);
} body.thw-premium .thw-hero {
padding: var(--thw-space-8) 0 var(--thw-space-12);
position: relative;
}
body.thw-premium .thw-hero-grid {
gap: var(--thw-space-4);
}
body.thw-premium .thw-hero-card {
background: var(--thw-bg-card);
border: 1px solid var(--thw-border-subtle);
border-radius: var(--thw-radius-xl);
overflow: hidden;
transition: all 0.4s var(--thw-ease-out);
position: relative;
}
body.thw-premium .thw-hero-card::before {
content: '';
position: absolute;
inset: 0;
border-radius: inherit;
padding: 1px;
background: var(--thw-gradient-primary);
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
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.4s var(--thw-ease-out);
pointer-events: none;
}
body.thw-premium .thw-hero-card:hover::before {
opacity: 1;
}
body.thw-premium .thw-hero-card:hover {
transform: translateY(-4px);
box-shadow: var(--thw-shadow-glow-lg);
border-color: transparent;
} body.thw-premium .thw-hero-card-main {
min-height: 550px;
}
body.thw-premium .thw-hero-image {
transition: transform 0.8s var(--thw-ease-out), filter 0.4s var(--thw-ease-out);
}
body.thw-premium .thw-hero-card:hover .thw-hero-image {
transform: scale(1.05);
filter: brightness(1.1);
} body.thw-premium .thw-hero-gradient {
background: var(--thw-gradient-hero);
}
body.thw-premium .thw-hero-overlay {
padding: var(--thw-space-8);
} body.thw-premium .thw-hero-category {
display: inline-flex;
align-items: center;
gap: var(--thw-space-2);
padding: var(--thw-space-1) var(--thw-space-3);
background: rgba(0, 212, 255, 0.15);
color: var(--thw-accent-primary);
font-size: 0.7rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.1em;
border-radius: var(--thw-radius-full);
border: 1px solid rgba(0, 212, 255, 0.3);
backdrop-filter: blur(8px);
transition: all 0.3s var(--thw-ease-out);
}
body.thw-premium .thw-hero-category:hover {
background: var(--thw-accent-primary);
color: var(--thw-bg-void);
border-color: var(--thw-accent-primary);
box-shadow: var(--thw-shadow-glow);
} body.thw-premium .thw-hero-title {
font-family: var(--thw-font-display);
font-size: clamp(1.5rem, 3vw, 2.5rem);
font-weight: 700;
line-height: 1.2;
letter-spacing: -0.02em;
margin-bottom: var(--thw-space-4);
}
body.thw-premium .thw-hero-title a {
color: var(--thw-text-bright);
transition: all 0.3s var(--thw-ease-out);
}
body.thw-premium .thw-hero-title a:hover {
background: var(--thw-gradient-primary);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
} body.thw-premium .thw-hero-excerpt {
color: var(--thw-text-secondary);
font-size: 1rem;
line-height: 1.6;
margin-bottom: var(--thw-space-4);
} body.thw-premium .thw-hero-meta {
color: var(--thw-text-muted);
font-size: 0.8rem;
font-family: var(--thw-font-mono);
} body.thw-premium .thw-hero-btn {
display: inline-flex;
align-items: center;
gap: var(--thw-space-2);
padding: var(--thw-space-3) var(--thw-space-6);
background: var(--thw-gradient-primary);
color: var(--thw-bg-void);
font-weight: 600;
font-size: 0.9rem;
border-radius: var(--thw-radius-full);
transition: all 0.3s var(--thw-ease-spring);
box-shadow: var(--thw-shadow-glow);
}
body.thw-premium .thw-hero-btn:hover {
transform: translateY(-2px) scale(1.02);
box-shadow: var(--thw-shadow-glow-lg);
color: var(--thw-bg-void);
} body.thw-premium .thw-post-card {
background: var(--thw-bg-card);
border: 1px solid var(--thw-border-subtle);
border-radius: var(--thw-radius-lg);
overflow: hidden;
transition: all 0.4s var(--thw-ease-out);
position: relative;
} body.thw-premium .thw-post-card::before {
content: '';
position: absolute;
inset: 0;
border-radius: inherit;
padding: 1px;
background: var(--thw-gradient-primary);
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
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.4s var(--thw-ease-out);
pointer-events: none;
z-index: 1;
}
body.thw-premium .thw-post-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), var(--thw-shadow-glow);
border-color: transparent;
}
body.thw-premium .thw-post-card:hover::before {
opacity: 1;
} body.thw-premium .thw-post-thumbnail {
position: relative;
height: 220px;
overflow: hidden;
}
body.thw-premium .thw-post-thumbnail::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(180deg, transparent 50%, var(--thw-bg-card) 100%);
pointer-events: none;
}
body.thw-premium .thw-post-thumbnail img {
transition: transform 0.6s var(--thw-ease-out), filter 0.4s var(--thw-ease-out);
}
body.thw-premium .thw-post-card:hover .thw-post-thumbnail img {
transform: scale(1.08);
filter: brightness(1.1) saturate(1.1);
} body.thw-premium .thw-post-category {
position: absolute;
top: var(--thw-space-4);
left: var(--thw-space-4);
padding: var(--thw-space-1) var(--thw-space-3);
background: rgba(0, 0, 0, 0.6);
backdrop-filter: blur(8px);
color: var(--thw-accent-primary);
font-size: 0.65rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.08em;
border-radius: var(--thw-radius-sm);
border: 1px solid rgba(0, 212, 255, 0.2);
z-index: 2;
transition: all 0.3s var(--thw-ease-out);
}
body.thw-premium .thw-post-category:hover {
background: var(--thw-accent-primary);
color: var(--thw-bg-void);
border-color: var(--thw-accent-primary);
} body.thw-premium .thw-post-content {
padding: var(--thw-space-5);
}
body.thw-premium .thw-post-title {
font-family: var(--thw-font-display);
font-size: 1.1rem;
font-weight: 600;
line-height: 1.4;
margin-bottom: var(--thw-space-3);
}
body.thw-premium .thw-post-title a {
color: var(--thw-text-bright);
transition: color 0.2s var(--thw-ease-out);
}
body.thw-premium .thw-post-card:hover .thw-post-title a {
color: var(--thw-accent-primary);
}
body.thw-premium .thw-post-excerpt {
color: var(--thw-text-secondary);
font-size: 0.9rem;
line-height: 1.6;
} body.thw-premium .thw-post-meta {
display: flex;
align-items: center;
gap: var(--thw-space-4);
padding-top: var(--thw-space-4);
border-top: 1px solid var(--thw-border-subtle);
font-size: 0.8rem;
color: var(--thw-text-muted);
}
body.thw-premium .thw-post-author img {
border-radius: var(--thw-radius-full);
border: 2px solid var(--thw-border-subtle);
}
body.thw-premium .thw-post-date {
font-family: var(--thw-font-mono);
font-size: 0.75rem;
} body.thw-premium .thw-section-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: var(--thw-space-6);
padding-bottom: var(--thw-space-4);
border-bottom: 1px solid var(--thw-border-subtle);
}
body.thw-premium .thw-section-title {
font-family: var(--thw-font-display);
font-size: 1.25rem;
font-weight: 600;
color: var(--thw-text-bright);
display: flex;
align-items: center;
gap: var(--thw-space-3);
margin: 0;
}
body.thw-premium .thw-section-title::before {
content: '';
width: 4px;
height: 24px;
background: var(--thw-gradient-primary);
border-radius: 2px;
}
body.thw-premium .thw-section-link {
color: var(--thw-text-muted);
font-size: 0.875rem;
font-weight: 500;
transition: color 0.2s var(--thw-ease-out);
}
body.thw-premium .thw-section-link:hover {
color: var(--thw-accent-primary);
} body.thw-premium .thw-sidebar-newsletter {
background: var(--thw-gradient-card);
border: 1px solid var(--thw-border-subtle);
border-radius: var(--thw-radius-lg);
padding: var(--thw-space-6);
text-align: center;
position: relative;
overflow: hidden;
}
body.thw-premium .thw-sidebar-newsletter::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: var(--thw-gradient-primary);
}
body.thw-premium .thw-newsletter-form input[type="email"] {
width: 100%;
padding: var(--thw-space-3) var(--thw-space-4);
background: var(--thw-bg-elevated);
border: 1px solid var(--thw-border-default);
border-radius: var(--thw-radius-md);
color: var(--thw-text-primary);
font-size: 0.9rem;
margin-bottom: var(--thw-space-3);
transition: all 0.2s var(--thw-ease-out);
}
body.thw-premium .thw-newsletter-form input[type="email"]:focus {
outline: none;
border-color: var(--thw-accent-primary);
box-shadow: 0 0 0 3px var(--thw-accent-glow);
}
body.thw-premium .thw-newsletter-form button {
width: 100%;
padding: var(--thw-space-3) var(--thw-space-4);
background: var(--thw-gradient-primary);
border: none;
border-radius: var(--thw-radius-md);
color: var(--thw-bg-void);
font-weight: 600;
font-size: 0.9rem;
cursor: pointer;
transition: all 0.3s var(--thw-ease-spring);
}
body.thw-premium .thw-newsletter-form button:hover {
transform: translateY(-2px);
box-shadow: var(--thw-shadow-glow);
} body.thw-premium .thw-trending-item {
display: flex;
align-items: flex-start;
gap: var(--thw-space-4);
padding: var(--thw-space-4);
border-radius: var(--thw-radius-md);
transition: background 0.2s var(--thw-ease-out);
}
body.thw-premium .thw-trending-item:hover {
background: var(--thw-bg-elevated);
}
body.thw-premium .thw-trending-number {
font-family: var(--thw-font-display);
font-size: 1.5rem;
font-weight: 700;
background: var(--thw-gradient-primary);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
line-height: 1;
}
body.thw-premium .thw-trending-content h4 {
font-size: 0.9rem;
font-weight: 500;
line-height: 1.4;
margin-bottom: var(--thw-space-1);
}
body.thw-premium .thw-trending-content h4 a {
color: var(--thw-text-primary);
}
body.thw-premium .thw-trending-content h4 a:hover {
color: var(--thw-accent-primary);
} body.thw-premium .thw-tool-card {
display: flex;
flex-direction: column;
align-items: center;
gap: var(--thw-space-3);
padding: var(--thw-space-5);
background: var(--thw-bg-card);
border: 1px solid var(--thw-border-subtle);
border-radius: var(--thw-radius-lg);
text-align: center;
transition: all 0.3s var(--thw-ease-out);
}
body.thw-premium .thw-tool-card:hover {
background: var(--thw-bg-elevated);
border-color: var(--thw-border-hover);
transform: translateY(-4px);
box-shadow: var(--thw-shadow-md);
}
body.thw-premium .thw-tool-icon {
width: 48px;
height: 48px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(0, 212, 255, 0.1);
border-radius: var(--thw-radius-md);
color: var(--thw-accent-primary);
transition: all 0.3s var(--thw-ease-out);
}
body.thw-premium .thw-tool-card:hover .thw-tool-icon {
background: var(--thw-accent-primary);
color: var(--thw-bg-void);
box-shadow: var(--thw-shadow-glow);
}
body.thw-premium .thw-tool-name {
font-weight: 600;
color: var(--thw-text-bright);
font-size: 0.9rem;
}
body.thw-premium .thw-tool-desc {
font-size: 0.8rem;
color: var(--thw-text-muted);
} body.thw-premium .thw-footer {
background: var(--thw-bg-deep);
border-top: 1px solid var(--thw-border-subtle);
margin-top: var(--thw-space-16);
}
body.thw-premium .thw-footer-main {
padding: var(--thw-space-12) 0;
}
body.thw-premium .thw-footer-title {
font-family: var(--thw-font-display);
font-size: 0.9rem;
font-weight: 600;
color: var(--thw-text-bright);
margin-bottom: var(--thw-space-4);
text-transform: uppercase;
letter-spacing: 0.05em;
}
body.thw-premium .thw-footer-links a {
color: var(--thw-text-secondary);
font-size: 0.9rem;
transition: color 0.2s var(--thw-ease-out);
}
body.thw-premium .thw-footer-links a:hover {
color: var(--thw-accent-primary);
}
body.thw-premium .thw-footer-bottom {
padding: var(--thw-space-6) 0;
border-top: 1px solid var(--thw-border-subtle);
}
body.thw-premium .thw-copyright {
color: var(--thw-text-muted);
font-size: 0.85rem;
}  body.thw-premium .thw-back-to-top {
position: fixed;
bottom: 100px;
right: 24px;
width: 48px;
height: 48px;
background: var(--thw-glass-bg);
backdrop-filter: var(--thw-glass-blur);
border: 1px solid var(--thw-glass-border);
border-radius: var(--thw-radius-full);
color: var(--thw-text-secondary);
cursor: pointer;
opacity: 0;
visibility: hidden;
transform: translateY(20px);
transition: all 0.3s var(--thw-ease-out);
z-index: 999;
display: flex;
align-items: center;
justify-content: center;
}
body.thw-premium .thw-back-to-top.visible {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
body.thw-premium .thw-back-to-top:hover {
background: var(--thw-accent-primary);
color: var(--thw-bg-void);
border-color: var(--thw-accent-primary);
box-shadow: var(--thw-shadow-glow);
} body.thw-premium .thw-progress-bar {
position: fixed;
top: 0;
left: 0;
height: 3px;
background: var(--thw-gradient-primary);
z-index: 9999;
transition: width 0.1s linear;
box-shadow: var(--thw-shadow-glow);
} body.thw-premium .thw-theme-toggle {
position: fixed;
bottom: 24px;
right: 24px;
width: 48px;
height: 48px;
background: var(--thw-glass-bg);
backdrop-filter: var(--thw-glass-blur);
border: 1px solid var(--thw-glass-border);
border-radius: var(--thw-radius-full);
color: var(--thw-text-secondary);
cursor: pointer;
transition: all 0.3s var(--thw-ease-out);
z-index: 999;
display: flex;
align-items: center;
justify-content: center;
}
body.thw-premium .thw-theme-toggle:hover {
background: var(--thw-bg-elevated);
color: var(--thw-accent-primary);
border-color: var(--thw-border-hover);
} body.thw-premium .thw-command-palette {
position: fixed;
inset: 0;
z-index: 10000;
display: flex;
align-items: flex-start;
justify-content: center;
padding-top: 15vh;
opacity: 0;
visibility: hidden;
transition: all 0.2s var(--thw-ease-out);
}
body.thw-premium .thw-command-palette.active {
opacity: 1;
visibility: visible;
}
body.thw-premium .thw-command-overlay {
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.8);
backdrop-filter: blur(8px);
}
body.thw-premium .thw-command-container {
position: relative;
width: 100%;
max-width: 560px;
background: var(--thw-bg-card);
border: 1px solid var(--thw-border-default);
border-radius: var(--thw-radius-xl);
box-shadow: var(--thw-shadow-lg);
overflow: hidden;
transform: translateY(-20px);
transition: transform 0.3s var(--thw-ease-spring);
}
body.thw-premium .thw-command-palette.active .thw-command-container {
transform: translateY(0);
}
body.thw-premium .thw-command-header {
display: flex;
align-items: center;
gap: var(--thw-space-3);
padding: var(--thw-space-4);
border-bottom: 1px solid var(--thw-border-subtle);
}
body.thw-premium .thw-command-input {
flex: 1;
background: transparent;
border: none;
color: var(--thw-text-primary);
font-size: 1rem;
outline: none;
}
body.thw-premium .thw-command-input::placeholder {
color: var(--thw-text-muted);
}
body.thw-premium .thw-command-close {
padding: var(--thw-space-1) var(--thw-space-2);
background: var(--thw-bg-elevated);
border: 1px solid var(--thw-border-subtle);
border-radius: var(--thw-radius-sm);
color: var(--thw-text-muted);
font-size: 0.7rem;
font-family: var(--thw-font-mono);
cursor: pointer;
}
body.thw-premium .thw-command-results {
max-height: 400px;
overflow-y: auto;
padding: var(--thw-space-2);
}
body.thw-premium .thw-command-item {
display: flex;
align-items: center;
gap: var(--thw-space-3);
padding: var(--thw-space-3) var(--thw-space-4);
border-radius: var(--thw-radius-md);
cursor: pointer;
transition: background 0.15s var(--thw-ease-out);
}
body.thw-premium .thw-command-item:hover {
background: var(--thw-bg-elevated);
}
body.thw-premium .thw-command-icon {
font-size: 1.25rem;
} body.thw-premium .thw-bottom-nav {
position: fixed;
bottom: 0;
left: 0;
right: 0;
display: flex;
justify-content: space-around;
background: var(--thw-glass-bg);
backdrop-filter: var(--thw-glass-blur);
border-top: 1px solid var(--thw-glass-border);
padding: var(--thw-space-2) 0;
padding-bottom: calc(var(--thw-space-2) + env(safe-area-inset-bottom));
z-index: 1000;
}
body.thw-premium .thw-bottom-nav-item {
display: flex;
flex-direction: column;
align-items: center;
gap: var(--thw-space-1);
padding: var(--thw-space-2);
color: var(--thw-text-muted);
font-size: 0.65rem;
text-decoration: none;
transition: color 0.2s var(--thw-ease-out);
background: none;
border: none;
cursor: pointer;
}
body.thw-premium .thw-bottom-nav-item.active,
body.thw-premium .thw-bottom-nav-item:hover {
color: var(--thw-accent-primary);
}
body.thw-premium .thw-bottom-nav-item svg {
width: 22px;
height: 22px;
} @keyframes thw-fade-in {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes thw-glow-pulse {
0%, 100% {
box-shadow: 0 0 20px var(--thw-accent-glow);
}
50% {
box-shadow: 0 0 40px var(--thw-accent-glow), 0 0 60px rgba(0, 212, 255, 0.2);
}
}
@keyframes thw-gradient-shift {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
} body.thw-premium.thw-stagger-enabled .thw-animate-grid > *:nth-child(1) { animation-delay: 0ms; }
body.thw-premium.thw-stagger-enabled .thw-animate-grid > *:nth-child(2) { animation-delay: 50ms; }
body.thw-premium.thw-stagger-enabled .thw-animate-grid > *:nth-child(3) { animation-delay: 100ms; }
body.thw-premium.thw-stagger-enabled .thw-animate-grid > *:nth-child(4) { animation-delay: 150ms; }
body.thw-premium.thw-stagger-enabled .thw-animate-grid > *:nth-child(5) { animation-delay: 200ms; }
body.thw-premium.thw-stagger-enabled .thw-animate-grid > *:nth-child(6) { animation-delay: 250ms; }
body.thw-premium.thw-fade-enabled .thw-animate-section,
body.thw-premium.thw-fade-enabled .thw-animate-grid > * {
opacity: 0;
transform: translateY(20px);
}
body.thw-premium.thw-fade-enabled .thw-animate-section.thw-visible,
body.thw-premium.thw-fade-enabled .thw-animate-grid > *.thw-visible {
animation: thw-fade-in 0.6s var(--thw-ease-out) forwards;
} @media (prefers-reduced-motion: reduce) {
body.thw-premium.thw-respect-motion *,
body.thw-premium.thw-respect-motion *::before,
body.thw-premium.thw-respect-motion *::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
} body.thw-premium .thw-breaking-news {
background: linear-gradient(90deg, var(--thw-bg-deep) 0%, var(--thw-bg-card) 50%, var(--thw-bg-deep) 100%);
border-bottom: 1px solid var(--thw-border-subtle);
padding: var(--thw-space-3) 0;
}
body.thw-premium .thw-breaking-label {
background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
color: white;
padding: var(--thw-space-1) var(--thw-space-3);
font-size: 0.7rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.05em;
border-radius: var(--thw-radius-sm);
animation: thw-glow-pulse 2s ease-in-out infinite;
box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
}
body.thw-premium .thw-breaking-item a {
color: var(--thw-text-secondary);
font-size: 0.875rem;
transition: color 0.2s var(--thw-ease-out);
}
body.thw-premium .thw-breaking-item a:hover {
color: var(--thw-accent-primary);
} body.thw-premium .thw-single-header {
margin-bottom: var(--thw-space-8);
}
body.thw-premium .thw-single-category {
display: inline-flex;
align-items: center;
padding: var(--thw-space-1) var(--thw-space-3);
background: rgba(0, 212, 255, 0.15);
color: var(--thw-accent-primary);
font-size: 0.7rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.1em;
border-radius: var(--thw-radius-full);
border: 1px solid rgba(0, 212, 255, 0.3);
margin-bottom: var(--thw-space-4);
}
body.thw-premium .thw-single-title {
font-family: var(--thw-font-display);
font-size: clamp(2rem, 5vw, 3rem);
font-weight: 700;
line-height: 1.15;
letter-spacing: -0.02em;
color: var(--thw-text-bright);
margin-bottom: var(--thw-space-6);
}
body.thw-premium .thw-single-meta {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: var(--thw-space-6);
padding: var(--thw-space-4) 0;
border-top: 1px solid var(--thw-border-subtle);
border-bottom: 1px solid var(--thw-border-subtle);
color: var(--thw-text-secondary);
font-size: 0.9rem;
}
body.thw-premium .thw-single-author img {
border: 2px solid var(--thw-accent-primary);
box-shadow: 0 0 12px var(--thw-accent-glow);
} @media (max-width: 1024px) {
body.thw-premium .thw-content-area {
grid-template-columns: 1fr;
}
body.thw-premium .thw-sidebar {
position: static;
}
body.thw-premium .thw-posts-grid {
grid-template-columns: repeat(2, 1fr);
}
body.thw-premium .thw-hero-grid {
grid-template-columns: 1fr;
}
body.thw-premium .thw-hero-card-main {
min-height: 400px;
}
body.thw-premium .thw-hero-card-side {
height: 200px;
}
}
@media (max-width: 768px) {
body.thw-premium .thw-posts-grid {
grid-template-columns: 1fr;
}
body.thw-premium .thw-hero-card-main {
min-height: 350px;
}
body.thw-premium .thw-hero-overlay {
padding: var(--thw-space-5);
}
body.thw-premium .thw-hero-title {
font-size: 1.25rem;
}
body.thw-premium .thw-single-title {
font-size: 1.75rem;
}
body.thw-premium .thw-footer-grid {
grid-template-columns: 1fr;
gap: var(--thw-space-8);
} body.thw-premium .thw-main-content {
padding-bottom: 80px;
}
body.thw-premium .thw-back-to-top {
bottom: 90px;
}
body.thw-premium .thw-theme-toggle {
bottom: 90px;
right: 80px;
}
} body.thw-premium ::-webkit-scrollbar {
width: 8px;
height: 8px;
}
body.thw-premium ::-webkit-scrollbar-track {
background: var(--thw-bg-deep);
}
body.thw-premium ::-webkit-scrollbar-thumb {
background: var(--thw-bg-elevated);
border-radius: 4px;
}
body.thw-premium ::-webkit-scrollbar-thumb:hover {
background: var(--thw-accent-primary);
} body.thw-premium {
scrollbar-width: thin;
scrollbar-color: var(--thw-bg-elevated) var(--thw-bg-deep);
} body.thw-premium .thw-widget {
background: var(--thw-bg-card);
border: 1px solid var(--thw-border-subtle);
border-radius: var(--thw-radius-lg);
padding: var(--thw-space-5);
margin-bottom: var(--thw-space-6);
}
body.thw-premium .thw-widget-title {
font-family: var(--thw-font-display);
font-size: 1rem;
font-weight: 600;
color: var(--thw-text-bright);
margin-bottom: var(--thw-space-4);
padding-bottom: var(--thw-space-3);
border-bottom: 1px solid var(--thw-border-subtle);
display: flex;
align-items: center;
gap: var(--thw-space-2);
}
body.thw-premium .thw-widget-title::before {
content: '';
width: 3px;
height: 18px;
background: var(--thw-gradient-primary);
border-radius: 2px;
} body.thw-premium .thw-social-btn {
display: flex;
align-items: center;
gap: var(--thw-space-3);
padding: var(--thw-space-3) var(--thw-space-4);
background: var(--thw-bg-elevated);
border: 1px solid var(--thw-border-subtle);
border-radius: var(--thw-radius-md);
color: var(--thw-text-secondary);
font-size: 0.9rem;
transition: all 0.2s var(--thw-ease-out);
}
body.thw-premium .thw-social-btn:hover {
background: var(--thw-bg-hover);
border-color: var(--thw-border-hover);
color: var(--thw-text-bright);
transform: translateY(-2px);
}
body.thw-premium .thw-social-twitter:hover { border-color: #1da1f2; color: #1da1f2; }
body.thw-premium .thw-social-facebook:hover { border-color: #4267b2; color: #4267b2; }
body.thw-premium .thw-social-youtube:hover { border-color: #ff0000; color: #ff0000; }
body.thw-premium .thw-social-linkedin:hover { border-color: #0077b5; color: #0077b5; }
body.thw-premium .thw-social-reddit:hover { border-color: #ff4500; color: #ff4500; } body.thw-premium .thw-share-buttons {
display: flex;
align-items: center;
gap: var(--thw-space-4);
padding: var(--thw-space-5);
background: var(--thw-bg-card);
border: 1px solid var(--thw-border-subtle);
border-radius: var(--thw-radius-lg);
margin-top: var(--thw-space-8);
}
body.thw-premium .thw-share-btn {
width: 44px;
height: 44px;
display: flex;
align-items: center;
justify-content: center;
background: var(--thw-bg-elevated);
border: 1px solid var(--thw-border-subtle);
border-radius: var(--thw-radius-md);
color: var(--thw-text-secondary);
transition: all 0.2s var(--thw-ease-out);
}
body.thw-premium .thw-share-btn:hover {
background: var(--thw-accent-primary);
border-color: var(--thw-accent-primary);
color: var(--thw-bg-void);
transform: translateY(-2px);
box-shadow: var(--thw-shadow-glow);
} body.thw-premium .thw-tag {
display: inline-flex;
align-items: center;
padding: var(--thw-space-1) var(--thw-space-3);
background: rgba(0, 212, 255, 0.1);
color: var(--thw-accent-primary);
font-size: 0.8rem;
border-radius: var(--thw-radius-sm);
border: 1px solid rgba(0, 212, 255, 0.2);
transition: all 0.2s var(--thw-ease-out);
}
body.thw-premium .thw-tag:hover {
background: var(--thw-accent-primary);
color: var(--thw-bg-void);
border-color: var(--thw-accent-primary);
} body.thw-premium .thw-author-box {
display: flex;
gap: var(--thw-space-6);
padding: var(--thw-space-6);
background: var(--thw-bg-card);
border: 1px solid var(--thw-border-subtle);
border-radius: var(--thw-radius-xl);
margin-top: var(--thw-space-10);
position: relative;
overflow: hidden;
}
body.thw-premium .thw-author-box::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: var(--thw-gradient-primary);
}
body.thw-premium .thw-author-avatar img {
width: 100px;
height: 100px;
border-radius: var(--thw-radius-full);
border: 3px solid var(--thw-accent-primary);
box-shadow: 0 0 20px var(--thw-accent-glow);
}
body.thw-premium .thw-author-label {
font-size: 0.7rem;
color: var(--thw-accent-primary);
text-transform: uppercase;
letter-spacing: 0.1em;
margin-bottom: var(--thw-space-1);
}
body.thw-premium .thw-author-name {
font-family: var(--thw-font-display);
font-size: 1.25rem;
font-weight: 600;
margin-bottom: var(--thw-space-2);
}
body.thw-premium .thw-author-bio {
color: var(--thw-text-secondary);
font-size: 0.9rem;
line-height: 1.6;
} body.thw-premium .thw-comment {
padding: var(--thw-space-5);
background: var(--thw-bg-card);
border: 1px solid var(--thw-border-subtle);
border-radius: var(--thw-radius-lg);
margin-bottom: var(--thw-space-4);
}
body.thw-premium .thw-comment-avatar img {
border-radius: var(--thw-radius-full);
border: 2px solid var(--thw-border-default);
}
body.thw-premium .thw-comment-author {
font-weight: 600;
color: var(--thw-text-bright);
}
body.thw-premium .thw-comment-date {
font-family: var(--thw-font-mono);
font-size: 0.75rem;
color: var(--thw-text-muted);
}
body.thw-premium .thw-comment-content {
color: var(--thw-text-secondary);
line-height: 1.6;
} body.thw-premium .thw-comment-form {
padding: var(--thw-space-6);
background: var(--thw-bg-card);
border: 1px solid var(--thw-border-subtle);
border-radius: var(--thw-radius-xl);
}
body.thw-premium .thw-comment-form label {
display: block;
margin-bottom: var(--thw-space-2);
font-weight: 500;
color: var(--thw-text-primary);
}
body.thw-premium .thw-comment-form input[type="text"],
body.thw-premium .thw-comment-form input[type="email"],
body.thw-premium .thw-comment-form input[type="url"],
body.thw-premium .thw-comment-form textarea {
width: 100%;
padding: var(--thw-space-3) var(--thw-space-4);
background: var(--thw-bg-elevated);
border: 1px solid var(--thw-border-default);
border-radius: var(--thw-radius-md);
color: var(--thw-text-primary);
font-family: var(--thw-font-body);
font-size: 0.95rem;
margin-bottom: var(--thw-space-4);
transition: all 0.2s var(--thw-ease-out);
}
body.thw-premium .thw-comment-form input:focus,
body.thw-premium .thw-comment-form textarea:focus {
outline: none;
border-color: var(--thw-accent-primary);
box-shadow: 0 0 0 3px var(--thw-accent-glow);
}
body.thw-premium .thw-comment-form textarea {
min-height: 150px;
resize: vertical;
}
body.thw-premium .thw-comment-form .submit {
padding: var(--thw-space-3) var(--thw-space-6);
background: var(--thw-gradient-primary);
border: none;
border-radius: var(--thw-radius-md);
color: var(--thw-bg-void);
font-weight: 600;
font-size: 0.95rem;
cursor: pointer;
transition: all 0.3s var(--thw-ease-spring);
}
body.thw-premium .thw-comment-form .submit:hover {
transform: translateY(-2px);
box-shadow: var(--thw-shadow-glow);
} body.thw-premium .thw-btn-load-more {
display: inline-flex;
align-items: center;
justify-content: center;
gap: var(--thw-space-2);
padding: var(--thw-space-4) var(--thw-space-8);
background: transparent;
border: 2px solid var(--thw-accent-primary);
border-radius: var(--thw-radius-full);
color: var(--thw-accent-primary);
font-weight: 600;
font-size: 0.95rem;
transition: all 0.3s var(--thw-ease-out);
}
body.thw-premium .thw-btn-load-more:hover {
background: var(--thw-accent-primary);
color: var(--thw-bg-void);
box-shadow: var(--thw-shadow-glow);
transform: translateY(-2px);
}
body.thw-premium .thw-load-more-wrap {
text-align: center;
margin-top: var(--thw-space-10);
} body.thw-premium .thw-matrix-canvas {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: -2;
opacity: 0.3;
} body.thw-premium .thw-notice {
padding: var(--thw-space-4) var(--thw-space-5);
border-radius: var(--thw-radius-md);
margin-bottom: var(--thw-space-4);
font-size: 0.9rem;
}
body.thw-premium .thw-notice-success {
background: rgba(6, 255, 165, 0.1);
border: 1px solid rgba(6, 255, 165, 0.3);
color: var(--thw-accent-tertiary);
}
body.thw-premium .thw-notice-error {
background: rgba(239, 68, 68, 0.1);
border: 1px solid rgba(239, 68, 68, 0.3);
color: #ef4444;
}
body.thw-premium .thw-notice-info {
background: rgba(0, 212, 255, 0.1);
border: 1px solid rgba(0, 212, 255, 0.3);
color: var(--thw-accent-primary);
} body.thw-premium .thw-404-container {
text-align: center;
padding: var(--thw-space-16) var(--thw-space-4);
max-width: 600px;
margin: 0 auto;
}
body.thw-premium .thw-404-code {
font-family: var(--thw-font-display);
font-size: clamp(6rem, 20vw, 12rem);
font-weight: 700;
background: var(--thw-gradient-primary);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
line-height: 1;
margin-bottom: var(--thw-space-4);
animation: thw-glow-pulse 3s ease-in-out infinite;
}
body.thw-premium .thw-404-title {
font-size: 1.5rem;
margin-bottom: var(--thw-space-4);
}
body.thw-premium .thw-404-text {
color: var(--thw-text-secondary);
margin-bottom: var(--thw-space-8);
}
body.thw-premium .thw-404-btn {
display: inline-flex;
align-items: center;
gap: var(--thw-space-2);
padding: var(--thw-space-4) var(--thw-space-8);
background: var(--thw-gradient-primary);
color: var(--thw-bg-void);
font-weight: 600;
border-radius: var(--thw-radius-full);
transition: all 0.3s var(--thw-ease-spring);
}
body.thw-premium .thw-404-btn:hover {
transform: translateY(-2px);
box-shadow: var(--thw-shadow-glow-lg);
color: var(--thw-bg-void);
} body.thw-premium .thw-search-header {
margin-bottom: var(--thw-space-8);
}
body.thw-premium .thw-search-query {
color: var(--thw-accent-primary);
}
body.thw-premium .thw-search-count {
color: var(--thw-text-muted);
font-size: 0.9rem;
} body.thw-premium .thw-404-terminal {
background: var(--thw-bg-card);
border: 1px solid var(--thw-border-subtle);
border-radius: var(--thw-radius-lg);
padding: var(--thw-space-5);
margin: var(--thw-space-6) 0;
text-align: left;
font-family: var(--thw-font-mono);
font-size: 0.85rem;
line-height: 1.8;
overflow-x: auto;
}
body.thw-premium .thw-404-glitch {
position: relative;
}
body.thw-premium .thw-404-code {
position: relative;
display: inline-block;
}
body.thw-premium .thw-404-code::before,
body.thw-premium .thw-404-code::after {
content: '404';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--thw-bg-void);
}
body.thw-premium .thw-404-code::before {
left: 2px;
text-shadow: -2px 0 #ff00ff;
clip: rect(24px, 550px, 90px, 0);
animation: thw-glitch-1 2s infinite linear alternate-reverse;
}
body.thw-premium .thw-404-code::after {
left: -2px;
text-shadow: -2px 0 #00ffff;
clip: rect(85px, 550px, 140px, 0);
animation: thw-glitch-2 2s infinite linear alternate-reverse;
}
@keyframes thw-glitch-1 {
0% { clip: rect(42px, 9999px, 44px, 0); }
5% { clip: rect(12px, 9999px, 59px, 0); }
10% { clip: rect(48px, 9999px, 29px, 0); }
15% { clip: rect(42px, 9999px, 73px, 0); }
20% { clip: rect(63px, 9999px, 27px, 0); }
25% { clip: rect(34px, 9999px, 55px, 0); }
30% { clip: rect(86px, 9999px, 73px, 0); }
35% { clip: rect(20px, 9999px, 20px, 0); }
40% { clip: rect(26px, 9999px, 60px, 0); }
45% { clip: rect(25px, 9999px, 66px, 0); }
50% { clip: rect(57px, 9999px, 98px, 0); }
55% { clip: rect(5px, 9999px, 46px, 0); }
60% { clip: rect(82px, 9999px, 31px, 0); }
65% { clip: rect(54px, 9999px, 27px, 0); }
70% { clip: rect(28px, 9999px, 99px, 0); }
75% { clip: rect(45px, 9999px, 69px, 0); }
80% { clip: rect(23px, 9999px, 85px, 0); }
85% { clip: rect(54px, 9999px, 84px, 0); }
90% { clip: rect(45px, 9999px, 47px, 0); }
95% { clip: rect(37px, 9999px, 20px, 0); }
100% { clip: rect(4px, 9999px, 91px, 0); }
}
@keyframes thw-glitch-2 {
0% { clip: rect(65px, 9999px, 100px, 0); }
5% { clip: rect(52px, 9999px, 74px, 0); }
10% { clip: rect(79px, 9999px, 85px, 0); }
15% { clip: rect(75px, 9999px, 5px, 0); }
20% { clip: rect(67px, 9999px, 61px, 0); }
25% { clip: rect(14px, 9999px, 79px, 0); }
30% { clip: rect(1px, 9999px, 66px, 0); }
35% { clip: rect(86px, 9999px, 30px, 0); }
40% { clip: rect(23px, 9999px, 98px, 0); }
45% { clip: rect(85px, 9999px, 72px, 0); }
50% { clip: rect(71px, 9999px, 75px, 0); }
55% { clip: rect(2px, 9999px, 48px, 0); }
60% { clip: rect(30px, 9999px, 16px, 0); }
65% { clip: rect(59px, 9999px, 50px, 0); }
70% { clip: rect(41px, 9999px, 62px, 0); }
75% { clip: rect(2px, 9999px, 82px, 0); }
80% { clip: rect(47px, 9999px, 73px, 0); }
85% { clip: rect(3px, 9999px, 27px, 0); }
90% { clip: rect(26px, 9999px, 55px, 0); }
95% { clip: rect(42px, 9999px, 97px, 0); }
100% { clip: rect(38px, 9999px, 49px, 0); }
} body.thw-premium .thw-home-layout {
display: grid;
grid-template-columns: 1fr 340px;
gap: var(--thw-space-10);
}
@media (max-width: 1024px) {
body.thw-premium .thw-home-layout {
grid-template-columns: 1fr;
}
}
body.thw-premium .thw-home-section {
margin-bottom: var(--thw-space-12);
} body.thw-premium .thw-category-posts {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--thw-space-4);
}
body.thw-premium .thw-cat-featured {
grid-row: span 3;
background: var(--thw-bg-card);
border: 1px solid var(--thw-border-subtle);
border-radius: var(--thw-radius-lg);
overflow: hidden;
transition: all 0.3s var(--thw-ease-out);
}
body.thw-premium .thw-cat-featured:hover {
border-color: var(--thw-border-hover);
box-shadow: var(--thw-shadow-md);
}
body.thw-premium .thw-cat-featured-image {
height: 200px;
overflow: hidden;
}
body.thw-premium .thw-cat-featured-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s var(--thw-ease-out);
}
body.thw-premium .thw-cat-featured:hover .thw-cat-featured-image img {
transform: scale(1.05);
}
body.thw-premium .thw-cat-featured-content {
padding: var(--thw-space-5);
}
body.thw-premium .thw-cat-featured-title {
font-family: var(--thw-font-display);
font-size: 1.1rem;
font-weight: 600;
line-height: 1.4;
margin-bottom: var(--thw-space-3);
}
body.thw-premium .thw-cat-featured-title a {
color: var(--thw-text-bright);
}
body.thw-premium .thw-cat-featured-title a:hover {
color: var(--thw-accent-primary);
}
body.thw-premium .thw-cat-featured-excerpt {
color: var(--thw-text-secondary);
font-size: 0.9rem;
line-height: 1.6;
margin-bottom: var(--thw-space-3);
} body.thw-premium .thw-cat-list-item {
display: flex;
gap: var(--thw-space-3);
padding: var(--thw-space-3);
background: var(--thw-bg-card);
border: 1px solid var(--thw-border-subtle);
border-radius: var(--thw-radius-md);
transition: all 0.2s var(--thw-ease-out);
}
body.thw-premium .thw-cat-list-item:hover {
background: var(--thw-bg-elevated);
border-color: var(--thw-border-hover);
}
body.thw-premium .thw-cat-list-thumb {
width: 80px;
height: 60px;
flex-shrink: 0;
border-radius: var(--thw-radius-sm);
overflow: hidden;
}
body.thw-premium .thw-cat-list-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
}
body.thw-premium .thw-cat-list-title {
font-size: 0.9rem;
font-weight: 500;
line-height: 1.4;
margin-bottom: var(--thw-space-1);
}
body.thw-premium .thw-cat-list-title a {
color: var(--thw-text-primary);
}
body.thw-premium .thw-cat-list-title a:hover {
color: var(--thw-accent-primary);
} body.thw-premium .thw-cat-indicator {
display: inline-block;
width: 8px;
height: 8px;
border-radius: var(--thw-radius-full);
margin-right: var(--thw-space-2);
} body.thw-premium .thw-tools-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
gap: var(--thw-space-4);
} body.thw-premium .thw-sidebar-section {
background: var(--thw-bg-card);
border: 1px solid var(--thw-border-subtle);
border-radius: var(--thw-radius-lg);
padding: var(--thw-space-5);
margin-bottom: var(--thw-space-6);
}
body.thw-premium .thw-sidebar-title {
font-family: var(--thw-font-display);
font-size: 1rem;
font-weight: 600;
color: var(--thw-text-bright);
margin-bottom: var(--thw-space-4);
display: flex;
align-items: center;
gap: var(--thw-space-2);
}
body.thw-premium .thw-trending-icon {
font-size: 1.25rem;
}
body.thw-premium .thw-trending-posts {
display: flex;
flex-direction: column;
}
body.thw-premium .thw-trending-views {
font-family: var(--thw-font-mono);
font-size: 0.75rem;
color: var(--thw-text-muted);
} body.thw-premium .thw-social-buttons {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: var(--thw-space-3);
} body.thw-premium .thw-posts-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--thw-space-6);
}
body.thw-premium .thw-posts-grid-2 {
grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1024px) {
body.thw-premium .thw-posts-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
body.thw-premium .thw-posts-grid,
body.thw-premium .thw-posts-grid-2 {
grid-template-columns: 1fr;
}
body.thw-premium .thw-category-posts {
grid-template-columns: 1fr;
}
body.thw-premium .thw-cat-featured {
grid-row: auto;
}
} body.thw-premium ::selection {
background: rgba(0, 212, 255, 0.3);
color: var(--thw-text-bright);
}
body.thw-premium ::-moz-selection {
background: rgba(0, 212, 255, 0.3);
color: var(--thw-text-bright);
} body.thw-premium *:focus-visible {
outline: 2px solid var(--thw-accent-primary);
outline-offset: 2px;
}
body.thw-premium button:focus-visible,
body.thw-premium a:focus-visible {
outline: 2px solid var(--thw-accent-primary);
outline-offset: 2px;
} body.thw-premium .thw-skip-link {
position: absolute;
top: -100%;
left: 50%;
transform: translateX(-50%);
padding: var(--thw-space-3) var(--thw-space-6);
background: var(--thw-accent-primary);
color: var(--thw-bg-void);
font-weight: 600;
border-radius: var(--thw-radius-md);
z-index: 10001;
transition: top 0.3s var(--thw-ease-out);
}
body.thw-premium .thw-skip-link:focus {
top: var(--thw-space-4);
} body.thw-premium .thw-threat-ticker-bar {
background: linear-gradient(90deg, var(--thw-bg-deep) 0%, rgba(0, 212, 255, 0.05) 50%, var(--thw-bg-deep) 100%);
border-bottom: 1px solid var(--thw-border-subtle);
padding: var(--thw-space-3) 0;
}
body.thw-premium .thw-threat-ticker-inner {
display: flex;
align-items: center;
justify-content: center;
gap: var(--thw-space-8);
flex-wrap: wrap;
}
body.thw-premium .thw-threat-stat {
display: flex;
align-items: center;
gap: var(--thw-space-2);
}
body.thw-premium .thw-threat-label {
font-size: 0.75rem;
color: var(--thw-text-muted);
text-transform: uppercase;
letter-spacing: 0.05em;
}
body.thw-premium .thw-threat-value {
font-family: var(--thw-font-mono);
font-size: 1rem;
font-weight: 600;
color: var(--thw-accent-primary);
}
body.thw-premium .thw-threat-critical {
color: #ef4444;
animation: thw-pulse-red 2s ease-in-out infinite;
}
@keyframes thw-pulse-red {
0%, 100% { opacity: 1; }
50% { opacity: 0.6; }
}
body.thw-premium .thw-threat-status {
display: flex;
align-items: center;
gap: var(--thw-space-2);
font-size: 0.75rem;
color: var(--thw-text-muted);
}
body.thw-premium .thw-status-dot {
width: 8px;
height: 8px;
background: var(--thw-accent-tertiary);
border-radius: var(--thw-radius-full);
animation: thw-pulse-green 1.5s ease-in-out infinite;
box-shadow: 0 0 8px rgba(6, 255, 165, 0.5);
}
@keyframes thw-pulse-green {
0%, 100% { 
opacity: 1;
transform: scale(1);
}
50% { 
opacity: 0.5;
transform: scale(0.8);
}
}
@media (max-width: 768px) {
body.thw-premium .thw-threat-ticker-inner {
gap: var(--thw-space-4);
}
body.thw-premium .thw-threat-stat {
flex-direction: column;
gap: 0;
}
body.thw-premium .thw-threat-label {
font-size: 0.65rem;
}
body.thw-premium .thw-threat-value {
font-size: 0.9rem;
}
} @media (max-width: 768px) {
body.thw-premium .thw-menu-toggle {
display: flex;
align-items: center;
justify-content: center;
width: 44px;
height: 44px;
background: var(--thw-bg-elevated);
border: 1px solid var(--thw-border-subtle);
border-radius: var(--thw-radius-md);
color: var(--thw-text-secondary);
}
body.thw-premium .thw-nav {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: var(--thw-bg-void);
z-index: 9999;
display: flex;
flex-direction: column;
padding: var(--thw-space-6);
transform: translateX(-100%);
transition: transform 0.3s var(--thw-ease-out);
}
body.thw-premium .thw-nav.active {
transform: translateX(0);
}
body.thw-premium .thw-nav-menu {
flex-direction: column;
gap: 0;
}
body.thw-premium .thw-nav-menu > li > a {
display: block;
padding: var(--thw-space-4);
font-size: 1.25rem;
border-bottom: 1px solid var(--thw-border-subtle);
}
body.thw-premium .thw-nav-menu > li > a::after {
display: none;
}
body.thw-premium .thw-nav-menu .sub-menu {
position: static;
opacity: 1;
visibility: visible;
transform: none;
background: transparent;
border: none;
padding-left: var(--thw-space-4);
box-shadow: none;
}
} body.thw-premium .thw-search-form {
background: var(--thw-glass-bg);
backdrop-filter: var(--thw-glass-blur);
border: 1px solid var(--thw-glass-border);
border-radius: var(--thw-radius-lg);
padding: var(--thw-space-4);
box-shadow: var(--thw-shadow-lg);
}
body.thw-premium .thw-search-input {
background: var(--thw-bg-elevated);
border: 1px solid var(--thw-border-default);
border-radius: var(--thw-radius-md);
color: var(--thw-text-primary);
padding: var(--thw-space-3) var(--thw-space-4);
transition: all 0.2s var(--thw-ease-out);
}
body.thw-premium .thw-search-input:focus {
outline: none;
border-color: var(--thw-accent-primary);
box-shadow: 0 0 0 3px var(--thw-accent-glow);
}
body.thw-premium .thw-search-submit {
background: var(--thw-gradient-primary);
border: none;
border-radius: var(--thw-radius-md);
color: var(--thw-bg-void);
padding: var(--thw-space-3);
transition: all 0.2s var(--thw-ease-out);
}
body.thw-premium .thw-search-submit:hover {
box-shadow: var(--thw-shadow-glow);
} body.thw-premium .thw-header-top {
background: var(--thw-bg-deep);
border-bottom: 1px solid var(--thw-border-subtle);
padding: var(--thw-space-2) 0;
}
body.thw-premium .thw-header-date {
font-family: var(--thw-font-mono);
font-size: 0.75rem;
color: var(--thw-text-muted);
}
body.thw-premium .thw-social-links {
display: flex;
gap: var(--thw-space-3);
}
body.thw-premium .thw-social-links a {
color: var(--thw-text-muted);
transition: color 0.2s var(--thw-ease-out);
}
body.thw-premium .thw-social-links a:hover {
color: var(--thw-accent-primary);
} body.thw-premium .thw-pagination {
display: flex;
justify-content: center;
gap: var(--thw-space-2);
margin-top: var(--thw-space-10);
}
body.thw-premium .thw-pagination a,
body.thw-premium .thw-pagination span {
display: flex;
align-items: center;
justify-content: center;
min-width: 44px;
height: 44px;
padding: 0 var(--thw-space-3);
background: var(--thw-bg-card);
border: 1px solid var(--thw-border-subtle);
border-radius: var(--thw-radius-md);
color: var(--thw-text-secondary);
font-weight: 500;
transition: all 0.2s var(--thw-ease-out);
}
body.thw-premium .thw-pagination a:hover {
background: var(--thw-bg-elevated);
border-color: var(--thw-border-hover);
color: var(--thw-accent-primary);
}
body.thw-premium .thw-pagination .current {
background: var(--thw-accent-primary);
border-color: var(--thw-accent-primary);
color: var(--thw-bg-void);
} body.thw-premium .thw-post-body {
font-size: 1.1rem;
line-height: 1.85;
color: var(--thw-text-primary);
}
body.thw-premium .thw-post-body h2 {
font-family: var(--thw-font-display);
font-size: 1.75rem;
font-weight: 600;
margin-top: var(--thw-space-10);
margin-bottom: var(--thw-space-4);
padding-bottom: var(--thw-space-3);
border-bottom: 1px solid var(--thw-border-subtle);
color: var(--thw-text-bright);
}
body.thw-premium .thw-post-body h3 {
font-family: var(--thw-font-display);
font-size: 1.35rem;
font-weight: 600;
margin-top: var(--thw-space-8);
margin-bottom: var(--thw-space-3);
color: var(--thw-text-bright);
}
body.thw-premium .thw-post-body p {
margin-bottom: var(--thw-space-5);
}
body.thw-premium .thw-post-body a {
color: var(--thw-accent-primary);
text-decoration: underline;
text-decoration-color: rgba(0, 212, 255, 0.3);
text-underline-offset: 3px;
transition: all 0.2s var(--thw-ease-out);
}
body.thw-premium .thw-post-body a:hover {
text-decoration-color: var(--thw-accent-primary);
}
body.thw-premium .thw-post-body blockquote {
margin: var(--thw-space-6) 0;
padding: var(--thw-space-5) var(--thw-space-6);
background: var(--thw-bg-card);
border-left: 4px solid var(--thw-accent-primary);
border-radius: 0 var(--thw-radius-md) var(--thw-radius-md) 0;
font-style: italic;
color: var(--thw-text-secondary);
}
body.thw-premium .thw-post-body pre {
margin: var(--thw-space-6) 0;
padding: var(--thw-space-5);
background: var(--thw-bg-card);
border: 1px solid var(--thw-border-subtle);
border-radius: var(--thw-radius-lg);
overflow-x: auto;
}
body.thw-premium .thw-post-body code {
font-family: var(--thw-font-mono);
font-size: 0.9em;
padding: 0.2em 0.4em;
background: var(--thw-bg-elevated);
border-radius: var(--thw-radius-sm);
color: var(--thw-accent-primary);
}
body.thw-premium .thw-post-body pre code {
padding: 0;
background: transparent;
color: var(--thw-text-primary);
}
body.thw-premium .thw-post-body ul,
body.thw-premium .thw-post-body ol {
margin: var(--thw-space-5) 0;
padding-left: var(--thw-space-6);
}
body.thw-premium .thw-post-body li {
margin-bottom: var(--thw-space-2);
}
body.thw-premium .thw-post-body img {
border-radius: var(--thw-radius-lg);
margin: var(--thw-space-6) 0;
}
body.thw-premium .thw-post-body figure {
margin: var(--thw-space-6) 0;
}
body.thw-premium .thw-post-body figcaption {
text-align: center;
font-size: 0.9rem;
color: var(--thw-text-muted);
margin-top: var(--thw-space-2);
} body.thw-premium .thw-single-featured {
margin-bottom: var(--thw-space-8);
border-radius: var(--thw-radius-xl);
overflow: hidden;
border: 1px solid var(--thw-border-subtle);
position: relative;
}
body.thw-premium .thw-single-featured::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(180deg, transparent 70%, var(--thw-bg-void) 100%);
pointer-events: none;
}
body.thw-premium .thw-single-featured img {
width: 100%;
height: auto;
display: block;
} body.thw-premium .thw-related-posts {
margin-top: var(--thw-space-12);
padding-top: var(--thw-space-8);
border-top: 1px solid var(--thw-border-subtle);
}
body.thw-premium .thw-related-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--thw-space-6);
}
@media (max-width: 768px) {
body.thw-premium .thw-related-grid {
grid-template-columns: 1fr;
}
} body.thw-premium .thw-archive-header {
margin-bottom: var(--thw-space-10);
padding-bottom: var(--thw-space-6);
border-bottom: 1px solid var(--thw-border-subtle);
}
body.thw-premium .thw-archive-title {
font-family: var(--thw-font-display);
font-size: clamp(1.75rem, 4vw, 2.5rem);
font-weight: 700;
color: var(--thw-text-bright);
margin-bottom: var(--thw-space-3);
}
body.thw-premium .thw-archive-description {
color: var(--thw-text-secondary);
font-size: 1.1rem;
max-width: 600px;
} body.thw-premium .thw-breadcrumbs {
display: flex;
align-items: center;
gap: var(--thw-space-2);
font-size: 0.85rem;
color: var(--thw-text-muted);
margin-bottom: var(--thw-space-6);
}
body.thw-premium .thw-breadcrumbs a {
color: var(--thw-text-secondary);
}
body.thw-premium .thw-breadcrumbs a:hover {
color: var(--thw-accent-primary);
}
body.thw-premium .thw-breadcrumbs .separator {
color: var(--thw-text-dim);
} body.thw-premium .thw-new-badge {
display: inline-flex;
align-items: center;
padding: 2px 8px;
background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
color: white;
font-size: 0.6rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.05em;
border-radius: var(--thw-radius-full);
margin-left: var(--thw-space-2);
animation: thw-pulse-badge 2s ease-in-out infinite;
}
@keyframes thw-pulse-badge {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.05); }
} body.thw-premium .thw-threat-level {
display: inline-flex;
align-items: center;
padding: 4px 12px;
font-size: 0.7rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.05em;
border-radius: var(--thw-radius-full);
}
body.thw-premium .thw-threat-level.critical {
background: rgba(239, 68, 68, 0.15);
color: #ef4444;
border: 1px solid rgba(239, 68, 68, 0.3);
}
body.thw-premium .thw-threat-level.high {
background: rgba(249, 115, 22, 0.15);
color: #f97316;
border: 1px solid rgba(249, 115, 22, 0.3);
}
body.thw-premium .thw-threat-level.medium {
background: rgba(234, 179, 8, 0.15);
color: #eab308;
border: 1px solid rgba(234, 179, 8, 0.3);
}
body.thw-premium .thw-threat-level.low {
background: rgba(34, 197, 94, 0.15);
color: #22c55e;
border: 1px solid rgba(34, 197, 94, 0.3);
} body.thw-premium .thw-gradient-text {
background: var(--thw-gradient-primary);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
body.thw-premium .thw-glow {
box-shadow: var(--thw-shadow-glow);
}
body.thw-premium .thw-glass {
background: var(--thw-glass-bg);
backdrop-filter: var(--thw-glass-blur);
-webkit-backdrop-filter: var(--thw-glass-blur);
border: 1px solid var(--thw-glass-border);
} body.thw-premium .thw-skeleton {
background: linear-gradient(90deg, 
var(--thw-bg-card) 25%, 
var(--thw-bg-elevated) 50%, 
var(--thw-bg-card) 75%);
background-size: 200% 100%;
animation: thw-skeleton-loading 1.5s ease-in-out infinite;
border-radius: var(--thw-radius-md);
}
@keyframes thw-skeleton-loading {
0% { background-position: 200% 0; }
100% { background-position: -200% 0; }
} @media print {
body.thw-premium {
background: white;
color: black;
}
body.thw-premium .thw-header,
body.thw-premium .thw-footer,
body.thw-premium .thw-sidebar,
body.thw-premium .thw-back-to-top,
body.thw-premium .thw-theme-toggle,
body.thw-premium .thw-bottom-nav,
body.thw-premium .thw-threat-ticker-bar {
display: none !important;
}
body.thw-premium .thw-post-card,
body.thw-premium .thw-hero-card {
break-inside: avoid;
box-shadow: none;
border: 1px solid #ddd;
}
}