/*
Theme Name: My Custom Theme
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: Ultra Modern Futuristic WordPress Theme with Glassmorphism
Version: 3.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mytheme
*/

/*
===========================================
MODERN FUTURISTIC WORDPRESS THEME
Design by AI - Ultra Modern & Professional
===========================================
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700;800&display=swap');

/* ============================================
   CSS VARIABLES - FUTURISTIC COLOR SCHEME
============================================ */
:root {
    /* Gradient Backgrounds */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark-gradient: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    --card-gradient: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    
    /* Solid Colors */
    --primary-purple: #667eea;
    --primary-blue: #4facfe;
    --primary-pink: #f093fb;
    --dark-purple: #764ba2;
    --dark-bg: #0f0c29;
    
    /* Text Colors */
    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-darker: rgba(255, 255, 255, 0.5);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    
    /* Modern Shadows with Depth */
    --shadow-sm: 0 2px 8px rgba(102, 126, 234, 0.15);
    --shadow-md: 0 8px 24px rgba(102, 126, 234, 0.25);
    --shadow-lg: 0 16px 48px rgba(102, 126, 234, 0.35);
    --shadow-glow: 0 0 30px rgba(102, 126, 234, 0.6);
    --shadow-hover: 0 20px 60px rgba(102, 126, 234, 0.4);
    
    /* Smooth Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
}

/* ============================================
   RESET & BASE STYLES
============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.8;
    color: #2c3e50;
    background: var(--dark-bg);
    overflow-x: hidden;
    position: relative;
    letter-spacing: 0.01em;
    font-weight: 400;
}

/* Animated Gradient Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(240, 147, 251, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(79, 172, 254, 0.2) 0%, transparent 50%);
    animation: gradientShift 20s ease infinite;
    z-index: -1;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1) rotate(2deg);
    }
}

/* ============================================
   ANIMATED BACKGROUND SHAPES
============================================ */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.7;
    animation: float 15s infinite ease-in-out;
    will-change: transform;
}

.shape-1 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.9) 0%, rgba(102, 126, 234, 0.4) 100%);
    top: 10%;
    left: 10%;
    animation-duration: 12s;
    animation-delay: 0s;
}

.shape-2 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(240, 147, 251, 0.9) 0%, rgba(240, 147, 251, 0.4) 100%);
    top: 60%;
    right: 5%;
    animation-duration: 15s;
    animation-delay: 3s;
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.9) 0%, rgba(79, 172, 254, 0.4) 100%);
    bottom: 15%;
    left: 15%;
    animation-duration: 14s;
    animation-delay: 1s;
}

.shape-4 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 237, 234, 0.9) 0%, rgba(168, 237, 234, 0.4) 100%);
    top: 25%;
    right: 20%;
    animation-duration: 18s;
    animation-delay: 5s;
}

.shape-5 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 236, 210, 0.9) 0%, rgba(252, 182, 159, 0.4) 100%);
    bottom: 35%;
    left: 45%;
    animation-duration: 11s;
    animation-delay: 2s;
}

.shape-6 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255, 154, 158, 0.9) 0%, rgba(254, 207, 239, 0.4) 100%);
    top: 45%;
    right: 35%;
    animation-duration: 16s;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(120px, -100px) scale(1.3);
    }
    66% {
        transform: translate(-100px, 120px) scale(0.8);
    }
}

/* ============================================
   TYPOGRAPHY - MODERN HIERARCHY
============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: #2c3e50;
    margin-bottom: var(--spacing-md);
}

h1 { 
    font-size: clamp(1.5rem, 3vw, 2rem); 
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 { 
    font-size: clamp(1.35rem, 2.5vw, 1.75rem); 
}

h3 { 
    font-size: clamp(1.15rem, 2vw, 1.5rem); 
}

h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    margin-bottom: var(--spacing-md);
    color: #495057;
    font-size: 1.0625rem;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    position: relative;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--primary-purple);
}

/* Gradient Underline Effect */
a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition-smooth);
}

a:hover::after {
    width: 100%;
}

/* ============================================
   CONTAINER & LAYOUT
============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.site-content {
    padding: var(--spacing-xl) 0;
}

/* ============================================
   HEADER - STICKY WITH BLUR BACKDROP
============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(15, 12, 41, 0.95) 0%, rgba(36, 36, 62, 0.98) 100%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    background: rgba(15, 12, 41, 0.95);
    box-shadow: var(--shadow-lg);
}

/* Header Top Bar */
.header-top {
   
    background: rgba(15, 12, 41, 0.8);
    padding: 0.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
}

.header-contact span {
    margin-right: var(--spacing-md);
    color: rgba(255, 255, 255, 0.95);
}

.header-social a {
    margin-left: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.95);
    transition: var(--transition-fast);
    text-decoration: none;
}

.header-social a:hover {
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Header Main */
.header-main {
    padding: 0.4rem 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

.site-logo a {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #ffffff;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    text-decoration: none;
}

.site-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Navigation Menu */
.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
}

.main-navigation a {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    transition: var(--transition-smooth);
    position: relative;
    font-size: 0.9rem;
}

.main-navigation a::after {
    display: none;
}

.main-navigation a:hover,
.main-navigation a.current {
    background: linear-gradient(135deg, rgba(15, 12, 41, 0.95) 0%, rgba(36, 36, 62, 0.98) 100%);
   
    color: #ffffff;
    box-shadow: var(--shadow-sm);
}

/* Search Toggle */
.search-toggle {
    background: var(--primary-gradient);
    border: none;
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.search-toggle:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.search-form {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: var(--spacing-sm);
    background: linear-gradient(135deg, rgba(15, 12, 41, 0.95) 0%, rgba(36, 36, 62, 0.98) 100%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: var(--spacing-md);
    box-shadow: var(--shadow-lg);
    min-width: 300px;
}

.search-form input {
    width: 100%;
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: #2c3e50;
    font-size: 1rem;
}

.search-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   CARDS - GLASSMORPHISM WITH HOVER EFFECTS
============================================ */
.post-card,
article {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(241, 243, 245, 0.98) 100%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 20px;
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

/* Shimmer Effect */
.post-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: var(--transition-slow);
}

.post-card:hover::before {
    animation: shimmer 1.5s;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.post-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(102, 126, 234, 0.5);
}

/* Card Image with Zoom Effect */
.post-thumbnail {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: var(--spacing-md);
    position: relative;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-slow);
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.1);
}

/* ============================================
   POST GRID & CARD TITLES
============================================ */
.posts-grid {
    display: grid;
    gap: var(--spacing-xl);
}

.posts-grid .entry-header {
    margin-bottom: var(--spacing-md);
}

.posts-grid .entry-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
}

.posts-grid .entry-title a {
    color: #1a1a2e;
    text-decoration: none;
    transition: var(--transition-fast);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.posts-grid .entry-title a:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.posts-grid .entry-meta {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: var(--spacing-md);
}

.posts-grid .entry-content {
    color: rgba(0, 0, 0, 0.75);
    line-height: 1.7;
}

.read-more {
    display: inline-block;
    margin-top: var(--spacing-sm);
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.read-more:hover {
    color: #764ba2;
    transform: translateX(4px);
}

/* ============================================
   META INFO WITH ICONS
============================================ */
.post-meta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    flex-wrap: wrap;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.post-meta span::before {
    font-size: 1.125rem;
}

.post-date::before { content: '📅'; }
.post-author::before { content: '✍️'; }
.post-category::before { content: '🏷️'; }
.post-comments::before { content: '💬'; }

/* ============================================
   BUTTONS - GRADIENT WITH SHADOW
============================================ */
.btn,
button[type="submit"],
input[type="submit"],
.wp-block-button__link {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--primary-gradient);
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.btn:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    background: var(--secondary-gradient);
}

.btn:active {
    transform: translateY(-1px);
}

/* ============================================
   SINGLE POST - ARTICLE PAGE
============================================ */
.single-post {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
}

.entry-header {
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--glass-border);
}

.entry-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #ffffff;
}

.entry-meta {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
}

.entry-meta span {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.entry-content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
}

.entry-content p {
    margin-bottom: var(--spacing-lg);
}

.entry-content h2,
.entry-content h3 {
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.95);
}

.entry-footer {
    padding-top: var(--spacing-lg);
    border-top: 2px solid var(--glass-border);
}

.post-footer-meta {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.post-tags {
    color: rgba(255, 255, 255, 0.8);
}

.share-buttons {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
    flex-wrap: wrap;
}

.share-btn {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-fast);
}

.share-btn.fb {
    background: #1877f2;
    color: white;
}

.share-btn.tw {
    background: #1da1f2;
    color: white;
}

.share-btn.li {
    background: #0077b5;
    color: white;
}

.share-btn.wa {
    background: #25d366;
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   SIDEBAR - STICKY WITH GLASSMORPHISM
============================================ */
.sidebar {
    position: sticky;
    top: 50px;
}

.widget {
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.12);
    transition: var(--transition-smooth);
    color: #2c3e50;
}

.widget:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(102, 126, 234, 0.4);
}

.widget-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--glass-border);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #2c3e50;}

.widget ul {
    list-style: none;
}

.widget ul li {
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    color: #2c3e50;
    transition: var(--transition-fast);
    display: block;
}

.widget ul li a:hover {
    color: var(--primary-purple);
    padding-left: var(--spacing-xs);
}

/* ============================================
   BREADCRUMBS
============================================ */
.breadcrumbs {
    background: rgba(15, 12, 41, 0.6);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 12px;
    margin-bottom: var(--spacing-lg);
    font-size: 0.9375rem;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs a:hover {
    color: var(--primary-blue);
}

.breadcrumbs span {
    margin: 0 var(--spacing-xs);
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   SHARE BUTTONS
============================================ */
.share-buttons {
    display: flex;
    gap: var(--spacing-sm);
    margin: var(--spacing-lg) 0;
}

.share-button {
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.share-facebook {
    background: linear-gradient(135deg, #1877f2, #0d5dbf);
    color: white;
}

.share-twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
    color: white;
}

.share-linkedin {
    background: linear-gradient(135deg, #0077b5, #005885);
    color: white;
}

.share-whatsapp {
    background: linear-gradient(135deg, #25d366, #1da851);
    color: white;
}

.share-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   FOOTER - WITH GRID PATTERN
============================================ */
.site-footer {
    background: linear-gradient(135deg, rgba(20, 20, 40, 0.95) 0%, rgba(30, 30, 60, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-top: var(--spacing-xl);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    border-top: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    z-index: 0;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.footer-widget {
    color: rgba(255, 255, 255, 0.85);
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.85);
}
.footer-widget h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-widget a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-widget a:hover {
    color: var(--primary-blue);
    padding-left: var(--spacing-xs);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 14px;
    margin: 8px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* ============================================
   BACK TO TOP BUTTON
============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    z-index: 999;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* ============================================
   RESPONSIVE - MOBILE FIRST
============================================ */

/* Tablet */
@media (max-width: 992px) {
    .header-main .container {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .main-navigation ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-sm);
    }
    
    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 1.5rem;
        --spacing-xl: 2rem;
    }
    
    .header-top .container {
        flex-direction: column;
        gap: var(--spacing-xs);
        text-align: center;
    }
    
    .header-contact span {
        display: block;
        margin: var(--spacing-xs) 0;
    }
    
    .main-navigation ul {
        gap: var(--spacing-xs);
    }
    
    .main-navigation a {
        padding: var(--spacing-xs);
        font-size: 0.9375rem;
    }
    
    .post-meta {
        font-size: 0.875rem;
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }
    
    .search-form {
        right: auto;
        left: 0;
        width: 100%;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* ============================================
   UTILITY CLASSES
============================================ */
.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: linear-gradient(135deg, rgba(15, 12, 41, 0.95) 0%, rgba(36, 36, 62, 0.98) 100%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Smooth scroll animation */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   DECORATIVE PATTERNS FOR EMPTY SPACES
============================================ */

/* Animated Geometric Shapes */
.site-content::before {
    content: '';
    position: fixed;
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(240, 147, 251, 0.1));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(40px);
    animation: morphShape 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.site-content::after {
    content: '';
    position: fixed;
    bottom: 15%;
    left: 8%;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.12), rgba(102, 126, 234, 0.08));
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    filter: blur(35px);
    animation: morphShape2 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes morphShape {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg) scale(1);
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
        transform: rotate(90deg) scale(1.1);
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
        transform: rotate(180deg) scale(0.9);
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
        transform: rotate(270deg) scale(1.05);
    }
}

@keyframes morphShape2 {
    0%, 100% {
        border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
        transform: translateY(0) rotate(0deg);
    }
    33% {
        border-radius: 40% 60% 70% 30% / 40% 50% 50% 60%;
        transform: translateY(-30px) rotate(120deg);
    }
    66% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
        transform: translateY(20px) rotate(240deg);
    }
}

/* Dot Pattern Grid */
.site-content {
    position: relative;
    background-image: radial-gradient(circle, rgba(102, 126, 234, 0.08) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: 0 0;
}

/* Sidebar Decorative Elements */
.sidebar::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(240, 147, 251, 0.15), transparent);
    border-radius: 50%;
    filter: blur(30px);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.8;
    }
}

/* Wave Lines */
.site-footer::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,64L48,69.3C96,75,192,85,288,80C384,75,480,53,576,48C672,43,768,53,864,58.7C960,64,1056,64,1152,58.7L1200,53.3L1200,120L0,120Z' fill='rgba(102,126,234,0.1)'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

/* Corner Accents */
body::after {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at top right, rgba(102, 126, 234, 0.15), transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Sparkle Effect on Hover */
.post-card::before,
article::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        transparent 40%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 60%,
        transparent
    );
    transform: rotate(45deg);
    transition: var(--transition-slow);
    opacity: 0;
}

.post-card:hover::before,
article:hover::before {
    animation: sparkle 1.5s ease-in-out;
}

@keyframes sparkle {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

/* Floating Gradient Orbs */
.floating-orb-1,
.floating-orb-2,
.floating-orb-3 {
    position: fixed;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    pointer-events: none;
    z-index: -1;
}

.floating-orb-1 {
    top: 20%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3), transparent);
    animation: float1 15s ease-in-out infinite;
}

.floating-orb-2 {
    top: 60%;
    right: 15%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(240, 147, 251, 0.25), transparent);
    animation: float2 18s ease-in-out infinite;
}

.floating-orb-3 {
    bottom: 10%;
    left: 30%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.28), transparent);
    animation: float3 20s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(50px, -80px); }
    66% { transform: translate(-30px, 60px); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-60px, 70px); }
    66% { transform: translate(40px, -50px); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(70px, 40px); }
    66% { transform: translate(-50px, -60px); }
}

























