/* Plushie AI Article CSS - Modern Reading Experience */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Comic Neue', cursive;
    background: linear-gradient(135deg, 
        #1a0b2e 0%, 
        #2d1b4e 25%, 
        #4a2c7a 50%, 
        #6a3d99 75%, 
        #8b4fb8 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    color: #fff;
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Magic Cursor */
.magic-cursor {
    position: fixed;
    width: 16px;
    height: 16px;
    background: radial-gradient(circle, #d1bbff, #9e6dff);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a0b2e, #4a2c7a);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.loading-plushie {
    text-align: center;
}

.loading-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    animation: loadingFloat 2s ease-in-out infinite;
    margin-bottom: 20px;
}

.loading-text {
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #d1bbff;
}

.loading-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(45deg, #9e6dff, #d1bbff);
    border-radius: 2px;
    animation: loadingProgress 2s ease forwards;
}

/* Reading Progress Bar */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1001;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #9e6dff, #d1bbff);
    width: 0%;
    transition: width 0.1s ease;
}

/* Header */
.article-header {
    position: sticky;
    top: 0;
    background: rgba(26, 11, 46, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(158, 109, 255, 0.3);
}

.back-icon {
    font-size: 1.2rem;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: avatarGlow 3s ease-in-out infinite;
}

.brand-name {
    font-family: 'Fredoka One', cursive;
    font-size: 1.3rem;
    background: linear-gradient(45deg, #d1bbff, #9e6dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-btn, .home-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Comic Neue', cursive;
}

.share-btn {
    border: none;
}

.share-btn:hover, .home-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(158, 109, 255, 0.3);
}

/* Article Hero */
.article-hero {
    padding: 80px 0 60px;
    position: relative;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.article-category {
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.article-category.ai {
    background: rgba(158, 109, 255, 0.3);
    border: 1px solid rgba(158, 109, 255, 0.5);
}

.publish-date, .read-time {
    opacity: 0.8;
    font-weight: 600;
}

.article-title {
    font-family: 'Fredoka One', cursive;
    font-size: 3rem;
    margin-bottom: 25px;
    background: linear-gradient(45deg, #d1bbff, #9e6dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.author-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.author-avatar {
    width: 60px;
    height: 60px;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.author-details {
    text-align: left;
}

.author-name {
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    color: #d1bbff;
    margin-bottom: 5px;
}

.author-bio {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Table of Contents */
.table-of-contents {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px;
    z-index: 900;
    max-width: 250px;
    transition: all 0.3s ease;
}

.toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.toc-header h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    color: #d1bbff;
}

.toc-toggle {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.toc-toggle:hover {
    transform: scale(1.1);
}

.toc-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toc-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 8px 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.toc-link:hover, .toc-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-left-color: #9e6dff;
    transform: translateX(5px);
}

/* Main Article */
.article-main {
    padding: 0 0 60px;
}

.article-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: start;
}

.article-content {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 40px;
    max-width: none;
}

/* Article Image */
.article-image {
    text-align: center;
    margin-bottom: 40px;
}

.article-image img {
    width: 100%;
    max-width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.image-caption {
    margin-top: 15px;
    font-style: italic;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Article Introduction */
.article-intro {
    margin-bottom: 40px;
}

.intro-text {
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.highlight-box {
    background: rgba(158, 109, 255, 0.15);
    border: 1px solid rgba(158, 109, 255, 0.3);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.highlight-icon {
    font-size: 1.5rem;
    margin-top: 2px;
}

.highlight-content h4 {
    font-family: 'Fredoka One', cursive;
    color: #d1bbff;
    margin-bottom: 8px;
}

/* Article Sections */
.article-section {
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    color: #d1bbff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.article-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(158, 109, 255, 0.2);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.feature-card h4 {
    font-family: 'Fredoka One', cursive;
    color: #d1bbff;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Code Block */
.code-block {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    margin: 30px 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.code-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.code-title {
    font-family: 'Fredoka One', cursive;
    color: #d1bbff;
}

.copy-btn {
    background: rgba(158, 109, 255, 0.3);
    border: 1px solid rgba(158, 109, 255, 0.5);
    border-radius: 8px;
    color: #fff;
    padding: 5px 10px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Comic Neue', cursive;
}

.copy-btn:hover {
    background: rgba(158, 109, 255, 0.5);
}

.code-block pre {
    padding: 20px;
    margin: 0;
    overflow-x: auto;
}

.code-block code {
    color: #d1bbff;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Stats Showcase */
.stats-showcase {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
}

.stats-showcase h4 {
    font-family: 'Fredoka One', cursive;
    color: #d1bbff;
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    color: #9e6dff;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Trend Example */
.trend-example {
    margin: 30px 0;
}

.trend-example h4 {
    font-family: 'Fredoka One', cursive;
    color: #d1bbff;
    margin-bottom: 20px;
    text-align: center;
}

.trend-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.trend-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.trend-card:hover {
    transform: translateY(-3px);
}

.trend-card.rising {
    border-color: rgba(107, 207, 127, 0.5);
    background: rgba(107, 207, 127, 0.1);
}

.trend-card.hot {
    border-color: rgba(255, 107, 139, 0.5);
    background: rgba(255, 107, 139, 0.1);
}

.trend-card.cooling {
    border-color: rgba(77, 150, 255, 0.5);
    background: rgba(77, 150, 255, 0.1);
}

.trend-status {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.trend-name {
    font-family: 'Fredoka One', cursive;
    color: #d1bbff;
    margin-bottom: 5px;
}

.trend-confidence {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Chat Demo */
.chat-demo {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    margin: 30px 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-header {
    background: rgba(158, 109, 255, 0.2);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-header img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.chat-header span {
    font-family: 'Fredoka One', cursive;
    color: #d1bbff;
}

.chat-messages {
    padding: 20px;
}

.message {
    margin-bottom: 15px;
    padding: 12px 18px;
    border-radius: 15px;
    max-width: 80%;
}

.user-message {
    background: rgba(158, 109, 255, 0.3);
    margin-left: auto;
    text-align: right;
}

.ai-message {
    background: rgba(255, 255, 255, 0.1);
}

/* Interactive Showcase */
.interactive-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.game-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(158, 109, 255, 0.2);
}

.game-card h4 {
    font-family: 'Fredoka One', cursive;
    color: #d1bbff;
    margin-bottom: 10px;
}

.game-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.play-btn {
    background: linear-gradient(45deg, #9e6dff, #d1bbff);
    border: none;
    border-radius: 10px;
    color: #fff;
    padding: 8px 15px;
    font-family: 'Comic Neue', cursive;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(158, 109, 255, 0.4);
}

/* Roadmap */
.roadmap {
    margin: 30px 0;
}

.roadmap-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-left: 15px;
    position: relative;
}

.roadmap-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 40px;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(158, 109, 255, 0.5), transparent);
}

.roadmap-marker {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.roadmap-item.completed .roadmap-marker {
    background: rgba(107, 207, 127, 0.3);
    border: 2px solid rgba(107, 207, 127, 0.5);
}

.roadmap-item.current .roadmap-marker {
    background: rgba(255, 217, 61, 0.3);
    border: 2px solid rgba(255, 217, 61, 0.5);
}

.roadmap-item.future .roadmap-marker {
    background: rgba(158, 109, 255, 0.3);
    border: 2px solid rgba(158, 109, 255, 0.5);
}

.roadmap-content h4 {
    font-family: 'Fredoka One', cursive;
    color: #d1bbff;
    margin-bottom: 5px;
}

.roadmap-content p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Article Conclusion */
.article-conclusion {
    background: rgba(158, 109, 255, 0.1);
    border: 1px solid rgba(158, 109, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
}

.conclusion-content h3 {
    font-family: 'Fredoka One', cursive;
    color: #d1bbff;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.conclusion-content p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.conclusion-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(45deg, #9e6dff, #d1bbff);
    border-radius: 15px;
    color: #fff;
    text-decoration: none;
    font-family: 'Comic Neue', cursive;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(158, 109, 255, 0.3);
}

/* Article Sidebar */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 25px;
}

.sidebar-widget h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #d1bbff;
}

/* Action Widget */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #fff;
    font-family: 'Comic Neue', cursive;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.action-icon {
    font-size: 1.1rem;
}

.action-text {
    flex: 1;
}

.action-count {
    background: rgba(158, 109, 255, 0.3);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
}

/* Related Articles */
.related-articles {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-article {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.related-article:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.related-image {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #d1bbff;
    line-height: 1.3;
}

.related-meta {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(45deg, rgba(158, 109, 255, 0.2), rgba(209, 187, 255, 0.1)) !important;
}

.newsletter-widget p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-input {
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #fff;
    font-family: 'Comic Neue', cursive;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    border-color: #9e6dff;
    box-shadow: 0 0 15px rgba(158, 109, 255, 0.3);
}

.newsletter-btn {
    padding: 12px 20px;
    background: linear-gradient(45deg, #9e6dff, #d1bbff);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-family: 'Comic Neue', cursive;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(158, 109, 255, 0.4);
}

/* Comments Section */
.comments-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 60px 0;
}

.comments-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.comments-header h3 {
    font-family: 'Fredoka One', cursive;
    color: #d1bbff;
    font-size: 1.5rem;
}

.sort-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    padding: 8px 15px;
    font-family: 'Comic Neue', cursive;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Add Comment */
.add-comment {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.comment-avatar {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.comment-form {
    flex: 1;
}

.comment-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #fff;
    padding: 15px;
    font-family: 'Comic Neue', cursive;
    resize: vertical;
    min-height: 80px;
    outline: none;
}

.comment-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.comment-input:focus {
    border-color: #9e6dff;
    box-shadow: 0 0 15px rgba(158, 109, 255, 0.3);
}

.comment-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.emoji-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.emoji-btn:hover {
    transform: scale(1.2);
}

.post-comment-btn {
    background: linear-gradient(45deg, #9e6dff, #d1bbff);
    border: none;
    border-radius: 10px;
    color: #fff;
    padding: 8px 15px;
    font-family: 'Comic Neue', cursive;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.post-comment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(158, 109, 255, 0.4);
}

/* Comments List */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.comment {
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.comment:hover {
    background: rgba(255, 255, 255, 0.12);
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.commenter-name {
    font-family: 'Fredoka One', cursive;
    color: #d1bbff;
    font-size: 0.95rem;
}

.comment-time {
    opacity: 0.7;
    font-size: 0.8rem;
}

.comment-text {
    line-height: 1.6;
    margin-bottom: 15px;
}

.comment-actions {
    display: flex;
    gap: 15px;
}

.comment-like, .comment-reply {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Comic Neue', cursive;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comment-like:hover, .comment-reply:hover {
    color: #d1bbff;
    transform: scale(1.05);
}

.load-more-comments {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: #fff;
    font-family: 'Comic Neue', cursive;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.load-more-comments:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Footer */
.article-footer {
    background: rgba(26, 11, 46, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.footer-info h3 {
    font-family: 'Fredoka One', cursive;
    margin-bottom: 5px;
    color: #d1bbff;
}

.footer-info p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #d1bbff;
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #d1bbff;
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .table-of-contents {
        left: 10px;
        max-width: 200px;
    }
    
    .article-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .article-sidebar {
        order: -1;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .table-of-contents {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: none;
        margin-bottom: 30px;
    }
    
    .article-title {
        font-size: 2.2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .author-info {
        flex-direction: column;
        text-align: center;
    }
    
    .author-details {
        text-align: center;
    }
    
    .article-content {
        padding: 25px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .trend-cards {
        grid-template-columns: 1fr;
    }
    
    .interactive-showcase {
        grid-template-columns: 1fr;
    }
    
    .conclusion-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .add-comment {
        flex-direction: column;
    }
    
    .comment {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 1.8rem;
    }
    
    .article-subtitle {
        font-size: 1.1rem;
    }
    
    .article-content {
        padding: 20px;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
.join-btn {
    margin: 25px auto 0 auto;
    display: block;
    background: linear-gradient(45deg, #9e6dff, #d1bbff);
    color: #fff;
    font-family: 'Comic Neue', cursive;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 14px 38px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(158, 109, 255, 0.18);
    transition: all 0.25s cubic-bezier(.4,1,.7,1);
    letter-spacing: 1px;
}

.join-btn:hover, .join-btn:focus {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 15px 34px rgba(158, 109, 255, 0.28);
    background: linear-gradient(45deg, #d1bbff, #9e6dff);
}

/* Animations */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes loadingFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

@keyframes loadingProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes avatarGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(158, 109, 255, 0.3); }
    50% { box-shadow: 0 0 30px rgba(158, 109, 255, 0.6); }
}
</rewritten_file> 