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

:root {
    --primary-color: #6B46C1;
    --secondary-color: #9F7AEA;
    --accent-color: #F6AD55;
    --text-dark: #2D3748;
    --text-light: #718096;
    --bg-light: #F7FAFC;
    --white: #FFFFFF;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Navigation */
.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.site-header nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: drift 20s linear infinite;
}

@keyframes drift {
    from { transform: translate(0, 0); }
    to { transform: translate(50px, 50px); }
}

.hero-content {
    text-align: center;
    color: var(--white);
    padding: 2rem;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

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

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Features Section */
.features {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

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

/* Blog Preview Section */
.blog-preview {
    padding: 5rem 2rem;
    background: var(--white);
}

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

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

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

.blog-category {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.blog-excerpt {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.blog-meta .author::before {
    content: '👤 ';
}

.blog-meta .date::before {
    content: '📅 ';
}

.read-more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
}

/* Blog Listing Page */
.blog-listing {
    margin-top: 80px;
    padding: 5rem 2rem;
    background: var(--bg-light);
    min-height: 100vh;
}

.page-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.page-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--bg-light);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Blog Post Page */
.blog-post {
    margin-top: 80px;
    padding-bottom: 4rem;
}

.post-header {
    position: static;
    background: var(--bg-light);
    padding: 2rem 2rem 2rem;
    text-align: center;
    width: 100%;
    box-shadow: none;
    backdrop-filter: none;
}

.post-image {
    max-width: 800px;
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.post-header h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.8rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.post-author::before {
    content: '👤 ';
}

.post-date::before {
    content: '📅 ';
}

.post-category {
    padding: 0.25rem 0.8rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.post-tags {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.8rem;
}

.tag {
    padding: 0.3rem 0.8rem;
    background: var(--white);
    color: var(--text-dark);
    border: 1px solid var(--bg-light);
    border-radius: 15px;
    font-size: 0.85rem;
}


.post-content {
    max-width: 800px;
    margin: 1.5rem auto;
    padding: 0 2rem;
}

.post-content h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.post-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.post-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.post-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--bg-light);
}

.back-to-blog {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Meditation Timer Section */
.meditation-timer {
    padding: 5rem 2rem;
    background: var(--white);
}

.timer-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: var(--gradient-3);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.timer-display {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin: 2rem 0;
    font-family: 'Courier New', monospace;
}

.timer-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.timer-btn {
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timer-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Practice Tools Section */
.practice-tools {
    padding: 5rem 2rem;
    background: var(--white);
}

.practice-tools .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

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

.practice-tools .read-more {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.practice-tools .read-more:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 70, 193, 0.4);
}

/* Quotes Section */
.quotes {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.quote-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.quote-text {
    font-size: 1.8rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.quote-author {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Community Section */
.community-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.community-section::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: drift 25s linear infinite;
}

.community-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.community-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.community-title {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.community-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.community-benefits {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
    text-align: left;
}

.community-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--text-dark);
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #48BB78;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

.community-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: #1877F2;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
    margin-top: 1rem;
}

.community-button:hover {
    background: #166FE5;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.5);
}

.community-button svg {
    width: 24px;
    height: 24px;
}

/* Benefits Section */
.benefits {
    padding: 5rem 2rem;
    background: var(--white);
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
}

.benefit-icon {
    font-size: 2rem;
}

.benefit-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Newsletter Section */
.newsletter {
    padding: 5rem 2rem;
    background: var(--gradient-2);
    text-align: center;
}

.newsletter h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-btn {
    padding: 1rem 2.5rem;
    background: var(--text-dark);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* Footer Social Media */
.footer-social {
    margin: 2rem 0 1rem;
    text-align: center;
}

.footer-social-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: #1877F2;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.social-link:hover {
    background: #166FE5;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(24, 119, 242, 0.4);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* Floating Social Media Button */
.floating-social {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.floating-fb-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #1877F2;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(24, 119, 242, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

.floating-fb-btn:hover {
    background: #166FE5;
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(24, 119, 242, 0.5);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(24, 119, 242, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(24, 119, 242, 0.6);
    }
}

/* Breathing Animation */
.breathing-circle {
    width: 150px;
    height: 150px;
    margin: 2rem auto;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

/* Affiliate Banner */
.affiliate-banner {
    margin: 3rem auto;
    padding: 0 2rem;
    max-width: 1200px;
}

.affiliate-banner a {
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.affiliate-banner a:hover {
    transform: translateY(-5px);
}

.banner-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.3);
    transition: box-shadow 0.3s ease;
}

.affiliate-banner a:hover .banner-image {
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.4);
}

/* Sidebar Affiliate Banner for Post Pages */
.post-with-sidebar {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.post-main-content {
    flex: 1;
    max-width: 800px;
}

.post-sidebar {
    width: 300px;
    flex-shrink: 0;
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
}

.sidebar-banner {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.05) 0%, rgba(159, 122, 234, 0.05) 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(107, 70, 193, 0.2);
    margin-bottom: 2rem;
}

.sidebar-banner-title {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.sidebar-banner a {
    display: block;
    transition: transform 0.3s ease;
}

.sidebar-banner a:hover {
    transform: scale(1.05);
}

.sidebar-banner img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.2);
}

/* Inline Post Banner */
.inline-affiliate-banner {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.03) 0%, rgba(159, 122, 234, 0.03) 100%);
    border-radius: 15px;
    border: 2px solid rgba(107, 70, 193, 0.1);
}

.inline-affiliate-banner a {
    display: block;
    transition: transform 0.3s ease;
}

.inline-affiliate-banner a:hover {
    transform: translateY(-3px);
}

.inline-affiliate-banner img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(107, 70, 193, 0.25);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .timer-display {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .quote-text {
        font-size: 1.4rem;
    }

    .page-title {
        font-size: 2rem;
    }

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

    .post-image {
        height: 200px;
    }

    .post-header {
        padding: 1.5rem 1rem 1.5rem;
    }

    .post-content {
        margin: 1rem auto;
        padding: 0 1rem;
    }

    .post-content h3 {
        font-size: 1.3rem;
    }

    .post-content p {
        font-size: 1rem;
    }

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

    .floating-social {
        bottom: 20px;
        right: 20px;
    }

    .floating-fb-btn {
        width: 50px;
        height: 50px;
    }

    .floating-fb-btn svg {
        width: 24px;
        height: 24px;
    }

    .social-link {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }

    .post-with-sidebar {
        flex-direction: column;
    }

    .post-sidebar {
        width: 100%;
    }

    .sidebar-sticky {
        position: static;
    }

    .affiliate-banner {
        padding: 0 1rem;
        margin: 2rem auto;
    }

    .inline-affiliate-banner {
        padding: 1rem;
        margin: 2rem 0;
    }
}

