/* ========================================
   BLOG STYLES
======================================== */

/* Simple Blog Header */
.blog-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-to-home {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px 10px 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-to-home:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(139, 92, 246, 0.3);
    color: #fff;
}

.back-to-home .icon-wrap {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.back-to-home .icon-wrap svg {
    color: #fff;
}

.back-to-home:hover .icon-wrap {
    transform: translateX(-3px);
}

/* Blog Hero */
.blog-hero {
    padding: 160px 0 80px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-section) 100%);
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.blog-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.blog-label {
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--accent-purple);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.blog-title {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-description {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Categories - Slide Background Style */
.blog-categories {
    padding: 40px 0;
    background: var(--bg-section);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.categories-wrapper {
    position: relative;
    display: inline-flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50px;
    padding: 5px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
}

.category-slider {
    position: absolute;
    top: 5px;
    left: 5px;
    height: calc(100% - 10px);
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.category-btn {
    padding: 12px 24px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.category-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}

.category-btn.active {
    color: #fff;
}

/* Slider positions set dynamically via JavaScript */

/* Mobile responsive */
@media (max-width: 768px) {
    .categories-wrapper {
        flex-wrap: wrap;
        border-radius: 16px;
        gap: 4px;
        padding: 8px;
    }

    .category-slider {
        display: none;
    }

    .category-btn {
        padding: 10px 18px;
        font-size: 13px;
        border-radius: 50px;
    }

    .category-btn.active {
        background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
        box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    }
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: var(--bg-dark);
    min-height: 60vh;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Blog Card */
.blog-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
}

.blog-card-image {
    display: block;
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-purple);
    z-index: 2;
}

.blog-card-content {
    padding: 24px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.blog-card-dot {
    opacity: 0.5;
}

.blog-card-date {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-read-time {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-title a {
    color: var(--text-white);
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--accent-purple);
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-purple);
    transition: all 0.3s ease;
}

.blog-card-link:hover {
    gap: 12px;
    color: var(--accent-pink);
}

.blog-card-link svg {
    transition: transform 0.3s ease;
}

.blog-card-link:hover svg {
    transform: translateX(4px);
}

/* Featured Card (First article) */
.blog-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.blog-card.featured .blog-card-image {
    height: 100%;
    min-height: 300px;
}

.blog-card.featured .blog-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.blog-card.featured .blog-card-title {
    font-size: 28px;
    -webkit-line-clamp: 3;
}

.blog-card.featured .blog-card-excerpt {
    -webkit-line-clamp: 4;
}

/* Load More */
.blog-load-more {
    text-align: center;
    margin-top: 60px;
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    color: var(--text-white);
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    border-color: var(--accent-purple);
}

.btn-outline-light .dots {
    display: flex;
    gap: 4px;
}

.btn-outline-light .dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.btn-outline-light:hover .dot {
    background: var(--accent-purple);
}

.btn-outline-light:hover .dot:nth-child(1) {
    animation: dotBounce 0.6s ease infinite;
}

.btn-outline-light:hover .dot:nth-child(2) {
    animation: dotBounce 0.6s ease infinite 0.1s;
}

.btn-outline-light:hover .dot:nth-child(3) {
    animation: dotBounce 0.6s ease infinite 0.2s;
}

@keyframes dotBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* Newsletter */
.newsletter-section {
    padding: 80px 0;
    background: var(--bg-section);
}

.newsletter-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.newsletter-desc {
    font-size: 16px;
    color: var(--text-gray);
}

.newsletter-form {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.newsletter-form input {
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: var(--text-white);
    font-size: 15px;
    width: 280px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    border-color: var(--accent-purple);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-form input::placeholder {
    color: var(--text-gray);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    border: none;
    border-radius: 30px;
    color: white;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

/* Blog Footer */
.blog-footer {
    padding: 60px 0 30px;
    background: var(--bg-darker);
}

.blog-footer .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
}

.footer-brand .footer-logo .logo-icon {
    color: var(--accent-purple);
}

.footer-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-white);
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-purple);
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-gray);
}

/* ========================================
   ARTICLE PAGE STYLES
======================================== */

.article-page {
    padding-top: 120px;
    background: var(--bg-dark);
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    margin-bottom: 40px;
}

.breadcrumbs a {
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--accent-purple);
}

.breadcrumbs .separator {
    color: rgba(255, 255, 255, 0.2);
}

.breadcrumbs .current {
    color: var(--text-white);
}

/* Article Header */
.article-header {
    text-align: center;
    margin-bottom: 40px;
}

.article-category {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-purple);
    margin-bottom: 24px;
}

.article-title {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 20px;
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.article-meta-item:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
}

.article-meta-item svg {
    color: var(--accent-purple);
    opacity: 0.8;
}

.article-meta-item span {
    color: rgba(255, 255, 255, 0.85);
}

.article-date,
.article-read-time,
.article-author {
    font-weight: 500;
}

/* Article Image */
.article-image,
.article-featured-image {
    margin-bottom: 50px;
    border-radius: 20px;
    overflow: hidden;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.article-image img,
.article-featured-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

/* Article Body */
.article-body {
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
}

.article-body h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 50px 0 20px;
    color: var(--text-white);
}

.article-body h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 40px 0 16px;
    color: var(--text-white);
}

.article-body p {
    margin-bottom: 24px;
}

.article-body ul,
.article-body ol {
    margin: 24px 0;
    padding-left: 24px;
}

.article-body li {
    margin-bottom: 12px;
}

.article-body blockquote {
    margin: 40px 0;
    padding: 24px 30px;
    background: rgba(139, 92, 246, 0.1);
    border-left: 4px solid var(--accent-purple);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--text-white);
}

.article-body code {
    background: rgba(255, 255, 255, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.9em;
}

.article-body pre {
    background: rgba(0, 0, 0, 0.4);
    padding: 24px;
    border-radius: 12px;
    overflow-x: auto;
    margin: 30px 0;
}

.article-body pre code {
    background: none;
    padding: 0;
}

.article-body a {
    color: var(--accent-purple);
    text-decoration: underline;
    text-decoration-color: rgba(139, 92, 246, 0.4);
    transition: all 0.3s ease;
}

.article-body a:hover {
    text-decoration-color: var(--accent-purple);
}

.article-body img {
    max-width: 100%;
    border-radius: 12px;
    margin: 30px 0;
}

/* Article Footer */
.article-footer {
    max-width: 800px;
    margin: 0 auto 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.article-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.article-tag {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.article-tag:hover {
    background: rgba(139, 92, 246, 0.2);
    color: var(--accent-purple);
}

.article-share {
    display: flex;
    align-items: center;
    gap: 16px;
}

.article-share span {
    font-size: 14px;
    color: var(--text-gray);
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--accent-purple);
    border-color: var(--accent-purple);
    color: white;
}

/* Related Articles */
.related-articles {
    max-width: 1000px;
    margin: 0 auto 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.related-articles h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.related-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.3);
}

.related-card-image {
    display: block;
    height: 180px;
    overflow: hidden;
}

.related-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-card:hover .related-card-image img {
    transform: scale(1.08);
}

.related-card-content {
    padding: 20px;
}

.related-card-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(139, 92, 246, 0.15);
    border-radius: 20px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-purple);
    margin-bottom: 12px;
}

.related-card-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-card-title a {
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-card-title a:hover {
    color: var(--accent-purple);
}

.related-card-date {
    font-size: 13px;
    color: var(--text-gray);
}

.no-related {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-gray);
    padding: 40px;
}

@media (max-width: 768px) {
    .related-articles-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .related-card {
        display: grid;
        grid-template-columns: 120px 1fr;
    }

    .related-card-image {
        height: 100%;
        min-height: 120px;
    }

    .related-card-content {
        padding: 16px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* Article CTA */
.article-cta {
    max-width: 800px;
    margin: 0 auto 80px;
}

.cta-content {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.15));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-card.featured {
        grid-column: span 2;
    }

    .newsletter-card {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .newsletter-form input {
        width: 100%;
    }

    .blog-footer .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 140px 0 60px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .blog-card.featured .blog-card-image {
        height: 200px;
        min-height: auto;
    }

    .blog-card.featured .blog-card-content {
        padding: 24px;
    }

    .blog-card.featured .blog-card-title {
        font-size: 22px;
    }

    .categories-wrapper {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        flex-wrap: nowrap;
    }

    .category-btn {
        flex-shrink: 0;
    }

    .blog-footer .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .article-meta {
        flex-direction: column;
        gap: 12px;
    }

    .article-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .cta-content {
        padding: 30px 20px;
    }
}

/* Empty State */
.blog-empty,
.blog-empty-state {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    min-height: 300px;
}

.blog-empty svg,
.blog-empty-state svg {
    width: 80px;
    height: 80px;
    color: var(--accent-purple);
    opacity: 0.4;
    margin-bottom: 24px;
}

.blog-empty h3,
.blog-empty-state h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-white);
}

.blog-empty p,
.blog-empty-state p {
    color: var(--text-gray);
    font-size: 16px;
    max-width: 400px;
}

/* Loading State */
.blog-loading {
    display: flex;
    justify-content: center;
    padding: 60px;
}

.blog-loading .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(139, 92, 246, 0.2);
    border-top-color: var(--accent-purple);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Glass Button Style */
.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 10px 10px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(139, 92, 246, 0.3);
    color: #fff;
}

.btn-glass .icon-wrap {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.btn-glass .icon-wrap svg {
    color: #fff;
}

.btn-glass:hover .icon-wrap {
    transform: translateX(3px);
}

/* Newsletter Button States */
.newsletter-form .btn-glass {
    position: relative;
    min-width: 160px;
    overflow: hidden;
}

.newsletter-form .btn-glass.loading {
    pointer-events: none;
}

.newsletter-form .btn-glass .btn-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.newsletter-form .btn-glass.success {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}

.newsletter-form .btn-glass.success .icon-wrap {
    background: linear-gradient(135deg, #10b981, #059669);
}

.newsletter-form .btn-glass .check-icon {
    animation: checkDraw 0.4s ease forwards;
}

@keyframes checkDraw {
    0% {
        stroke-dasharray: 50;
        stroke-dashoffset: 50;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        stroke-dasharray: 50;
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

/* Newsletter Success */
.newsletter-success {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 30px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    animation: successFadeIn 0.5s ease;
}

.newsletter-success .success-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    animation: successPop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.newsletter-success .success-icon svg {
    color: #fff;
}

.newsletter-success span {
    font-size: 16px;
    font-weight: 500;
    color: #10b981;
}

@keyframes successFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes successPop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}
