/* Variables & Reset */
:root {
    --primary-color: #00e5ff;
    /* Cyan */
    --secondary-color: #ffd700;
    /* Gold */
    --bg-dark: #0a0e17;
    --bg-card: rgba(255, 255, 255, 0.05);
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --glass-border: rgba(255, 255, 255, 0.1);
    --gradient-main: linear-gradient(135deg, #00e5ff 0%, #ffd700 100%);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Orbitron', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-color);
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-main);
    color: #000;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 229, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    border: 2px solid var(--primary-color);
    margin-left: 15px;
}

.btn-secondary:hover {
    background: rgba(0, 229, 255, 0.1);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Glassmorphism */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 14, 23, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a:not(.btn-primary) {
    font-weight: 500;
    color: var(--text-main);
}

.nav-links a:not(.btn-primary):hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background: url('assets/hero-bg.png') no-repeat center center/cover;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 14, 23, 0.8), var(--bg-dark));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 500px;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item .count {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-item .label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-image {
    flex: 1;
    position: relative;
}

.image-wrapper {
    position: relative;
    padding: 10px;
}

.floating-badge {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    animation: float 3s ease-in-out infinite;
}

.badge-1 {
    top: 20%;
    left: -20px;
    color: var(--primary-color);
}

.badge-2 {
    bottom: 20%;
    right: -20px;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Features Section */
.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--text-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.benefits-list {
    margin-top: 30px;
}

.benefits-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.benefits-list i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 5px;
}

.benefits-list strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.benefits-list p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.about-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    position: absolute;
}

.visual-card {
    width: 250px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin: 15px 0;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--gradient-main);
    border-radius: 5px;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.popular {
    border-color: var(--secondary-color);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--secondary-color);
    color: #000;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 700;
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.features-list {
    margin-bottom: 30px;
    flex: 1;
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.features-list li i {
    color: var(--secondary-color);
}

.alt-option {
    margin-top: 15px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.text-link {
    color: var(--secondary-color);
    text-decoration: underline;
    margin-left: 5px;
}

/* Footer */
.footer {
    background: #05070a;
    padding: 60px 0 20px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo p {
    color: var(--text-muted);
    margin-top: 10px;
    max-width: 300px;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
}

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

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Add JS toggle later */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 14, 23, 0.95);
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        margin: 0 auto 30px;
    }

    .stats {
        justify-content: center;
    }

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

/* Promo Popup */
.promo-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.promo-popup.hidden {
    opacity: 0;
    pointer-events: none;
}

.popup-content {
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    transform: scale(1);
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, rgba(10, 14, 23, 0.95), rgba(0, 229, 255, 0.1));
}

.promo-popup.hidden .popup-content {
    transform: scale(0.8);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: var(--primary-color);
}

.popup-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.popup-content p {
    color: var(--text-main);
    margin-bottom: 20px;
}

.promo-code-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px dashed var(--primary-color);
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

#promo-code {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--primary-color);
}

#copy-code {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
}

#copy-code:hover {
    color: var(--text-main);
}

/* Floating Social Widget */
.social-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1900;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.social-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-main);
    border: none;
    color: #000;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 229, 255, 0.5);
}

.social-toggle-btn .fa-times {
    display: none;
}

.social-widget.active .social-toggle-btn .fa-comment-dots {
    display: none;
}

.social-widget.active .social-toggle-btn .fa-times {
    display: block;
}

.social-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.social-menu.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(10, 14, 23, 0.9);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.social-item:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateX(-5px);
}

.social-item i {
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.social-item span {
    font-weight: 500;
    white-space: nowrap;

    /* Blog System */
    .page-header {
        padding: 150px 0 80px;
        background: url('assets/hero-bg.png') no-repeat center center/cover;
        position: relative;
    }

    .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(10, 14, 23, 0.9), var(--bg-dark));
        z-index: 1;
    }

    .page-header .container {
        position: relative;
        z-index: 2;
    }

    .page-header h1 {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .page-header p {
        color: var(--text-muted);
        font-size: 1.1rem;
    }

    .blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .blog-card {
        overflow: hidden;
        padding: 0;
        display: flex;
        flex-direction: column;
    }

    .blog-image {
        height: 200px;
        overflow: hidden;
    }

    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

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

    .blog-content {
        padding: 25px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .blog-meta {
        display: flex;
        gap: 15px;
        font-size: 0.85rem;
        color: var(--text-muted);
        margin-bottom: 15px;
    }

    .blog-meta i {
        color: var(--primary-color);
        margin-right: 5px;
    }

    .blog-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .blog-card p {
        color: var(--text-muted);
        margin-bottom: 20px;
        flex: 1;
    }

    .read-more {
        color: var(--secondary-color);
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: gap 0.3s ease;
    }

    .read-more:hover {
        gap: 15px;
    }

    /* Single Post */
    .post-article {
        padding-top: 120px;
    }

    .post-container {}

    /* Blog System Redesign */
    .page-header {
        padding: 180px 0 100px;
        background: url('assets/hero-bg.png') no-repeat center center/cover;
        position: relative;
        overflow: hidden;
    }

    .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(10, 14, 23, 0.8), var(--bg-dark));
        z-index: 1;
    }

    .page-header .container {
        position: relative;
        z-index: 2;
        animation: fadeInUp 1s ease-out;
    }

    .page-header h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
        background: var(--gradient-main);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
    }

    .page-header p {
        color: var(--text-muted);
        font-size: 1.2rem;
        max-width: 600px;
        margin: 0 auto;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

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

    .blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
    }

    .blog-card {
        overflow: hidden;
        padding: 0;
        display: flex;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .blog-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 229, 255, 0.15);
        border-color: rgba(0, 229, 255, 0.3);
    }

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

    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

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

    .blog-image::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(10, 14, 23, 0.8), transparent);
        opacity: 0.6;
    }

    .blog-content {
        padding: 30px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .blog-meta {
        display: flex;
        gap: 15px;
        font-size: 0.8rem;
        color: var(--text-muted);
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .blog-meta span {
        background: rgba(255, 255, 255, 0.05);
        padding: 5px 10px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .blog-meta i {
        color: var(--secondary-color);
    }

    .blog-card h3 {
        font-family: var(--font-heading);
        font-size: 1.5rem;
        margin-bottom: 15px;
        line-height: 1.4;
        color: var(--text-main);
        transition: color 0.3s ease;
    }

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

    .blog-card p {
        color: var(--text-muted);
        margin-bottom: 25px;
        flex: 1;
        line-height: 1.7;
    }

    .read-more {
        color: var(--text-main);
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 0;
        position: relative;
        transition: all 0.3s ease;
    }

    .read-more::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--gradient-main);
        transition: width 0.3s ease;
    }

    .read-more:hover {
        color: var(--primary-color);
        gap: 15px;
    }

    .read-more:hover::after {
        width: 100%;
    }

    /* Single Post Redesign */
    .post-article {
        padding-top: 150px;
    }

    .post-container {
        padding: 60px;
        background: rgba(10, 14, 23, 0.6);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    }

    .post-header {
        text-align: center;
        margin-bottom: 60px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .post-header h1 {
        font-size: 3rem;
        margin-bottom: 30px;
        line-height: 1.2;
        background: var(--gradient-main);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-align: center;
    }

    .post-header .blog-meta {
        justify-content: center;
    }

    .post-image-large {
        width: 100%;
        height: 500px;
        border-radius: 20px;
        overflow: hidden;
        margin-bottom: 60px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .post-body {
        font-size: 1.15rem;
        line-height: 1.9;
        color: #d0d0d0;
        max-width: 800px;
        margin: 0 auto;
    }

    .post-body h2,
    .post-body h3 {
        color: var(--text-main);
        margin: 50px 0 25px;
        font-family: var(--font-heading);
    }

    .post-body h2 {
        font-size: 2rem;
    }

    .post-body h3 {
        font-size: 1.5rem;
    }

    .post-body p {
        margin-bottom: 25px;
    }

    .post-body blockquote {
        border-left: 4px solid var(--secondary-color);
        padding-left: 25px;
        margin: 40px 0;
        font-style: italic;
        color: var(--text-main);
        font-size: 1.3rem;
        background: rgba(255, 255, 255, 0.02);
        padding: 30px;
        border-radius: 0 10px 10px 0;
    }

    .post-body img {
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    @media (max-width: 768px) {
        .page-header h1 {
            font-size: 2.5rem;
        }

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

        .post-header h1 {
            font-size: 2.2rem;
        }

        .post-image-large {
            height: 300px;
        }

        .post-container {
            padding: 30px;
        }

        .post-body {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-muted);
        }

        .post-body h2,
        .post-body h3 {
            color: var(--text-main);
            margin: 30px 0 15px;
        }

        .post-body p {
            margin-bottom: 20px;
        }

        .post-body ul {
            list-style: disc;
            padding-left: 20px;
            margin-bottom: 20px;
        }

        .post-body li {
            margin-bottom: 10px;
        }

        .mt-50 {
            margin-top: 50px;
        }

        .error-msg {
            text-align: center;
            color: #ff4d4d;
            font-size: 1.2rem;
            padding: 20px;
        }

        .loading-spinner {
            text-align: center;
            color: var(--primary-color);
            font-size: 1.2rem;
            padding: 40px;
        }

        @media (max-width: 768px) {
            .post-image-large {
                height: 250px;
            }

            .post-header h1 {
                font-size: 2rem;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .social-widget {
                bottom: 20px;
                right: 20px;
            }

            .social-toggle-btn {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
        }