/* Plushie AI Blog CSS - Modern & Clean Design */

/* 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.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '✨';
    position: fixed;
    top: 10%;
    left: 5%;
    font-size: 1.5rem;
    opacity: 0.3;
    animation: twinkle 3s ease-in-out infinite;
    z-index: 0;
}

body::after {
    content: '⭐';
    position: fixed;
    top: 20%;
    right: 10%;
    font-size: 1.2rem;
    opacity: 0.4;
    animation: twinkle 4s ease-in-out infinite 1s;
    z-index: 0;
}

/* Floating Stars */
.floating-stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.star {
    position: absolute;
    font-size: 1rem;
    opacity: 0.3;
    animation: twinkle 3s ease-in-out infinite;
}

.star:nth-child(1) { top: 15%; left: 15%; animation-delay: 0s; }
.star:nth-child(2) { top: 25%; right: 20%; animation-delay: 1s; }
.star:nth-child(3) { bottom: 30%; left: 25%; animation-delay: 2s; }
.star:nth-child(4) { bottom: 40%; right: 15%; animation-delay: 3s; }
.star:nth-child(5) { top: 60%; left: 10%; animation-delay: 4s; }
.star:nth-child(6) { top: 80%; right: 30%; animation-delay: 5s; }
.star:nth-child(7) { top: 40%; left: 60%; animation-delay: 6s; }
.star:nth-child(8) { bottom: 20%; left: 70%; animation-delay: 7s; }

/* 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;
}

/* Modern AI Agent Home Link */
.ai-home-link {
    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: 20px 0;
}

.home-portal {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 15px 30px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.home-portal::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(158, 109, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

.home-portal:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(158, 109, 255, 0.3);
    border-color: rgba(158, 109, 255, 0.5);
}

.portal-icon {
    font-size: 2.5rem;
    animation: portalFloat 3s ease-in-out infinite;
}

.portal-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
    filter: drop-shadow(0 2px 8px rgba(158, 109, 255, 0.3));
    transition: all 0.3s ease;
}

.home-portal:hover .portal-logo {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(158, 109, 255, 0.5));
}

.portal-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.portal-title {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    background: linear-gradient(45deg, #d1bbff, #9e6dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.portal-subtitle {
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 600;
}

.portal-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.home-portal:hover .portal-arrow {
    transform: translateX(8px);
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at 30% 30%, #9e6dff, #6a3d99, #4a2c7a);
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
    animation: floatingPlanet1 20s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 40% 20%, #d1bbff, #9e6dff, #7c5ab8);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
    animation: floatingPlanet2 25s ease-in-out infinite;
}

/* Additional planets for hero */
.hero-container::before {
    content: '';
    position: absolute;
    bottom: -200px;
    left: 20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at 60% 40%, #6bcf7f, #4d96ff, #2d1b4e);
    border-radius: 50%;
    opacity: 0.08;
    z-index: 0;
    animation: floatingPlanet3 30s ease-in-out infinite;
}

.hero-container::after {
    content: '';
    position: absolute;
    top: -50px;
    right: 10%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at 25% 25%, #ffd93d, #ff6b8b, #4a2c7a);
    border-radius: 50%;
    opacity: 0.12;
    z-index: 0;
    animation: floatingPlanet4 18s ease-in-out infinite;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Fredoka One', cursive;
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.title-emoji {
    font-size: 4rem;
    animation: emojiFloat 3s ease-in-out infinite;
}

.title-sparkle {
    font-size: 2rem;
    animation: sparkleFloat 2s ease-in-out infinite;
}

.hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #d1bbff, #9e6dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 5px;
}

.hero-plushie {
    position: relative;
    text-align: center;
}

.hero-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.2);
    animation: heroFloat 4s ease-in-out infinite;
}

.floating-icons {
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    pointer-events: none;
}

.float-icon {
    position: absolute;
    font-size: 1.2rem;
    animation: floatAround 8s ease-in-out infinite;
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.float-icon:nth-child(1) { top: 5%; left: 15%; animation-delay: 0s; }
.float-icon:nth-child(2) { top: 15%; right: 10%; animation-delay: 2.4s; }
.float-icon:nth-child(3) { bottom: 35%; left: 5%; animation-delay: 4.8s; }
.float-icon:nth-child(4) { bottom: 10%; right: 25%; animation-delay: 7.2s; }
.float-icon:nth-child(5) { top: 45%; left: -5%; animation-delay: 9.6s; }

/* Main Content */
.main-content {
    padding: 60px 0;
    position: relative;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 100px;
    left: -200px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle at 50% 30%, #ff6b8b, #9e6dff, #2d1b4e);
    border-radius: 50%;
    opacity: 0.08;
    z-index: 0;
    animation: floatingPlanet5 35s ease-in-out infinite;
}

.main-content::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -180px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle at 35% 60%, #4d96ff, #6bcf7f, #1a0b2e);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
    animation: floatingPlanet6 28s ease-in-out infinite;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    gap: 30px;
}

.blog-post {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-post:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(158, 109, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
}

.blog-post.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.post-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    background: linear-gradient(45deg, #6bcf7f, #4d96ff);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    z-index: 2;
}

.featured-badge {
    background: linear-gradient(45deg, #ff6b8b, #ffd93d) !important;
}

.post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-post.featured .post-image {
    height: 300px;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.blog-post:hover .post-image img {
    transform: scale(1.05);
}

.post-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.read-time {
    color: #fff;
}

.post-content {
    padding: 25px;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.post-category {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.post-category.ai { background: rgba(158, 109, 255, 0.3); }
.post-category.defi { background: rgba(107, 207, 127, 0.3); }
.post-category.meme { background: rgba(255, 217, 61, 0.3); }
.post-category.tech { background: rgba(77, 150, 255, 0.3); }
.post-category.nft { background: rgba(255, 107, 139, 0.3); }
.post-category.community { background: rgba(255, 159, 135, 0.3); }

.post-date {
    font-size: 0.85rem;
    opacity: 0.7;
}

.post-title {
    font-family: 'Fredoka One', cursive;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #d1bbff;
    line-height: 1.4;
}

.blog-post.featured .post-title {
    font-size: 1.6rem;
}

.post-excerpt {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Post Actions */
.post-actions {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.read-more-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(45deg, #9e6dff, #d1bbff);
    border: none;
    border-radius: 15px;
    color: #fff;
    font-family: 'Comic Neue', cursive;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(158, 109, 255, 0.4);
}

.arrow {
    transition: transform 0.3s ease;
}

.read-more-btn:hover .arrow {
    transform: translateX(5px);
}

/* Sidebar */
.blog-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;
}

.widget-title {
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #d1bbff;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateX(5px);
}

.category-icon {
    font-size: 1.1rem;
}

.category-name {
    flex: 1;
    font-weight: 600;
}

.category-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-post {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.popular-post:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    text-decoration: none;
    color: inherit;
}

.popular-post-image {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
}

.popular-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-post-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ffffff !important;
}

.popular-post-meta {
    font-size: 0.8rem;
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.7) !important;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-item {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: linear-gradient(45deg, #9e6dff, #d1bbff);
    color: #fff;
    transform: translateY(-2px);
}

.tag-all {
    background: linear-gradient(45deg, #6bcf7f, #4d96ff) !important;
    color: #fff !important;
    font-weight: 700;
    border: 2px solid rgba(107, 207, 127, 0.5) !important;
}

.tag-all:hover {
    background: linear-gradient(45deg, #4d96ff, #6bcf7f) !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(107, 207, 127, 0.4);
}

.newsletter-widget {
    background: linear-gradient(45deg, rgba(158, 109, 255, 0.2), rgba(209, 187, 255, 0.1)) !important;
}

.newsletter-text {
    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);
}

/* Load More Section */
.load-more-section {
    padding: 60px 0;
    text-align: center;
}

.load-more-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: #fff;
    font-family: 'Comic Neue', cursive;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.load-more-btn:hover {
    background: linear-gradient(45deg, #9e6dff, #d1bbff);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(158, 109, 255, 0.3);
}

.load-icon {
    font-size: 1.3rem;
}

.load-arrow {
    transition: transform 0.3s ease;
}

.load-more-btn:hover .load-arrow {
    transform: translateY(3px);
}

.load-more-text {
    opacity: 0.8;
    margin-top: 10px;
}

/* Footer */
.blog-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;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    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);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Animations */
@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes portalFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(5deg); }
}

@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 emojiFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes sparkleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(180deg); }
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes floatingPlanet1 {
    0%, 100% { 
        transform: translateX(0) translateY(0) scale(1); 
    }
    33% { 
        transform: translateX(20px) translateY(-15px) scale(1.05); 
    }
    66% { 
        transform: translateX(-15px) translateY(10px) scale(0.95); 
    }
}

@keyframes floatingPlanet2 {
    0%, 100% { 
        transform: translateX(0) translateY(0) scale(1) rotate(0deg); 
    }
    50% { 
        transform: translateX(-30px) translateY(20px) scale(1.1) rotate(180deg); 
    }
}

@keyframes floatingPlanet3 {
    0%, 100% { 
        transform: translateX(0) translateY(0) scale(1); 
    }
    33% { 
        transform: translateX(40px) translateY(-25px) scale(1.05); 
    }
    66% { 
        transform: translateX(-30px) translateY(15px) scale(0.95); 
    }
}

@keyframes floatingPlanet4 {
    0%, 100% { 
        transform: translateX(0) translateY(0) rotate(0deg) scale(1); 
    }
    25% { 
        transform: translateX(15px) translateY(-20px) rotate(90deg) scale(1.1); 
    }
    50% { 
        transform: translateX(-10px) translateY(-5px) rotate(180deg) scale(0.9); 
    }
    75% { 
        transform: translateX(20px) translateY(10px) rotate(270deg) scale(1.05); 
    }
}

@keyframes floatingPlanet5 {
    0%, 100% { 
        transform: translateX(0) translateY(0) scale(1); 
    }
    33% { 
        transform: translateX(50px) translateY(-30px) scale(1.08); 
    }
    66% { 
        transform: translateX(-25px) translateY(20px) scale(0.92); 
    }
}

@keyframes floatingPlanet6 {
    0%, 100% { 
        transform: translateX(0) translateY(0) rotate(0deg) scale(1); 
    }
    50% { 
        transform: translateX(35px) translateY(-40px) rotate(180deg) scale(1.15); 
    }
}

@keyframes floatAround {
    0% { 
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); 
        opacity: 0.8; 
    }
    25% { 
        transform: translateY(-20px) translateX(15px) rotate(90deg) scale(1.1); 
        opacity: 1; 
    }
    50% { 
        transform: translateY(-10px) translateX(-12px) rotate(180deg) scale(0.9); 
        opacity: 0.9; 
    }
    75% { 
        transform: translateY(-25px) translateX(18px) rotate(270deg) scale(1.05); 
        opacity: 1; 
    }
    100% { 
        transform: translateY(0px) translateX(0px) rotate(360deg) scale(1); 
        opacity: 0.8; 
    }
}

@keyframes twinkle {
    0%, 100% { 
        opacity: 0.2; 
        transform: scale(1); 
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1.2); 
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
        justify-content: center;
    }
    
    .content-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blog-post.featured {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .hero-avatar {
        width: 150px;
        height: 150px;
    }
    
    .float-icon {
        font-size: 1rem;
        animation: floatAround 6s ease-in-out infinite;
    }
    
    .blog-grid {
        gap: 20px;
    }
    
    .post-actions {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .title-emoji, .title-sparkle {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .post-content {
        padding: 20px;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
} 