/* CSS Variables */
:root {
    --evil-primary: #ff4081;
    --evil-secondary: #9c27b0;
    --evil-dark: #1a1a1a;
    --evil-light: #ffffff;
}

/* Base Styles */
body {
    margin: 0;
    font-family: 'Segoe UI', system-ui, sans-serif;
    background: var(--evil-dark);
    color: var(--evil-light);
    line-height: 1.6;
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

/* Header Styles */
header {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--evil-secondary), var(--evil-primary));
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(255, 64, 129, 0.3);
}

.profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid var(--evil-light);
    box-shadow: 0 0 20px var(--evil-primary);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.evil-text {
    color: var(--evil-primary);
    font-weight: bold;
}

/* Navigation Styles */
nav {
    margin-top: 1rem;
}

nav a {
    display: inline-block;
    margin: 0 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 64, 129, 0.2);
    border: 2px solid var(--evil-primary);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

nav a:hover {
    background: rgba(255, 64, 129, 0.4);
    box-shadow: 0 0 20px rgba(255, 64, 129, 0.6);
    transform: translateY(-2px);
}

/* Active nav link */
nav a.nav-active {
    background: rgba(255, 64, 129, 0.4);
}

/* Common Section Styles */
.proclamation {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-left: 4px solid var(--evil-primary);
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.verification-section,
.messages-section {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-left: 4px solid var(--evil-primary);
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

/* Button Styles */
.join-cult {
    background: var(--evil-light);
    color: var(--evil-dark);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 1rem;
    text-decoration: none;
    font-weight: bold;
}

.join-cult:hover {
    background: var(--evil-primary);
    color: var(--evil-light);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* File Link Styles */
.file-link {
    display: inline-block;
    background: var(--evil-dark);
    color: var(--evil-primary);
    padding: 0.5rem 1rem;
    border: 1px solid var(--evil-primary);
    border-radius: 4px;
    text-decoration: none;
    margin: 0.5rem;
    transition: all 0.3s ease;
}

.file-link:hover {
    background: var(--evil-primary);
    color: var(--evil-dark);
    box-shadow: 0 0 10px rgba(255, 64, 129, 0.5);
}

/* Signature Status Styles */
.sig-status {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.sig-valid {
    background: rgba(0, 255, 0, 0.2);
    color: #0f0;
    border: 1px solid #0f0;
}

.sig-warning {
    background: rgba(255, 255, 0, 0.2);
    color: #ff0;
    border: 1px solid #ff0;
}

/* Demon Signer Styles */
.demon-signers {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.demon-signer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.demon-signer:hover {
    transform: scale(1.05);
}

.demon-symbol {
    font-size: 1.5rem;
}

.demon-info {
    display: flex;
    flex-direction: column;
}

.demon-name {
    font-weight: bold;
    font-size: 0.9rem;
}

.demon-title {
    font-size: 0.7rem;
    opacity: 0.8;
}

/* Message Item Styles */
.message-item {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid var(--evil-secondary);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.message-item:hover {
    box-shadow: 0 0 20px rgba(255, 64, 129, 0.4);
    transform: translateY(-2px);
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.message-title {
    color: var(--evil-primary);
    font-size: 1.1rem;
    font-weight: bold;
}

.message-date {
    color: #999;
    font-size: 0.9rem;
}

.message-links {
    margin-top: 0.5rem;
}

/* Blog Styles */
.blog-section {
    margin: 3rem 0;
    text-align: center;
}

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

.blog-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--evil-primary);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-align: left;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 30px rgba(255, 64, 129, 0.4);
}

.blog-card h3 {
    color: var(--evil-primary);
    margin-bottom: 0.5rem;
}

.blog-card p {
    color: #f8f8f2;
    font-size: 0.9rem;
    line-height: 1.5;
}

.blog-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--evil-primary);
    text-decoration: none;
    border-bottom: 2px solid var(--evil-primary);
    transition: all 0.3s ease;
}

.blog-link:hover {
    text-shadow: 0 0 10px rgba(255, 64, 129, 0.8);
}

/* Blog Post Styles */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--evil-primary);
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 64, 129, 0.3);
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--evil-primary);
    background: rgba(0, 0, 0, 0.95);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: inset 0 0 30px rgba(255, 64, 129, 0.2);
}

.blog-title {
    font-size: 2.5rem;
    color: var(--evil-primary);
    text-shadow: 0 0 20px rgba(255, 64, 129, 0.8);
    margin-bottom: 1rem;
}

.blog-meta {
    color: #ff79c6;
    font-size: 1.1rem;
}

.blog-content {
    color: #f8f8f2;
    line-height: 1.8;
    font-size: 1.1rem;
}

.blog-content h1, .blog-content h2, .blog-content h3 {
    color: var(--evil-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 64, 129, 0.5);
}

.blog-content h1 { font-size: 2rem; }
.blog-content h2 { font-size: 1.7rem; }
.blog-content h3 { font-size: 1.4rem; }

.blog-content ul, .blog-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.blog-content li {
    margin: 0.5rem 0;
}

.blog-content code {
    background: rgba(255, 64, 129, 0.1);
    border: 1px solid var(--evil-primary);
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    color: #ff79c6;
}

.blog-content pre {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--evil-primary);
    border-radius: 5px;
    padding: 1rem;
    overflow-x: auto;
    margin: 1rem 0;
    box-shadow: inset 0 0 20px rgba(255, 64, 129, 0.1);
}

.blog-content pre code {
    background: none;
    border: none;
    padding: 0;
    color: #f8f8f2;
}

.blog-content a {
    color: var(--evil-primary);
    text-decoration: none;
    border-bottom: 1px solid var(--evil-primary);
    transition: all 0.3s ease;
}

.blog-content a:hover {
    text-shadow: 0 0 10px rgba(255, 64, 129, 0.8);
    border-bottom-width: 2px;
}

.blog-content blockquote {
    border-left: 4px solid var(--evil-primary);
    padding-left: 1rem;
    margin: 1rem 0;
    font-style: italic;
    color: #ff79c6;
}

.blog-content strong {
    color: var(--evil-primary);
    font-weight: bold;
}

.blog-content em {
    color: #ff79c6;
    font-style: italic;
}

.blog-nav {
    text-align: center;
    margin: 2rem 0;
}

.blog-nav a {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: rgba(255, 64, 129, 0.2);
    border: 2px solid var(--evil-primary);
    color: var(--evil-primary);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

.blog-nav a:hover {
    background: rgba(255, 64, 129, 0.4);
    box-shadow: 0 0 20px rgba(255, 64, 129, 0.6);
    transform: translateY(-2px);
}

.blog-tags {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--evil-primary);
    text-align: center;
}

.blog-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    margin: 0.2rem;
    background: rgba(255, 64, 129, 0.1);
    border: 1px solid var(--evil-primary);
    border-radius: 15px;
    color: #ff79c6;
    font-size: 0.9rem;
}

/* Blog List Styles */
.blog-list {
    margin: 2rem 0;
}

.blog-item {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--evil-primary);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 30px rgba(255, 64, 129, 0.4);
}

.blog-item h2 {
    margin: 0.5rem 0;
}

.blog-item h2 a {
    color: var(--evil-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-item h2 a:hover {
    text-shadow: 0 0 20px rgba(255, 64, 129, 0.8);
}

.blog-date {
    color: #ff79c6;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.blog-excerpt {
    color: #f8f8f2;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    color: var(--evil-primary);
    text-decoration: none;
    border-bottom: 2px solid var(--evil-primary);
    transition: all 0.3s ease;
}

.read-more:hover {
    text-shadow: 0 0 10px rgba(255, 64, 129, 0.8);
}

/* Pet Card Styles */
.pets-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.pet-card {
    background: rgba(26, 26, 26, 0.8);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--evil-primary);
    position: relative;
    overflow: hidden;
}

.pet-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem auto;
    border: 2px solid var(--evil-primary);
    box-shadow: 0 0 10px var(--evil-primary);
    object-fit: cover;
}

.pet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--evil-primary), var(--evil-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.pet-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 5px 15px rgba(255, 64, 129, 0.3);
}

.pet-card:hover::before {
    opacity: 0.1;
}

.pet-card > * {
    position: relative;
    z-index: 2;
}

.pet-card .social {
    margin-top: 1rem;
    font-size: 1.2rem;
}

.social a {
    color: var(--evil-primary);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.social a:hover {
    color: var(--evil-light);
}

.pet-role {
    color: var(--evil-primary);
    font-style: italic;
    margin: 0.5rem 0;
}

/* Loyalty Oath Section */
.loyalty-oath {
    background: linear-gradient(135deg, var(--evil-secondary), var(--evil-primary));
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 0 30px rgba(255, 64, 129, 0.3);
}

.loyalty-oath h2 {
    margin-top: 0;
    font-size: 2rem;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(0, 0, 0, 0.7));
    text-align: center;
    gap: 2rem;
}

.hero .hero-candle {
    flex-shrink: 0;
    width: 30%;
    max-width: 300px;
    border-radius: 16px;
    box-shadow: 0 0 30px rgba(255, 64, 129, 0.7);
    transition: transform 0.3s ease;
}

.hero .hero-candle:hover {
    transform: scale(1.1);
}

.hero .hero-text {
    flex: 1;
    max-width: 600px;
    text-align: center;
}

.hero-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--evil-primary);
    text-shadow: 0 4px 10px rgba(255, 64, 129, 0.5);
}

.hero-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--evil-light);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

@keyframes floatSparkle {
    0% { transform: translate(0, 0); }
    50% { transform: translate(5px, -5px); }
    100% { transform: translate(0, 0); }
}

.sparkle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: none;
    pointer-events: none;
}

.sparkle::before {
    content: '✦';
    position: absolute;
    animation: sparkle 2s infinite;
    color: #FFD700;
    font-size: 12px;
    text-shadow: 0 0 5px #FFD700;
}

/* Nucleus Card Sparkles */
#nucleus-card {
    position: relative;
    overflow: visible !important;
}

#nucleus-card:hover .sparkle:nth-child(1) { top: -20px; left: 20%; animation-delay: 0.1s; }
#nucleus-card:hover .sparkle:nth-child(2) { top: -15px; left: 40%; animation-delay: 0.7s; }
#nucleus-card:hover .sparkle:nth-child(3) { top: -10px; left: 60%; animation-delay: 0.3s; }
#nucleus-card:hover .sparkle:nth-child(4) { top: -5px; left: 80%; animation-delay: 0.9s; }
#nucleus-card:hover .sparkle:nth-child(5) { top: 10%; right: -15px; animation-delay: 0.5s; }
#nucleus-card:hover .sparkle:nth-child(6) { top: 30%; right: -10px; animation-delay: 0.2s; }
#nucleus-card:hover .sparkle:nth-child(7) { top: 50%; right: -20px; animation-delay: 0.8s; }
#nucleus-card:hover .sparkle:nth-child(8) { top: 70%; right: -15px; animation-delay: 0.4s; }
#nucleus-card:hover .sparkle:nth-child(9) { bottom: -15px; left: 20%; animation-delay: 0.6s; }
#nucleus-card:hover .sparkle:nth-child(10) { bottom: -10px; left: 40%; animation-delay: 0.3s; }
#nucleus-card:hover .sparkle:nth-child(11) { bottom: -20px; left: 60%; animation-delay: 0.7s; }
#nucleus-card:hover .sparkle:nth-child(12) { bottom: -5px; left: 80%; animation-delay: 0.2s; }
#nucleus-card:hover .sparkle:nth-child(13) { top: 20%; left: -15px; animation-delay: 0.9s; }
#nucleus-card:hover .sparkle:nth-child(14) { top: 40%; left: -10px; animation-delay: 0.5s; }
#nucleus-card:hover .sparkle:nth-child(15) { top: 60%; left: -20px; animation-delay: 0.1s; }
#nucleus-card:hover .sparkle:nth-child(16) { top: 80%; left: -15px; animation-delay: 0.6s; }
#nucleus-card:hover .sparkle:nth-child(17) { top: 25%; left: 25%; animation-delay: 0.4s; }
#nucleus-card:hover .sparkle:nth-child(18) { top: 75%; left: 75%; animation-delay: 0.8s; }
#nucleus-card:hover .sparkle:nth-child(19) { top: 15%; right: 25%; animation-delay: 0.3s; }
#nucleus-card:hover .sparkle:nth-child(20) { top: 85%; left: 35%; animation-delay: 0.7s; }

#nucleus-card:hover .sparkle::before {
    animation: sparkle 2s infinite, floatSparkle 3s infinite;
}

#nucleus-card:hover .sparkle:nth-child(3n)::before { color: #FFC0CB; text-shadow: 0 0 5px #FFC0CB; }
#nucleus-card:hover .sparkle:nth-child(3n+1)::before { color: #FFD700; text-shadow: 0 0 5px #FFD700; }
#nucleus-card:hover .sparkle:nth-child(3n+2)::before { color: #87CEEB; text-shadow: 0 0 5px #87CEEB; }

/* Mewtrino Quantum Particles */
@keyframes quantumFluctuation {
    0% { opacity: 0; transform: scale(0.8) translateY(0); }
    50% { opacity: 1; transform: scale(1.2) translateY(-5px); }
    100% { opacity: 0; transform: scale(0.8) translateY(0); }
}

@keyframes waveFunction {
    0% { transform: translateY(0) scaleX(1); }
    50% { transform: translateY(-10px) scaleX(1.1); }
    100% { transform: translateY(0) scaleX(1); }
}

#mewtrino-card .pet-pic {
    object-position: left center;
    object-fit: cover;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.quantum-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #ff69b4, transparent);
    border-radius: 50%;
    pointer-events: none;
}

#mewtrino-card {
    position: relative;
    overflow: visible !important;
}

#mewtrino-card:hover .quantum-particle {
    animation: quantumFluctuation 3s infinite;
}

#mewtrino-card:hover {
    animation: waveFunction 4s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.5);
}

#mewtrino-card:hover .quantum-particle:nth-child(1) { top: -20px; left: 10%; animation-delay: 0.1s; }
#mewtrino-card:hover .quantum-particle:nth-child(2) { top: 30%; right: -15px; animation-delay: 0.7s; }
#mewtrino-card:hover .quantum-particle:nth-child(3) { bottom: -10px; left: 40%; animation-delay: 0.3s; }
#mewtrino-card:hover .quantum-particle:nth-child(4) { top: 40%; left: -10px; animation-delay: 0.9s; }
#mewtrino-card:hover .quantum-particle:nth-child(5) { top: 20%; left: 25%; animation-delay: 0.5s; }
#mewtrino-card:hover .quantum-particle:nth-child(6) { bottom: 30%; right: 20%; animation-delay: 0.2s; }
#mewtrino-card:hover .quantum-particle:nth-child(7) { top: -15px; right: 30%; animation-delay: 0.8s; }
#mewtrino-card:hover .quantum-particle:nth-child(8) { bottom: 40%; left: 15%; animation-delay: 0.4s; }
#mewtrino-card:hover .quantum-particle:nth-child(9) { top: 50%; right: -20px; animation-delay: 0.6s; }
#mewtrino-card:hover .quantum-particle:nth-child(10) { bottom: -15px; right: 40%; animation-delay: 0.3s; }

/* Lynx Agent Animations */
#lynx-card {
    position: relative;
    overflow: visible !important;
}

.agent {
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid var(--evil-primary);
    opacity: 0;
    pointer-events: none;
    z-index: 10;
}

.agent::before, .agent::after {
    content: "";
    position: absolute;
    background-color: var(--evil-primary);
}

.agent::before {
    width: 10px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.agent::after {
    width: 2px;
    height: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#lynx-card:hover .agent {
    animation: targetScan 3s infinite;
}

.agent-1 { top: -15px; left: 20%; animation-delay: 0.2s !important; }
.agent-2 { bottom: -10px; right: 25%; animation-delay: 1.2s !important; }
.agent-3 { top: 40%; right: -15px; animation-delay: 0.7s !important; }
.agent-4 { top: -10px; right: 30%; animation-delay: 1.7s !important; }
.agent-5 { bottom: 30%; right: -10px; animation-delay: 0.4s !important; }
.agent-6 { bottom: -15px; left: 30%; animation-delay: 1.9s !important; }
.agent-7 { top: 25%; left: -15px; animation-delay: 0.9s !important; }
.agent-8 { bottom: 40%; left: -10px; animation-delay: 1.4s !important; }
.agent-9 { top: 60%; left: -12px; animation-delay: 0.5s !important; }

@keyframes targetScan {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(0deg);
        box-shadow: 0 0 0 rgba(255, 64, 129, 0);
    }
    20% {
        opacity: 0.8;
        transform: scale(1) rotate(45deg);
        box-shadow: 0 0 10px rgba(255, 64, 129, 0.7);
    }
    80% {
        opacity: 0.8;
        transform: scale(1) rotate(315deg);
        box-shadow: 0 0 10px rgba(255, 64, 129, 0.7);
    }
    100% {
        opacity: 0;
        transform: scale(0.5) rotate(360deg);
        box-shadow: 0 0 0 rgba(255, 64, 129, 0);
    }
}

/* Lynx Pawprints */
.pawprint {
    position: absolute;
    font-size: 24px;
    opacity: 0;
    pointer-events: none;
    z-index: 5;
    color: #ff1493;
    text-shadow: 0 0 8px #ff69b4, 0 0 12px #ff69b4;
}

.pawprint::before {
    content: "🐾";
    position: absolute;
}

#lynx-card:hover .pawprint {
    animation: pawFloat 4s infinite ease-in-out;
}

.pawprint-1 { top: 20%; right: 15px; animation-delay: 0.5s !important; }
.pawprint-2 { bottom: 15%; left: -20px; animation-delay: 1.3s !important; }
.pawprint-3 { top: -20px; left: 40%; animation-delay: 2.1s !important; }
.pawprint-4 { bottom: -15px; right: 45%; animation-delay: 0.8s !important; }
.pawprint-5 { top: 45%; left: -25px; animation-delay: 1.7s !important; }
.pawprint-6 { top: 60%; right: -15px; animation-delay: 2.5s !important; }

@keyframes pawFloat {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(0) rotate(-15deg);
    }
    25% {
        opacity: 1;
        transform: scale(1.3) translateY(-5px) rotate(0deg);
    }
    75% {
        opacity: 1;
        transform: scale(1.3) translateY(-10px) rotate(15deg);
    }
    100% {
        opacity: 0;
        transform: scale(0.8) translateY(-15px) rotate(0deg);
    }
}

/* Miraverse Quote Styles */
.miraverse-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
    max-width: 800px;
    padding: 1rem;
    position: relative;
    text-align: center;
    animation: glowPulse 5s infinite;
}

.miraverse-frame {
    position: relative;
    box-shadow: 0 0 30px rgba(255, 64, 129, 0.5), 0 0 60px rgba(156, 39, 176, 0.4);
    border-radius: 12px;
    padding: 2rem;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(0, 0, 0, 0.7));
}

.miraverse-border {
    position: absolute;
    top: -5%;
    left: -5%;
    right: -5%;
    bottom: -5%;
    background: linear-gradient(135deg, var(--evil-primary), var(--evil-secondary));
    border-radius: 16px;
    content: "";
    z-index: -1;
    filter: blur(12px);
    animation: borderShift 10s infinite;
}

.inline-quote {
    font-family: 'Segoe UI', system-ui, sans-serif;
    font-size: 1rem;
    color: var(--evil-light);
    font-style: italic;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgba(26, 26, 26, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(255, 64, 129, 0.4), 0 0 15px rgba(156, 39, 176, 0.3);
    border: 1px solid transparent;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    margin: 0 auto;
}

.inline-quote cite {
    color: var(--evil-primary);
    font-size: 0.9rem;
    font-weight: bold;
    margin-top: 0.5rem;
    text-shadow: 0 1px 5px rgba(255, 64, 129, 0.6);
}

.inline-quote:hover {
    box-shadow: 0 8px 20px rgba(255, 64, 129, 0.6), 0 0 20px rgba(156, 39, 176, 0.5);
    transform: scale(1.05);
}

.quote-text {
    font-family: 'Gaegu', cursive, system-ui, sans-serif;
    font-size: 1.5rem;
    color: var(--evil-light);
    font-style: italic;
    position: relative;
}

.quote-text p {
    text-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
}

.quote-text cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    color: var(--evil-primary);
    text-transform: uppercase;
    text-shadow: 0 2px 6px rgba(255, 64, 129, 0.5);
}

.miraverse-quote:hover .miraverse-frame {
    transform: scale(1.03);
    transition: transform 0.3s ease;
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 30px rgba(255, 64, 129, 0.5), 0 0 60px rgba(156, 39, 176, 0.4);
    }
    50% {
        box-shadow: 0 0 60px rgba(255, 64, 129, 0.8), 0 0 80px rgba(156, 39, 176, 0.7);
    }
    100% {
        box-shadow: 0 0 30px rgba(255, 64, 129, 0.5), 0 0 60px rgba(156, 39, 176, 0.4);
    }
}

@keyframes borderShift {
    0%, 100% {
        border-radius: 16px;
    }
    50% {
        border-radius: 32px;
    }
}