/**
 * Main Stylesheet - Nekopoi Premium Theme
 * Awesome animations, effects, and styling
 */

/* ========================================
   HEADER & NAVIGATION
======================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    animation: slideDown 0.6s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

.site-branding {
    flex-shrink: 0;
}

.custom-logo-link {
    display: block;
    line-height: 0;
}

.custom-logo {
    max-height: 50px;
    width: auto;
    transition: var(--transition);
}

.custom-logo:hover {
    transform: scale(1.05);
}

.site-logo-text {
    line-height: 1.2;
}

.site-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-title a {
    color: inherit;
}

.site-description {
    margin: 0;
    font-size: 0.85rem;
    color: var(--gray-text);
}

/* Navigation Menu */
.main-navigation {
    flex-grow: 1;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--light-text);
    border-radius: 2px;
    transition: var(--transition);
}

.primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.primary-menu > li {
    position: relative;
}

.primary-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--light-text);
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.primary-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-2);
    transition: var(--transition);
    transform: translateX(-50%);
}

.primary-menu a:hover::before {
    width: 80%;
}

.primary-menu a:hover {
    color: var(--primary-color);
    background: rgba(255, 23, 68, 0.1);
}

/* Submenu */
.menu-item-has-children {
    position: relative;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--darker-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 100;
}

.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li {
    margin: 0;
}

.sub-menu a {
    padding: 0.6rem 1rem;
    border-radius: 8px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-action-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--light-text);
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
}

.header-action-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.header-action-btn svg {
    transition: var(--transition);
}

.header-action-btn:hover svg {
    transform: scale(1.1);
}

.whatsapp-btn:hover {
    background: #25d366;
    border-color: #25d366;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.4);
}

/* ========================================
   SEARCH POPUP
======================================== */

.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-popup.active {
    display: flex;
    opacity: 1;
    animation: fadeIn 0.3s ease;
}

.search-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.search-popup-content {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: auto;
    padding: 2rem;
    z-index: 1;
    animation: slideUp 0.4s ease;
}

.search-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--light-text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-popup-close:hover {
    background: var(--primary-color);
    transform: rotate(90deg);
}

.search-form {
    position: relative;
    margin-bottom: 2rem;
}

.search-field {
    width: 100%;
    padding: 1.2rem 4rem 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--light-text);
    font-size: 1.1rem;
    transition: var(--transition);
}

.search-field:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(255, 23, 68, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.search-submit {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-glow);
}

.live-search-results {
    max-height: 400px;
    overflow-y: auto;
    background: var(--darker-bg);
    border-radius: var(--border-radius);
    padding: 1rem;
}

.search-result-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    transition: var(--transition);
    cursor: pointer;
}

.search-result-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.search-result-image {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-content h4 {
    margin: 0 0 0.25rem;
    font-size: 1rem;
    color: var(--light-text);
}

.search-result-content p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--gray-text);
}

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

.hero-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 23, 68, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 5s ease-in-out infinite reverse;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray-text);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.primary-cta {
    background: var(--gradient-2);
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 23, 68, 0.5);
}

.secondary-cta {
    background: transparent;
    color: var(--light-text);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.secondary-cta:hover {
    border-color: var(--primary-color);
    background: rgba(255, 23, 68, 0.1);
    transform: translateY(-3px);
}

/* App Info Table */
.app-info-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.info-item {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    animation-delay: calc(var(--i) * 0.1s);
}

.info-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-label {
    font-size: 0.85rem;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--light-text);
}

/* ========================================
   ABOUT SECTION
======================================== */

.about-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--gradient-2);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.about-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-item.reverse {
    direction: rtl;
}

.about-item.reverse > * {
    direction: ltr;
}

.about-content h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
    color: var(--light-text);
}

.about-content p {
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-2);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.about-image:hover::before {
    opacity: 0.3;
}

.about-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 23, 68, 0.3);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   FEATURES SECTION
======================================== */

.features-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--primary-color), transparent 30%);
    opacity: 0;
    transition: var(--transition);
    animation: rotate 4s linear infinite;
}

.feature-card:hover::before {
    opacity: 0.1;
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(255, 23, 68, 0.3);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.feature-card p {
    color: var(--gray-text);
    line-height: 1.6;
}

/* ========================================
   SCREENSHOTS SECTION
======================================== */

.screenshots-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.screenshots-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.screenshot-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.screenshot-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 3rem;
    transition: var(--transition);
}

.screenshot-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.screenshot-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.screenshot-item:hover img {
    filter: brightness(0.7);
}

/* Continue in next part... */
/* ========================================
   BLOG SECTION
======================================== */

.blog-section {
    padding: 5rem 0;
    background: var(--darker-bg);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-categories {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    z-index: 1;
}

.category-tag {
    padding: 0.4rem 0.8rem;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.category-tag:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--light-text);
    transition: var(--transition);
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--gray-text);
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-card-excerpt {
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-card-readmore {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.blog-card-readmore:hover {
    gap: 1rem;
}

/* ========================================
   SINGLE POST STYLES
======================================== */

.single-post-main {
    background: var(--dark-bg);
}

.post-featured-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.post-featured-image.parallax-image {
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, var(--dark-bg), transparent);
}

.post-content-wrapper {
    max-width: 900px;
    margin: -100px auto 0;
    position: relative;
    z-index: 1;
    background: var(--darker-bg);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.post-categories {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.category-badge {
    padding: 0.5rem 1rem;
    background: var(--gradient-2);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    animation: slideInLeft 0.6s ease;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.category-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.entry-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--light-text);
    animation: fadeIn 0.8s ease;
}

.entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--gray-text);
}

.entry-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.entry-meta svg {
    color: var(--primary-color);
}

/* Typography - Unique Styles for H1-H5 */
.entry-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 2.5rem 0 1.5rem;
    padding-left: 1.5rem;
    border-left: 5px solid var(--primary-color);
    background: linear-gradient(90deg, rgba(255, 23, 68, 0.1), transparent);
    padding-top: 1rem;
    padding-bottom: 1rem;
    color: var(--light-text);
}

.entry-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: var(--light-text);
    position: relative;
    padding-bottom: 0.75rem;
}

.entry-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gradient-2);
    border-radius: 2px;
}

.entry-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 1.75rem 0 1rem;
    color: var(--light-text);
    padding-left: 1rem;
    border-left: 3px solid var(--secondary-color);
}

.entry-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: var(--light-text);
    position: relative;
    padding-left: 2rem;
}

.entry-content h4::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.entry-content h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.25rem 0 0.75rem;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255, 23, 68, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.entry-content p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    color: var(--gray-text);
    text-align: justify;
    text-indent: 2rem;
    font-size: 1.05rem;
}

.entry-content p:first-of-type {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Lists */
.entry-content ul,
.entry-content ol {
    margin: 1.5rem 0 1.5rem 2rem;
    padding-left: 1rem;
}

.entry-content ul li {
    position: relative;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    list-style: none;
    color: var(--gray-text);
    line-height: 1.8;
}

.entry-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 12px;
    height: 12px;
    background: var(--gradient-2);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 23, 68, 0.5);
}

.entry-content ol {
    counter-reset: custom-counter;
}

.entry-content ol li {
    position: relative;
    margin-bottom: 1rem;
    padding-left: 3rem;
    list-style: none;
    color: var(--gray-text);
    line-height: 1.8;
    counter-increment: custom-counter;
}

.entry-content ol li::before {
    content: counter(custom-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 23, 68, 0.4);
}

/* Blockquote */
.entry-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 5px solid var(--primary-color);
    border-radius: 0 12px 12px 0;
    position: relative;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.entry-content blockquote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 10px;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: Georgia, serif;
}

/* Links */
.entry-content a {
    color: var(--primary-color);
    text-decoration: underline;
    text-decoration-color: rgba(255, 23, 68, 0.3);
    text-underline-offset: 3px;
    transition: var(--transition);
}

.entry-content a:hover {
    color: var(--secondary-color);
    text-decoration-color: var(--secondary-color);
}

/* Images */
.entry-content img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    margin: 2rem 0;
    transition: var(--transition);
}

.entry-content img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* Post Tags */
.post-tags {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 2rem 0;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.post-tags a {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: var(--gray-text);
    font-size: 0.9rem;
    transition: var(--transition);
}

.post-tags a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

/* Social Share */
.social-share {
    padding: 2rem 0;
    margin: 2rem 0;
}

.share-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.share-btn.facebook {
    background: #1877f2;
    color: #fff;
}

.share-btn.twitter {
    background: #1da1f2;
    color: #fff;
}

.share-btn.whatsapp {
    background: #25d366;
    color: #fff;
}

.share-btn.telegram {
    background: #0088cc;
    color: #fff;
}

.share-btn.copy-link {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Author Box */
.author-box {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    margin: 3rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(255, 23, 68, 0.3);
}

.author-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.author-bio {
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.author-posts-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.author-posts-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Post Navigation */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.nav-previous,
.nav-next {
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.nav-previous:hover,
.nav-next:hover {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.nav-subtitle {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-text);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-title {
    color: var(--light-text);
    font-weight: 600;
    transition: var(--transition);
}

.nav-title:hover {
    color: var(--primary-color);
}

/* Comments */
.comments-area {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.comments-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--light-text);
}

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

.comment-item {
    margin-bottom: 2rem;
    animation: fadeIn 0.6s ease;
}

.comment-body {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comment-avatar img {
    border-radius: 50%;
    border: 3px solid var(--primary-color);
}

.comment-content-wrap {
    flex-grow: 1;
}

.comment-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    align-items: center;
}

.comment-author {
    font-weight: 700;
    color: var(--light-text);
}

.comment-date {
    font-size: 0.85rem;
    color: var(--gray-text);
}

.comment-content {
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.comment-actions a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.comment-actions a:hover {
    color: var(--secondary-color);
}

.comment-respond {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
}

.comment-form {
    display: grid;
    gap: 1.5rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--light-text);
    font-family: inherit;
    transition: var(--transition);
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.submit-btn {
    padding: 1rem 2rem;
    background: var(--gradient-2);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    justify-self: start;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 3rem 0;
}

.pagination .page-numbers {
    padding: 0.75rem 1.25rem;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--light-text);
    font-weight: 600;
    transition: var(--transition);
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

/* Footer */
.site-footer {
    background: var(--darker-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widgets {
    padding: 3rem 0;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.copyright p,
.footer-credits p {
    margin: 0;
    color: var(--gray-text);
    font-size: 0.9rem;
}

.developer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.developer-link:hover {
    color: var(--secondary-color);
    transform: translateX(3px);
}

.footer-navigation {
    display: flex;
}

.footer-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.footer-menu a {
    color: var(--gray-text);
    transition: var(--transition);
}

.footer-menu a:hover {
    color: var(--primary-color);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}
