/*
Theme Name: Twenty Twenty-Five - LinuxMan Premium
Theme URI: https://wordpress.org/themes/twentytwentyfive/
Author: LinuxMan Design Team
Author URI: https://vlog.tion.co.kr
Description: Premium professional design for Linux experts. Features modern gradient UI, sophisticated typography, smooth animations, and responsive card-based layouts. Optimized for technical blogs and professional portfolios.
Requires at least: 6.7
Tested up to: 6.8
Requires PHP: 7.2
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyfive
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news, premium, gradient, modern
*/

/*
 * Link styles
 * https://github.com/WordPress/gutenberg/issues/42319
 */
a {
	text-decoration-thickness: 1px !important;
	text-underline-offset: .1em;
}

/* Focus styles */
:where(.wp-site-blocks *:focus) {
	outline-width: 2px;
	outline-style: solid;
}

/* Increase the bottom margin on submenus, so that the outline is visible. */
.wp-block-navigation .wp-block-navigation-submenu .wp-block-navigation-item:not(:last-child) {
	margin-bottom: 3px;
}

/* Increase the outline offset on the parent menu items, so that the outline does not touch the text. */
.wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content {
	outline-offset: 4px;
}

/* Remove outline offset from the submenus, otherwise the outline is visible outside the submenu container. */
.wp-block-navigation .wp-block-navigation-item ul.wp-block-navigation__submenu-container .wp-block-navigation-item__content {
	outline-offset: 0;
}

/*
 * Progressive enhancement to reduce widows and orphans
 * https://github.com/WordPress/gutenberg/issues/55190
 */
h1, h2, h3, h4, h5, h6, blockquote, caption, figcaption, p {
	text-wrap: pretty;
}

/*
 * Change the position of the more block on the front, by making it a block level element.
 * https://github.com/WordPress/gutenberg/issues/65934
*/
.more-link {
	display: block;
}

/* ============================================
   LINUXMAN - Premium Professional Design
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Fira+Code:wght@400;500;600&family=Noto+Sans+KR:wght@300;400;500;700;900&family=Noto+Serif+KR:wght@400;600;700&display=swap');

/* Design System Variables */
:root {
	/* Premium Color Palette */
	--lm-primary: #0f172a;
	--lm-primary-light: #1e293b;
	--lm-accent: #3b82f6;
	--lm-accent-dark: #2563eb;
	--lm-accent-light: #60a5fa;
	--lm-success: #10b981;
	--lm-warning: #f59e0b;
	--lm-danger: #ef4444;

	/* Gradient Colors */
	--lm-gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	--lm-gradient-2: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
	--lm-gradient-3: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
	--lm-gradient-premium: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);

	/* Text Colors */
	--lm-text-primary: #0f172a;
	--lm-text-secondary: #475569;
	--lm-text-muted: #94a3b8;
	--lm-text-white: #ffffff;

	/* Background Colors */
	--lm-bg-primary: #ffffff;
	--lm-bg-secondary: #f8fafc;
	--lm-bg-tertiary: #f1f5f9;
	--lm-bg-dark: #0f172a;

	/* Border Colors */
	--lm-border-light: #e2e8f0;
	--lm-border-medium: #cbd5e1;
	--lm-border-dark: #64748b;

	/* Shadows */
	--lm-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--lm-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--lm-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--lm-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	--lm-shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	--lm-shadow-premium: 0 25px 50px -12px rgba(102, 126, 234, 0.25);

	/* Spacing */
	--lm-space-xs: 0.5rem;
	--lm-space-sm: 1rem;
	--lm-space-md: 1.5rem;
	--lm-space-lg: 2rem;
	--lm-space-xl: 3rem;
	--lm-space-2xl: 4rem;

	/* Border Radius */
	--lm-radius-sm: 0.375rem;
	--lm-radius: 0.5rem;
	--lm-radius-md: 0.75rem;
	--lm-radius-lg: 1rem;
	--lm-radius-xl: 1.5rem;

	/* Typography */
	--lm-font-primary: 'Inter', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
	--lm-font-heading: 'Poppins', 'Noto Sans KR', sans-serif;
	--lm-font-serif: 'Noto Serif KR', Georgia, serif;
	--lm-font-mono: 'Fira Code', 'Consolas', monospace;

	/* Transitions */
	--lm-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--lm-transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Styles */
* {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	font-family: var(--lm-font-primary) !important;
	font-size: 16px !important;
	line-height: 1.7 !important;
	color: var(--lm-text-primary) !important;
	background: var(--lm-bg-secondary) !important;
	overflow-x: hidden !important;
}

/* ============================
   PREMIUM HEADER & NAVIGATION
   ============================ */
.wp-block-group.alignfull:first-child {
	background: var(--lm-gradient-3) !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
	backdrop-filter: blur(20px) !important;
	position: sticky !important;
	top: 0 !important;
	z-index: 1000 !important;
	box-shadow: var(--lm-shadow-lg) !important;
}

.linuxman-main-title,
.wp-block-site-title a {
	font-family: var(--lm-font-heading) !important;
	font-weight: 800 !important;
	font-size: clamp(1.5rem, 3vw, 2rem) !important;
	background: var(--lm-gradient-premium) !important;
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
	background-clip: text !important;
	letter-spacing: -0.02em !important;
	position: relative !important;
	display: inline-block !important;
	padding: 0 !important;
	border: none !important;
	transition: var(--lm-transition) !important;
}

.linuxman-main-title:hover,
.wp-block-site-title a:hover {
	transform: scale(1.02) !important;
	filter: brightness(1.2) !important;
}

/* ============================
   PREMIUM TYPOGRAPHY
   ============================ */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--lm-font-heading) !important;
	color: var(--lm-text-primary) !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	letter-spacing: -0.02em !important;
	margin-bottom: var(--lm-space-md) !important;
}

h1 {
	font-size: clamp(2rem, 5vw, 3.5rem) !important;
	font-weight: 800 !important;
	margin-top: var(--lm-space-xl) !important;
	background: var(--lm-gradient-2) !important;
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
	background-clip: text !important;
	position: relative !important;
	padding-bottom: var(--lm-space-sm) !important;
}

h1::after {
	content: '' !important;
	position: absolute !important;
	bottom: 0 !important;
	left: 0 !important;
	width: 60px !important;
	height: 4px !important;
	background: var(--lm-gradient-1) !important;
	border-radius: var(--lm-radius) !important;
}

h2 {
	font-size: clamp(1.5rem, 4vw, 2.5rem) !important;
	margin-top: var(--lm-space-lg) !important;
	color: var(--lm-primary) !important;
	position: relative !important;
	padding-left: var(--lm-space-sm) !important;
}

h2::before {
	content: '' !important;
	position: absolute !important;
	left: 0 !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	width: 4px !important;
	height: 70% !important;
	background: var(--lm-gradient-1) !important;
	border-radius: var(--lm-radius) !important;
}

h3 {
	font-size: clamp(1.25rem, 3vw, 2rem) !important;
	margin-top: var(--lm-space-lg) !important;
	color: var(--lm-primary-light) !important;
}

h4 {
	font-size: clamp(1.125rem, 2.5vw, 1.5rem) !important;
	color: var(--lm-text-secondary) !important;
}

p {
	margin-bottom: var(--lm-space-md) !important;
	color: var(--lm-text-secondary) !important;
	line-height: 1.8 !important;
}

/* ============================
   PREMIUM LAYOUT
   ============================ */
.wp-block-group {
	max-width: 1280px !important;
	padding-left: var(--lm-space-md) !important;
	padding-right: var(--lm-space-md) !important;
}

main {
	background: transparent !important;
	padding: var(--lm-space-2xl) 0 !important;
	margin-bottom: 0 !important;
	box-shadow: none !important;
}

/* ============================
   PREMIUM CARD DESIGN
   ============================ */
article {
	background: var(--lm-bg-primary) !important;
	border-radius: var(--lm-radius-lg) !important;
	padding: var(--lm-space-xl) !important;
	margin-bottom: var(--lm-space-xl) !important;
	border: 1px solid var(--lm-border-light) !important;
	box-shadow: var(--lm-shadow) !important;
	transition: var(--lm-transition) !important;
	position: relative !important;
	overflow: hidden !important;
}

article::before {
	content: '' !important;
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 4px !important;
	background: var(--lm-gradient-1) !important;
	transform: scaleX(0) !important;
	transform-origin: left !important;
	transition: var(--lm-transition) !important;
}

article:hover {
	box-shadow: var(--lm-shadow-premium) !important;
	transform: translateY(-4px) !important;
	border-color: rgba(102, 126, 234, 0.2) !important;
}

article:hover::before {
	transform: scaleX(1) !important;
}

article:last-child {
	margin-bottom: 0 !important;
}

/* ============================
   POST TITLE & ENTRY
   ============================ */
.entry-title,
.wp-block-post-title {
	font-family: var(--lm-font-heading) !important;
	font-size: clamp(1.5rem, 3vw, 2rem) !important;
	font-weight: 700 !important;
	line-height: 1.3 !important;
	margin-bottom: var(--lm-space-md) !important;
	color: var(--lm-text-primary) !important;
}

.entry-title a,
.wp-block-post-title a {
	color: var(--lm-text-primary) !important;
	text-decoration: none !important;
	transition: var(--lm-transition) !important;
	display: inline-block !important;
	position: relative !important;
}

.entry-title a::after,
.wp-block-post-title a::after {
	content: '' !important;
	position: absolute !important;
	bottom: -4px !important;
	left: 0 !important;
	width: 0 !important;
	height: 2px !important;
	background: var(--lm-gradient-1) !important;
	transition: var(--lm-transition) !important;
}

.entry-title a:hover,
.wp-block-post-title a:hover {
	background: var(--lm-gradient-1) !important;
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
	background-clip: text !important;
	transform: translateX(4px) !important;
}

.entry-title a:hover::after,
.wp-block-post-title a:hover::after {
	width: 100% !important;
}

/* ============================
   PREMIUM NAVIGATION
   ============================ */
.wp-block-navigation {
	font-family: var(--lm-font-primary) !important;
}

.wp-block-navigation a {
	font-family: var(--lm-font-primary) !important;
	font-weight: 500 !important;
	font-size: 0.9375rem !important;
	color: rgba(255, 255, 255, 0.9) !important;
	text-decoration: none !important;
	padding: 0.5rem 1rem !important;
	border-radius: var(--lm-radius) !important;
	transition: var(--lm-transition-fast) !important;
	position: relative !important;
}

.wp-block-navigation a::before {
	content: '' !important;
	position: absolute !important;
	bottom: 0 !important;
	left: 50% !important;
	transform: translateX(-50%) !important;
	width: 0 !important;
	height: 2px !important;
	background: var(--lm-gradient-premium) !important;
	transition: var(--lm-transition) !important;
}

.wp-block-navigation a:hover {
	background: rgba(255, 255, 255, 0.1) !important;
	color: #ffffff !important;
}

.wp-block-navigation a:hover::before {
	width: 80% !important;
}

/* ============================
   PREMIUM CONTENT BLOCKS
   ============================ */
blockquote {
	background: var(--lm-bg-tertiary) !important;
	border-left: 4px solid var(--lm-accent) !important;
	border-radius: 0 var(--lm-radius-md) var(--lm-radius-md) 0 !important;
	padding: var(--lm-space-lg) !important;
	margin: var(--lm-space-xl) 0 !important;
	font-style: italic !important;
	color: var(--lm-text-secondary) !important;
	position: relative !important;
	box-shadow: var(--lm-shadow-sm) !important;
}

blockquote::before {
	content: '"' !important;
	position: absolute !important;
	top: -10px !important;
	left: 20px !important;
	font-size: 4rem !important;
	font-family: Georgia, serif !important;
	color: var(--lm-accent) !important;
	opacity: 0.2 !important;
	line-height: 1 !important;
}

code {
	font-family: var(--lm-font-mono) !important;
	background: var(--lm-bg-tertiary) !important;
	color: var(--lm-accent-dark) !important;
	padding: 0.25em 0.5em !important;
	border-radius: var(--lm-radius-sm) !important;
	font-size: 0.875em !important;
	font-weight: 500 !important;
	border: 1px solid var(--lm-border-light) !important;
}

pre {
	font-family: var(--lm-font-mono) !important;
	background: var(--lm-primary) !important;
	color: #e2e8f0 !important;
	padding: var(--lm-space-lg) !important;
	border-radius: var(--lm-radius-md) !important;
	overflow-x: auto !important;
	margin: var(--lm-space-xl) 0 !important;
	border-left: 4px solid var(--lm-accent) !important;
	box-shadow: var(--lm-shadow-md) !important;
	position: relative !important;
}

pre code {
	background: transparent !important;
	color: inherit !important;
	padding: 0 !important;
	border: none !important;
	font-size: 0.875rem !important;
}

/* ============================
   PREMIUM BUTTONS
   ============================ */
.wp-block-button__link,
.wp-element-button {
	font-family: var(--lm-font-primary) !important;
	font-weight: 600 !important;
	font-size: 1rem !important;
	background: var(--lm-gradient-2) !important;
	color: #ffffff !important;
	padding: 0.875rem 2rem !important;
	border-radius: var(--lm-radius-md) !important;
	border: none !important;
	box-shadow: var(--lm-shadow-md) !important;
	transition: var(--lm-transition) !important;
	position: relative !important;
	overflow: hidden !important;
	text-decoration: none !important;
	display: inline-block !important;
}

.wp-block-button__link::before,
.wp-element-button::before {
	content: '' !important;
	position: absolute !important;
	top: 50% !important;
	left: 50% !important;
	width: 0 !important;
	height: 0 !important;
	border-radius: 50% !important;
	background: rgba(255, 255, 255, 0.3) !important;
	transform: translate(-50%, -50%) !important;
	transition: width 0.6s, height 0.6s !important;
}

.wp-block-button__link:hover,
.wp-element-button:hover {
	transform: translateY(-2px) !important;
	box-shadow: var(--lm-shadow-lg) !important;
}

.wp-block-button__link:hover::before,
.wp-element-button:hover::before {
	width: 300px !important;
	height: 300px !important;
}

/* ============================
   ARCHIVE & CATEGORY PAGES
   ============================ */
.archive .page-header,
.category .page-header,
.tag .page-header {
	background: var(--lm-gradient-2) !important;
	color: white !important;
	padding: var(--lm-space-2xl) !important;
	margin-bottom: var(--lm-space-2xl) !important;
	border-radius: var(--lm-radius-xl) !important;
	box-shadow: var(--lm-shadow-lg) !important;
	position: relative !important;
	overflow: hidden !important;
}

.archive .page-header::before,
.category .page-header::before,
.tag .page-header::before {
	content: '' !important;
	position: absolute !important;
	top: -50% !important;
	right: -10% !important;
	width: 400px !important;
	height: 400px !important;
	background: rgba(255, 255, 255, 0.05) !important;
	border-radius: 50% !important;
}

.archive .page-title,
.category .page-title,
.tag .page-title {
	color: white !important;
	font-size: clamp(2rem, 4vw, 3rem) !important;
	font-weight: 800 !important;
	margin-bottom: var(--lm-space-sm) !important;
	position: relative !important;
	z-index: 1 !important;
}

/* ============================
   SINGLE POST PREMIUM DESIGN
   ============================ */
.linuxman-post-title,
.single .wp-block-post-title {
	margin-bottom: var(--lm-space-md) !important;
	background: var(--lm-gradient-2) !important;
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
	background-clip: text !important;
}

.linuxman-post-meta {
	background: var(--lm-bg-tertiary) !important;
	border: none !important;
	border-radius: var(--lm-radius-md) !important;
	padding: var(--lm-space-md) !important;
	gap: var(--lm-space-md) !important;
	box-shadow: var(--lm-shadow-sm) !important;
	margin-bottom: var(--lm-space-xl) !important;
}

.linuxman-post-meta > * {
	font-family: var(--lm-font-primary) !important;
	font-size: 0.875rem !important;
	color: var(--lm-text-secondary) !important;
	font-weight: 500 !important;
	display: inline-flex !important;
	align-items: center !important;
}

.linuxman-post-tags {
	border-top: none !important;
	padding: var(--lm-space-xl) 0 !important;
	margin-top: var(--lm-space-xl) !important;
	border-top: 1px solid var(--lm-border-light) !important;
}

.linuxman-post-tags a,
.wp-block-post-terms a {
	background: var(--lm-bg-tertiary) !important;
	padding: 0.5rem 1rem !important;
	border-radius: var(--lm-radius) !important;
	text-decoration: none !important;
	color: var(--lm-text-secondary) !important;
	transition: var(--lm-transition) !important;
	display: inline-block !important;
	font-size: 0.875rem !important;
	font-weight: 500 !important;
	border: 1px solid var(--lm-border-light) !important;
	margin: 0.25rem !important;
}

.linuxman-post-tags a:hover,
.wp-block-post-terms a:hover {
	background: var(--lm-gradient-1) !important;
	color: white !important;
	transform: translateY(-2px) !important;
	box-shadow: var(--lm-shadow-md) !important;
	border-color: transparent !important;
}

/* ============================
   FEATURED IMAGES
   ============================ */
.wp-block-post-featured-image {
	margin-bottom: var(--lm-space-xl) !important;
	border-radius: var(--lm-radius-lg) !important;
	overflow: hidden !important;
	box-shadow: var(--lm-shadow-md) !important;
}

.wp-block-post-featured-image img {
	transition: var(--lm-transition) !important;
	display: block !important;
}

.wp-block-post-featured-image:hover img {
	transform: scale(1.05) !important;
}

/* ============================
   PREMIUM FOOTER
   ============================ */
footer {
	background: var(--lm-gradient-3) !important;
	color: rgba(255, 255, 255, 0.8) !important;
	padding: var(--lm-space-2xl) 0 !important;
	margin-top: var(--lm-space-2xl) !important;
	border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
	position: relative !important;
}

footer::before {
	content: '' !important;
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	height: 1px !important;
	background: var(--lm-gradient-premium) !important;
}

footer a {
	color: rgba(255, 255, 255, 0.9) !important;
	text-decoration: none !important;
	transition: var(--lm-transition) !important;
}

footer a:hover {
	color: #ffffff !important;
	text-decoration: underline !important;
}

/* ============================
   PREMIUM POST CONTENT
   ============================ */
.wp-block-post-content {
	font-size: 1.0625rem !important;
	line-height: 1.8 !important;
}

.wp-block-post-content img {
	border-radius: var(--lm-radius-md) !important;
	box-shadow: var(--lm-shadow-md) !important;
	margin: var(--lm-space-xl) 0 !important;
}

.wp-block-post-content ul,
.wp-block-post-content ol {
	padding-left: var(--lm-space-lg) !important;
	margin: var(--lm-space-md) 0 !important;
}

.wp-block-post-content li {
	margin-bottom: var(--lm-space-sm) !important;
	color: var(--lm-text-secondary) !important;
}

/* ============================
   RESPONSIVE DESIGN
   ============================ */
@media (max-width: 1024px) {
	.wp-block-group {
		padding-left: var(--lm-space-sm) !important;
		padding-right: var(--lm-space-sm) !important;
	}
}

@media (max-width: 768px) {
	main {
		padding: var(--lm-space-xl) 0 !important;
	}

	article {
		padding: var(--lm-space-lg) !important;
		margin-bottom: var(--lm-space-lg) !important;
	}

	.linuxman-main-title,
	.wp-block-site-title a {
		font-size: 1.5rem !important;
	}

	h1 {
		font-size: 2rem !important;
	}

	h2 {
		font-size: 1.5rem !important;
	}

	.archive .page-header,
	.category .page-header,
	.tag .page-header {
		padding: var(--lm-space-xl) var(--lm-space-md) !important;
	}
}

@media (max-width: 480px) {
	article {
		padding: var(--lm-space-md) !important;
	}

	.wp-block-post-content {
		font-size: 1rem !important;
	}
}

/* ============================
   ANIMATIONS & MICRO-INTERACTIONS
   ============================ */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

article {
	animation: fadeInUp 0.6s ease-out !important;
}

article:nth-child(1) { animation-delay: 0.1s !important; }
article:nth-child(2) { animation-delay: 0.2s !important; }
article:nth-child(3) { animation-delay: 0.3s !important; }
article:nth-child(4) { animation-delay: 0.4s !important; }
article:nth-child(5) { animation-delay: 0.5s !important; }

/* Smooth Scrolling */
html {
	scroll-behavior: smooth !important;
}

/* Selection Color */
::selection {
	background: var(--lm-accent) !important;
	color: white !important;
}

::-moz-selection {
	background: var(--lm-accent) !important;
	color: white !important;
}

/* ========================================
   CUSTOM VLOG.TION.CO.KR STYLES
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --text-light: #f1f5f9;
    --text-gray: #cbd5e1;
    --text-muted: #64748b;
    --accent: #f97316;
    --accent-light: #fb923c;
}

body {
    font-family: 'Poppins', sans-serif !important;
    background: var(--bg-dark) !important;
    color: var(--text-light) !important;
}

.wp-site-blocks {
    background: var(--bg-dark) !important;
}

/* Container */
.wp-block-group__inner-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ========================================
   TOP BAR & NAVIGATION
   ======================================== */

.top-bar {
    background: rgba(15, 23, 42, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    font-size: 20px;
    font-weight: 800;
    color: var(--accent) !important;
}

.logo-icon {
    font-size: 28px;
}

/* Wide Container for Ads */
.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   SPONSOR BANNER SECTION
   ======================================== */

.sponsor-banner-section {
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 1) 0%, rgba(30, 41, 59, 1) 50%, rgba(15, 23, 42, 1) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.sponsor-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.sponsor-banner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.sponsor-label {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #0f172a;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.4);
}

.sponsor-content {
    background: var(--bg-card);
    border: 3px solid rgba(249, 115, 22, 0.2);
    border-radius: 16px;
    padding: 30px 40px;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.sponsor-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05), rgba(59, 130, 246, 0.05));
    pointer-events: none;
}

.sponsor-placeholder {
    padding: 80px 120px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 3px dashed rgba(249, 115, 22, 0.3);
    border-radius: 12px;
    color: var(--text-muted);
    font-size: 20px;
    font-weight: 700;
    width: 100%;
    text-align: center;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* ========================================
   MAIN NAVIGATION
   ======================================== */

.main-nav-section {
    background: rgba(30, 41, 59, 0.95);
    border-bottom: 2px solid rgba(249, 115, 22, 0.2);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 900;
    backdrop-filter: blur(10px);
}

.wp-block-navigation {
    justify-content: center !important;
}

.wp-block-navigation__responsive-container-content .wp-block-navigation__container,
.wp-block-navigation .wp-block-navigation__container {
    gap: 8px !important;
}

.wp-block-navigation-item a {
    padding: 10px 20px !important;
    color: var(--text-gray) !important;
    text-decoration: none !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    transition: all 0.3s !important;
    background: rgba(255, 255, 255, 0.02) !important;
}

.wp-block-navigation-item a:hover {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(251, 146, 60, 0.2)) !important;
    color: var(--accent-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2) !important;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    min-height: 50vh;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(15, 23, 42, 1) 0%, rgba(30, 41, 59, 1) 100%);
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-title {
    font-size: 42px !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    margin-bottom: 20px !important;
}

.highlight {
    color: var(--accent) !important;
}

.hero-subtitle {
    font-size: 17px !important;
    color: var(--text-gray) !important;
}

/* ========================================
   POSTS GRID
   ======================================== */

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.post-card, 
.wp-block-post {
    background: var(--bg-card) !important;
    border-radius: 16px !important;
    overflow: hidden;
    transition: all 0.3s;
    border: 2px solid transparent !important;
}

.post-card:hover,
.wp-block-post:hover {
    transform: translateY(-8px);
    border-color: var(--accent) !important;
    box-shadow: 0 16px 48px rgba(249, 115, 22, 0.2) !important;
}

.wp-block-post-featured-image img {
    transition: transform 0.5s;
}

.wp-block-post:hover .wp-block-post-featured-image img {
    transform: scale(1.1);
}

.wp-block-post-title a {
    color: var(--text-light) !important;
    text-decoration: none !important;
    font-weight: 700 !important;
}

.wp-block-post-title a:hover {
    color: var(--accent) !important;
}

/* ========================================
   NSEO TAG
   ======================================== */

nseo {
    display: block;
    width: 100%;
    margin: 50px 0;
    padding: 0;
    clear: both;
    min-height: 1px;
    position: relative;
    z-index: 1;
}

/* ========================================
   BOTTOM AD SECTION
   ======================================== */

.bottom-ad-section {
    padding: 50px 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 1) 0%, rgba(30, 41, 59, 1) 50%, rgba(15, 23, 42, 1) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 60px;
    position: relative;
}

.bottom-ad-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.bottom-ad-banner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.bottom-ad-content {
    background: var(--bg-card);
    border: 3px solid rgba(249, 115, 22, 0.2);
    border-radius: 16px;
    padding: 30px 40px;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.bottom-ad-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05), rgba(59, 130, 246, 0.05));
    pointer-events: none;
}

.bottom-ad-placeholder {
    padding: 80px 120px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 3px dashed rgba(249, 115, 22, 0.3);
    border-radius: 12px;
    color: var(--text-muted);
    font-size: 20px;
    font-weight: 700;
    width: 100%;
    text-align: center;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* ========================================
   SINGLE POST PAGE
   ======================================== */

.single-ad-top {
    padding: 30px 0;
    background: rgba(30, 41, 59, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ad-zone-large {
    background: var(--bg-card);
    border: 3px solid rgba(249, 115, 22, 0.2);
    border-radius: 16px;
    padding: 30px 40px;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.ad-zone-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05), rgba(59, 130, 246, 0.05));
    pointer-events: none;
}

.ad-placeholder-large {
    padding: 80px 120px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 3px dashed rgba(249, 115, 22, 0.3);
    border-radius: 12px;
    color: var(--text-muted);
    font-size: 20px;
    font-weight: 700;
    width: 100%;
    text-align: center;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.wp-block-post-content {
    background: var(--bg-card) !important;
    padding: 50px !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
}

.wp-block-post-content h2 {
    color: var(--text-light) !important;
    font-size: 32px !important;
    padding-bottom: 12px !important;
    border-bottom: 2px solid rgba(249, 115, 22, 0.2) !important;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .sponsor-banner-section,
    .bottom-ad-section {
        padding: 24px 0;
    }

    .sponsor-content,
    .bottom-ad-content,
    .ad-zone-large {
        min-height: 200px;
        padding: 20px 24px;
    }

    .sponsor-placeholder,
    .bottom-ad-placeholder,
    .ad-placeholder-large {
        padding: 60px 40px;
        font-size: 16px;
    }

    .main-nav-section {
        position: relative;
    }

    .hero-section {
        min-height: 40vh;
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 32px !important;
    }

    .hero-subtitle {
        font-size: 15px !important;
    }

    .posts-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .sponsor-content,
    .bottom-ad-content,
    .ad-zone-large {
        min-height: 160px;
        padding: 16px 20px;
    }

    .sponsor-placeholder,
    .bottom-ad-placeholder,
    .ad-placeholder-large {
        padding: 50px 20px;
        font-size: 14px;
    }

    .hero-title {
        font-size: 26px !important;
    }
}

/* ========================================
   SCROLLBAR
   ======================================== */

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 6px;
}

::selection {
    background: var(--accent);
    color: white;
}

/* ========================================
   ONE-PAGE DESIGN
   ======================================== */

html {
    scroll-behavior: smooth;
}

/* Section spacing */
section {
    scroll-margin-top: 80px;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: rgba(30, 41, 59, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 40px !important;
    font-weight: 900 !important;
    margin-bottom: 16px !important;
    color: var(--text-light) !important;
}

.section-subtitle {
    font-size: 18px !important;
    color: var(--text-gray) !important;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.about-text h3 {
    color: var(--accent) !important;
    font-size: 28px !important;
    font-weight: 800 !important;
    margin: 30px 0 16px !important;
}

.about-text h3:first-child {
    margin-top: 0 !important;
}

.about-text p {
    color: var(--text-gray) !important;
    font-size: 16px !important;
    line-height: 1.8 !important;
    margin-bottom: 20px !important;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tech-stack-section {
    margin-top: 60px;
}

.tech-title {
    font-size: 32px !important;
    font-weight: 800 !important;
    text-align: center;
    margin-bottom: 40px !important;
    color: var(--text-light) !important;
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
}

/* Posts Section Styling */
.posts-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.posts-section .section-header {
    margin-bottom: 50px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 1) 0%, rgba(30, 41, 59, 1) 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-section .section-header {
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 1;
}

.contact-card {
    background: var(--bg-card);
    padding: 36px 28px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-card:hover {
    border-color: var(--accent) !important;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.2) !important;
}

.contact-icon {
    font-size: 48px;
}

.contact-label {
    font-size: 14px;
    color: var(--text-muted) !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 18px;
    color: var(--accent) !important;
    font-weight: 700;
}

/* Navigation active state */
.nav-menu-list a.active {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.3), rgba(251, 146, 60, 0.3)) !important;
    color: var(--accent) !important;
}

/* Responsive One-Page */
@media (max-width: 768px) {
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .tech-stack-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 12px;
    }

    .about-section,
    .posts-section,
    .contact-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px !important;
    }

    .section-subtitle {
        font-size: 16px !important;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-section,
    .posts-section,
    .contact-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 28px !important;
    }

    .about-text h3 {
        font-size: 24px !important;
    }

    .stat-box {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 28px;
    }

    .tech-item {
        padding: 20px 12px;
    }
}
