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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 25%, #ffeaa7 50%, #fab1a0 75%, #fd79a8 100%);
    background-size: 400% 400%;
    animation: dreamyBackground 15s ease infinite;
    min-height: 100vh;
    color: #6c5ce7;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.6)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.7)"/><circle cx="40" cy="60" r="1.5" fill="rgba(255,255,255,0.5)"/><circle cx="70" cy="80" r="1" fill="rgba(255,255,255,0.8)"/><circle cx="10" cy="70" r="1" fill="rgba(255,255,255,0.6)"/><circle cx="90" cy="10" r="2" fill="rgba(255,255,255,0.5)"/></svg>');
    animation: sparkle 20s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes dreamyBackground {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes sparkle {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(360deg); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 2;
}

header {
    text-align: center;
    margin-bottom: 40px;
    color: #6c5ce7;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

header h1 {
    font-size: 3em;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #fd79a8, #fdcb6e, #6c5ce7, #a29bfe);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: dreamyText 8s ease infinite;
    font-weight: bold;
    letter-spacing: 2px;
}

header p {
    font-size: 1.2em;
    opacity: 0.8;
    font-style: italic;
    color: #74b9ff;
}

@keyframes dreamyText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.dashboard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.pet-preview, .pet-selection, .custom-avatar, .site-reactions, .extension-download, .reactions-showcase {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(31, 38, 135, 0.37),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.pet-preview:hover, .pet-selection:hover, .custom-avatar:hover, .site-reactions:hover, .extension-download:hover, .reactions-showcase:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(31, 38, 135, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.pet-preview {
    grid-column: 1 / -1;
    text-align: center;
}

.pet-preview h2, .pet-selection h2, .custom-avatar h2, .site-reactions h2, .extension-download h2, .reactions-showcase h2 {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    font-size: 1.5em;
}

.pet-container {
    width: 120px;
    height: 120px;
    margin: 20px auto;
    position: relative;
    background: radial-gradient(circle, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 30px rgba(255, 255, 255, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Pet Base Styles */
.pet {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

/* Cat Pet */
.pet.cat {
    background: #ff9500;
    position: relative;
}

.pet.cat::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 10px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 15px solid #ff9500;
    transform: rotate(-20deg);
}

.pet.cat::after {
    content: '';
    position: absolute;
    top: -8px;
    right: 10px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 15px solid #ff9500;
    transform: rotate(20deg);
}

/* Dog Pet */
.pet.dog {
    background: #8B4513;
    border-radius: 40px 40px 50% 50%;
}

.pet.dog::before {
    content: '';
    position: absolute;
    top: 5px;
    left: -15px;
    width: 20px;
    height: 30px;
    background: #8B4513;
    border-radius: 50%;
    transform: rotate(-30deg);
}

.pet.dog::after {
    content: '';
    position: absolute;
    top: 5px;
    right: -15px;
    width: 20px;
    height: 30px;
    background: #8B4513;
    border-radius: 50%;
    transform: rotate(30deg);
}

/* Dragon Pet */
.pet.dragon {
    background: linear-gradient(45deg, #9b59b6, #e74c3c);
    position: relative;
}

.pet.dragon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 15px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 20px solid #e74c3c;
}

.pet.dragon::after {
    content: '';
    position: absolute;
    top: -10px;
    right: 15px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 20px solid #e74c3c;
}

/* Rabbit Pet */
.pet.rabbit {
    background: #f8f8ff;
    border: 2px solid #ddd;
    position: relative;
}

.pet.rabbit::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 18px;
    width: 8px;
    height: 20px;
    background: #f8f8ff;
    border: 2px solid #ddd;
    border-radius: 50% 50% 0 0;
    transform: rotate(-10deg);
}

.pet.rabbit::after {
    content: '';
    position: absolute;
    top: -12px;
    right: 18px;
    width: 8px;
    height: 20px;
    background: #f8f8ff;
    border: 2px solid #ddd;
    border-radius: 50% 50% 0 0;
    transform: rotate(10deg);
}

/* Bird Pet */
.pet.bird {
    background: #87ceeb;
    border-radius: 60% 40% 60% 40%;
    position: relative;
}

.pet.bird::before {
    content: '';
    position: absolute;
    top: 15px;
    left: -8px;
    width: 20px;
    height: 8px;
    background: #87ceeb;
    border-radius: 50%;
    transform: rotate(-20deg);
}

.pet.bird::after {
    content: '';
    position: absolute;
    top: 15px;
    right: -8px;
    width: 20px;
    height: 8px;
    background: #87ceeb;
    border-radius: 50%;
    transform: rotate(20deg);
}

/* Fox Pet */
.pet.fox {
    background: #ff8c00;
    position: relative;
}

.pet.fox::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 12px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 12px solid #ff8c00;
    transform: rotate(-15deg);
}

.pet.fox::after {
    content: '';
    position: absolute;
    top: -8px;
    right: 12px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 12px solid #ff8c00;
    transform: rotate(15deg);
}

/* Unicorn Pet */
.pet.unicorn {
    background: linear-gradient(45deg, #ff69b4, #dda0dd);
    position: relative;
}

.pet.unicorn::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 20px solid #ffd700;
}

.pet.unicorn::after {
    content: '✨';
    position: absolute;
    top: -20px;
    right: 5px;
    font-size: 12px;
}

/* Phoenix Pet */
.pet.phoenix {
    background: linear-gradient(45deg, #ff4500, #ffd700, #ff6347);
    position: relative;
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.5);
}

.pet.phoenix::before {
    content: '🔥';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    animation: flicker 1s ease-in-out infinite alternate;
}

@keyframes flicker {
    0% { opacity: 0.8; transform: translateX(-50%) scale(0.9); }
    100% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

/* Panda Pet */
.pet.panda {
    background: #f5f5f5;
    border: 3px solid #333;
    position: relative;
}

.pet.panda::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 8px;
    width: 12px;
    height: 12px;
    background: #333;
    border-radius: 50%;
}

.pet.panda::after {
    content: '';
    position: absolute;
    top: 5px;
    right: 8px;
    width: 12px;
    height: 12px;
    background: #333;
    border-radius: 50%;
}

/* Hamster Pet */
.pet.hamster {
    background: #deb887;
    border-radius: 50%;
    position: relative;
    transform: scale(0.9);
}

.pet.hamster::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 15px;
    width: 8px;
    height: 8px;
    background: #deb887;
    border-radius: 50%;
}

.pet.hamster::after {
    content: '';
    position: absolute;
    top: -5px;
    right: 15px;
    width: 8px;
    height: 8px;
    background: #deb887;
    border-radius: 50%;
}

/* Owl Pet */
.pet.owl {
    background: #8b4513;
    border-radius: 50% 50% 20% 20%;
    position: relative;
}

.pet.owl::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 12px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 12px solid #8b4513;
    transform: rotate(-25deg);
}

.pet.owl::after {
    content: '';
    position: absolute;
    top: -8px;
    right: 12px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 12px solid #8b4513;
    transform: rotate(25deg);
}

/* Alien Pet */
.pet.alien {
    background: linear-gradient(45deg, #00ff00, #32cd32);
    border-radius: 50%;
    position: relative;
}

.pet.alien::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 10px;
    width: 15px;
    height: 15px;
    background: #00ff00;
    border-radius: 50%;
}

.pet.alien::after {
    content: '';
    position: absolute;
    top: -12px;
    right: 10px;
    width: 15px;
    height: 15px;
    background: #00ff00;
    border-radius: 50%;
}

/* Ghost Pet */
.pet.ghost {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid #ddd;
    border-radius: 50% 50% 0 0;
    position: relative;
    animation: float-ghost 3s ease-in-out infinite;
}

.pet.ghost::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.8) 20%, transparent 40%, rgba(255,255,255,0.8) 60%, transparent 80%, rgba(255,255,255,0.8) 100%);
}

@keyframes float-ghost {
    0%, 100% { transform: translateY(0px); opacity: 0.8; }
    50% { transform: translateY(-8px); opacity: 1; }
}

/* Robot Pet */
.pet.robot {
    background: linear-gradient(45deg, #708090, #c0c0c0);
    border-radius: 10px;
    position: relative;
    border: 2px solid #696969;
}

.pet.robot::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 12px;
    background: #696969;
    border-radius: 2px;
}

.pet.robot::after {
    content: '⚡';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
}

/* Enhanced Reaction States */
.pet.focused {
    animation: focus-pulse 1.5s ease-in-out infinite;
    filter: brightness(1.3) drop-shadow(0 0 10px rgba(102, 126, 234, 0.5));
    transform-origin: center;
}

.pet.stressed {
    animation: stress-shake 0.2s ease-in-out infinite;
    filter: saturate(0.5) hue-rotate(20deg);
}

.pet.confused {
    animation: confused-wobble 0.8s ease-in-out infinite;
    filter: blur(1px) saturate(0.8);
    transform-origin: center bottom;
}

.pet.celebrating {
    animation: celebrate-bounce 0.4s ease-in-out infinite, celebrate-sparkle 2s linear infinite;
    filter: brightness(1.4) saturate(1.3) drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
}

.pet.reading {
    animation: reading-nod 2s ease-in-out infinite, reading-focus 4s ease-in-out infinite;
    filter: sepia(0.2) brightness(1.1);
}

.pet.gaming {
    animation: gaming-intense 0.1s ease-in-out infinite, gaming-glow 1s ease-in-out infinite alternate;
    filter: saturate(1.8) contrast(1.2) drop-shadow(0 0 8px rgba(0, 255, 0, 0.4));
}

.pet.shopping {
    animation: shopping-excited 0.6s ease-in-out infinite, shopping-spin 3s linear infinite;
    filter: brightness(1.2) saturate(1.4) hue-rotate(10deg);
}

.pet.working {
    animation: working-steady 1s linear infinite, working-focus 3s ease-in-out infinite;
    filter: brightness(1.1) contrast(1.1);
}

.pet.relaxing {
    animation: relaxing-sway 5s ease-in-out infinite, relaxing-breathe 3s ease-in-out infinite;
    filter: brightness(0.9) saturate(0.8) blur(0.5px);
}

.pet.dancing {
    animation: dancing-groove 0.5s ease-in-out infinite, dancing-spin 2s linear infinite;
    filter: brightness(1.3) saturate(1.5) drop-shadow(0 0 12px rgba(255, 20, 147, 0.5));
}

.pet.thinking {
    animation: thinking-tilt 1.5s ease-in-out infinite, thinking-pulse 2s ease-in-out infinite;
    filter: brightness(0.95) saturate(0.9);
}

.pet.headphones {
    animation: headphones-bob 1s ease-in-out infinite;
    filter: brightness(1.1) saturate(1.2);
}

.pet.excited {
    animation: excited-bounce 0.3s ease-in-out infinite, excited-wiggle 0.8s ease-in-out infinite;
    filter: brightness(1.3) saturate(1.4) drop-shadow(0 0 10px rgba(255, 165, 0, 0.5));
}

.pet.sleepy {
    animation: sleepy-sway 4s ease-in-out infinite, sleepy-fade 6s ease-in-out infinite;
    filter: brightness(0.7) saturate(0.6) blur(1px);
}

.pet.happy {
    animation: happy-bounce 0.8s ease-in-out infinite, happy-glow 2s ease-in-out infinite;
    filter: brightness(1.2) saturate(1.3) drop-shadow(0 0 8px rgba(255, 255, 0, 0.4));
}

/* Enhanced Animation Keyframes */
@keyframes focus-pulse {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.05); }
    50% { transform: scale(1.1); }
    75% { transform: scale(1.05); }
}

@keyframes stress-shake {
    0% { transform: translateX(0px) rotate(0deg) scale(1); }
    10% { transform: translateX(-3px) rotate(-2deg) scale(0.98); }
    20% { transform: translateX(3px) rotate(2deg) scale(1.02); }
    30% { transform: translateX(-2px) rotate(-1deg) scale(0.99); }
    40% { transform: translateX(2px) rotate(1deg) scale(1.01); }
    50% { transform: translateX(-1px) rotate(-0.5deg) scale(1); }
    60% { transform: translateX(1px) rotate(0.5deg) scale(1); }
    70% { transform: translateX(-0.5px) rotate(-0.2deg) scale(1); }
    80% { transform: translateX(0.5px) rotate(0.2deg) scale(1); }
    90% { transform: translateX(0px) rotate(0deg) scale(1); }
    100% { transform: translateX(0px) rotate(0deg) scale(1); }
}

@keyframes confused-wobble {
    0%, 100% { transform: rotate(0deg) scale(1); }
    15% { transform: rotate(-5deg) scale(0.95); }
    30% { transform: rotate(5deg) scale(1.05); }
    45% { transform: rotate(-3deg) scale(0.98); }
    60% { transform: rotate(3deg) scale(1.02); }
    75% { transform: rotate(-1deg) scale(0.99); }
    90% { transform: rotate(1deg) scale(1.01); }
}

@keyframes celebrate-bounce {
    0%, 100% { transform: translateY(0px) scale(1) rotate(0deg); }
    25% { transform: translateY(-15px) scale(1.15) rotate(-5deg); }
    50% { transform: translateY(-20px) scale(1.2) rotate(0deg); }
    75% { transform: translateY(-10px) scale(1.1) rotate(5deg); }
}

@keyframes celebrate-sparkle {
    0%, 100% { filter: brightness(1.4) saturate(1.3) drop-shadow(0 0 15px rgba(255, 215, 0, 0.6)); }
    50% { filter: brightness(1.6) saturate(1.5) drop-shadow(0 0 20px rgba(255, 215, 0, 0.8)); }
}

@keyframes reading-nod {
    0%, 100% { transform: rotateX(0deg); }
    30% { transform: rotateX(8deg); }
    60% { transform: rotateX(12deg); }
    80% { transform: rotateX(5deg); }
}

@keyframes reading-focus {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes gaming-intense {
    0% { transform: translateX(0px) translateY(0px) rotate(0deg); }
    10% { transform: translateX(-1px) translateY(-0.5px) rotate(-0.5deg); }
    20% { transform: translateX(1px) translateY(0.5px) rotate(0.5deg); }
    30% { transform: translateX(-0.5px) translateY(-1px) rotate(-0.2deg); }
    40% { transform: translateX(0.5px) translateY(1px) rotate(0.2deg); }
    50% { transform: translateX(-1px) translateY(0px) rotate(-0.3deg); }
    60% { transform: translateX(1px) translateY(-0.5px) rotate(0.3deg); }
    70% { transform: translateX(-0.5px) translateY(0.5px) rotate(-0.1deg); }
    80% { transform: translateX(0.5px) translateY(-0.5px) rotate(0.1deg); }
    90% { transform: translateX(-0.2px) translateY(0.2px) rotate(0deg); }
    100% { transform: translateX(0px) translateY(0px) rotate(0deg); }
}

@keyframes gaming-glow {
    0% { filter: saturate(1.8) contrast(1.2) drop-shadow(0 0 8px rgba(0, 255, 0, 0.4)); }
    100% { filter: saturate(2.2) contrast(1.4) drop-shadow(0 0 12px rgba(0, 255, 0, 0.7)); }
}

@keyframes shopping-excited {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.08) rotate(-3deg); }
    50% { transform: scale(1.12) rotate(0deg); }
    75% { transform: scale(1.06) rotate(3deg); }
}

@keyframes shopping-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes working-steady {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-3px) scale(1.02); }
}

@keyframes working-focus {
    0%, 100% { filter: brightness(1.1) contrast(1.1); }
    50% { filter: brightness(1.15) contrast(1.15); }
}

@keyframes relaxing-sway {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-2deg) scale(0.98); }
    50% { transform: rotate(0deg) scale(1); }
    75% { transform: rotate(2deg) scale(0.98); }
}

@keyframes relaxing-breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

@keyframes dancing-groove {
    0%, 100% { transform: translateX(0px) rotate(0deg) scale(1); }
    12.5% { transform: translateX(-4px) rotate(-8deg) scale(1.05); }
    25% { transform: translateX(-2px) rotate(-4deg) scale(1.1); }
    37.5% { transform: translateX(2px) rotate(4deg) scale(1.05); }
    50% { transform: translateX(4px) rotate(8deg) scale(1); }
    62.5% { transform: translateX(2px) rotate(4deg) scale(1.05); }
    75% { transform: translateX(-2px) rotate(-4deg) scale(1.1); }
    87.5% { transform: translateX(-4px) rotate(-8deg) scale(1.05); }
}

@keyframes dancing-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes thinking-tilt {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-8deg) scale(0.98); }
    50% { transform: rotate(-10deg) scale(0.96); }
    75% { transform: rotate(-6deg) scale(0.98); }
}

@keyframes thinking-pulse {
    0%, 100% { filter: brightness(0.95) saturate(0.9); }
    50% { filter: brightness(1) saturate(1); }
}

/* New Pet Types */
.pet.bear {
    background: #8B4513;
    border-radius: 50%;
    position: relative;
    transform: scale(1.1);
}

.pet.bear::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 12px;
    width: 12px;
    height: 12px;
    background: #8B4513;
    border-radius: 50%;
}

.pet.bear::after {
    content: '';
    position: absolute;
    top: -5px;
    right: 12px;
    width: 12px;
    height: 12px;
    background: #8B4513;
    border-radius: 50%;
}

.pet.penguin {
    background: linear-gradient(180deg, #000 0%, #000 40%, #fff 40%, #fff 100%);
    border-radius: 60% 60% 40% 40%;
    position: relative;
}

.pet.penguin::before {
    content: '';
    position: absolute;
    top: 10px;
    left: -8px;
    width: 15px;
    height: 8px;
    background: #000;
    border-radius: 50%;
    transform: rotate(-30deg);
}

.pet.penguin::after {
    content: '';
    position: absolute;
    top: 10px;
    right: -8px;
    width: 15px;
    height: 8px;
    background: #000;
    border-radius: 50%;
    transform: rotate(30deg);
}

.pet.frog {
    background: #228B22;
    border-radius: 50%;
    position: relative;
}

.pet.frog::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 8px;
    width: 12px;
    height: 12px;
    background: #228B22;
    border-radius: 50%;
}

.pet.frog::after {
    content: '';
    position: absolute;
    top: -8px;
    right: 8px;
    width: 12px;
    height: 12px;
    background: #228B22;
    border-radius: 50%;
}

.pet.turtle {
    background: #6B8E23;
    border-radius: 50%;
    position: relative;
    border: 3px solid #556B2F;
}

.pet.turtle::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 12px;
    background: #6B8E23;
    border-radius: 50% 50% 0 0;
}

.pet.wizard {
    background: linear-gradient(45deg, #4B0082, #8A2BE2);
    position: relative;
}

.pet.wizard::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 20px solid #FFD700;
    border-radius: 50% 50% 0 0;
}

.pet.wizard::after {
    content: '⭐';
    position: absolute;
    top: -18px;
    right: 8px;
    font-size: 12px;
}

/* Snake Pet */
.pet.snake {
    background: #228B22;
    border-radius: 50% 50% 20% 80%;
    position: relative;
    transform: rotate(45deg);
}

.pet.snake::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: 15px;
    height: 15px;
    background: #228B22;
    border-radius: 50%;
    transform: rotate(-45deg);
}

.pet.snake::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 20px;
    height: 8px;
    background: #228B22;
    border-radius: 50%;
    transform: rotate(-45deg);
}

/* Fish Pet */
.pet.fish {
    background: #4169E1;
    border-radius: 0% 50% 50% 0%;
    position: relative;
    transform: rotate(-10deg);
}

.pet.fish::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 20px solid #4169E1;
}

.pet.fish::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 15px;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

/* Butterfly Pet */
.pet.butterfly {
    background: linear-gradient(45deg, #FF69B4, #FFB6C1);
    border-radius: 50%;
    position: relative;
}

.pet.butterfly::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -12px;
    width: 25px;
    height: 20px;
    background: linear-gradient(45deg, #FF1493, #FF69B4);
    border-radius: 50% 20% 50% 20%;
    transform: rotate(-30deg);
}

.pet.butterfly::after {
    content: '';
    position: absolute;
    top: -8px;
    right: -12px;
    width: 25px;
    height: 20px;
    background: linear-gradient(45deg, #FF1493, #FF69B4);
    border-radius: 20% 50% 20% 50%;
    transform: rotate(30deg);
}

/* Bee Pet */
.pet.bee {
    background: linear-gradient(90deg, #FFD700 0%, #FFD700 30%, #000 30%, #000 40%, #FFD700 40%, #FFD700 70%, #000 70%, #000 80%, #FFD700 80%);
    border-radius: 60% 40% 60% 40%;
    position: relative;
}

.pet.bee::before {
    content: '';
    position: absolute;
    top: 5px;
    left: -10px;
    width: 15px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: bee-wing 0.1s linear infinite;
}

.pet.bee::after {
    content: '';
    position: absolute;
    top: 5px;
    right: -10px;
    width: 15px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: bee-wing 0.1s linear infinite;
}

@keyframes bee-wing {
    0%, 100% { opacity: 0.7; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.3); }
}

/* Crystal Pet */
.pet.crystal {
    background: linear-gradient(45deg, #E6E6FA, #DDA0DD, #DA70D6);
    position: relative;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    border-radius: 0;
}

.pet.crystal::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #FFB6C1, #FFC0CB);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.pet.crystal::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: crystal-shine 2s ease-in-out infinite;
}

@keyframes crystal-shine {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Flame Pet */
.pet.flame {
    background: linear-gradient(0deg, #FF4500 0%, #FF6347 30%, #FFD700 60%, #FFA500 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    animation: flame-flicker 0.5s ease-in-out infinite alternate;
}

.pet.flame::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 25px;
    background: linear-gradient(0deg, #FFD700, #FFA500);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: flame-flicker 0.3s ease-in-out infinite alternate;
}

.pet.flame::after {
    content: '';
    position: absolute;
    top: -5px;
    right: 10px;
    width: 8px;
    height: 12px;
    background: linear-gradient(0deg, #FF6347, #FFD700);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: flame-flicker 0.4s ease-in-out infinite alternate;
}

@keyframes flame-flicker {
    0% { transform: translateX(-50%) scale(1) rotate(-2deg); }
    100% { transform: translateX(-50%) scale(1.1) rotate(2deg); }
}

/* Shadow Pet */
.pet.shadow {
    background: linear-gradient(45deg, #2F2F2F, #1C1C1C);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    animation: shadow-pulse 3s ease-in-out infinite;
}

.pet.shadow::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 8px;
    height: 8px;
    background: #8A2BE2;
    border-radius: 50%;
    box-shadow: 0 0 10px #8A2BE2;
}

.pet.shadow::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 8px;
    height: 8px;
    background: #8A2BE2;
    border-radius: 50%;
    box-shadow: 0 0 10px #8A2BE2;
}

@keyframes shadow-pulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* Galaxy Pet */
.pet.galaxy {
    background: linear-gradient(45deg, #191970, #4B0082, #8A2BE2, #9370DB);
    border-radius: 50%;
    position: relative;
    animation: galaxy-rotate 10s linear infinite;
    overflow: hidden;
}

.pet.galaxy::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 10px;
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
    box-shadow: 
        15px 10px 0 white,
        25px 20px 0 white,
        10px 25px 0 white,
        30px 5px 0 white,
        5px 15px 0 white;
    animation: galaxy-twinkle 2s ease-in-out infinite alternate;
}

.pet.galaxy::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    animation: galaxy-rotate 8s linear infinite reverse;
}

@keyframes galaxy-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes galaxy-twinkle {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* Fantasy Theme Updates */
.pet-stats {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.pet-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.pet-option {
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.pet-option:hover, .pet-option.active {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.pet-option.premium {
    border-color: #ffd700;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.2));
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.upload-area {
    text-align: center;
    padding: 40px;
    border: 2px dashed rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.upload-area:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.upload-area label {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.upload-area label span {
    color: rgba(255, 255, 255, 0.8);
}

.site-input, .reaction-select, .ai-input, .name-input {
    padding: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.site-input::placeholder, .ai-input::placeholder, .name-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.site-input:focus, .reaction-select:focus, .ai-input:focus, .name-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.reaction-select {
    color: white;
    min-width: 150px;
}

.reaction-select option {
    background: #2c3e50;
    color: white;
}

.preview-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.preview-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.remove-btn {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

#add-reaction, .ai-btn, .save-btn, .download-btn {
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb);
    background-size: 200% 200%;
    animation: dreamyButton 4s ease infinite;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

#add-reaction:hover, .ai-btn:hover, .save-btn:hover, .download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
}

@keyframes dreamyButton {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.download-btn {
    padding: 15px 30px;
    font-size: 18px;
}

.extension-download p {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 15px;
}

/* Reactions Showcase Fantasy Theme */
.reactions-showcase {
    grid-column: 1 / -1;
    margin-top: 20px;
}

.reactions-showcase p {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 30px;
}

.reactions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.reaction-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: white;
}

.reaction-card:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

.reaction-card.active {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.2);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.reaction-demo {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: relative;
}

.reaction-card span {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 14px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.reaction-card small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

/* Tracking Info Fantasy Theme */
.tracking-info {
    margin-top: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.tracking-info h3 {
    text-align: center;
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.info-card h4 {
    color: white;
    margin-bottom: 12px;
    font-size: 16px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 8px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card li {
    padding: 6px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card li:last-child {
    border-bottom: none;
}

.info-card li strong {
    color: white;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.demo-note {
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    backdrop-filter: blur(15px);
    color: white;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.demo-note p {
    margin: 0;
    font-size: 14px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.demo-note strong {
    font-weight: 600;
}

/* AI Animation Fantasy Theme */
.ai-animation {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.ai-animation h3 {
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.ai-controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.animation-preview {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.animation-preview h4 {
    margin-bottom: 15px;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.save-controls {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.ai-status {
    margin-top: 15px;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    backdrop-filter: blur(10px);
}

.ai-status.loading {
    background: rgba(255, 243, 205, 0.2);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.ai-status.success {
    background: rgba(212, 237, 218, 0.2);
    color: #90ee90;
    border: 1px solid rgba(144, 238, 144, 0.3);
}

.ai-status.error {
    background: rgba(248, 215, 218, 0.2);
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

/* Pastel Color Overrides */
.pet-preview, .pet-selection, .custom-avatar, .site-reactions, .extension-download, .reactions-showcase {
    background: rgba(255, 255, 255, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 8px 32px rgba(108, 92, 231, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
}

.pet-preview h2, .pet-selection h2, .custom-avatar h2, .site-reactions h2, .extension-download h2, .reactions-showcase h2 {
    color: #6c5ce7 !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8) !important;
}

.pet-container {
    background: radial-gradient(circle, rgba(255,255,255,0.6), rgba(255,255,255,0.3)) !important;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.3) !important;
    border: 2px solid rgba(255, 255, 255, 0.6) !important;
}

.pet-stats {
    color: #6c5ce7 !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8) !important;
}

.pet-option {
    background: rgba(255, 255, 255, 0.3) !important;
    border: 2px solid rgba(255, 255, 255, 0.6) !important;
    color: #6c5ce7 !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8) !important;
}

.pet-option:hover, .pet-option.active {
    border-color: #a29bfe !important;
    background: rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 10px 25px rgba(162, 155, 254, 0.3) !important;
}

.pet-option.premium {
    border-color: #fdcb6e !important;
    background: linear-gradient(45deg, rgba(253, 203, 110, 0.3), rgba(255, 218, 121, 0.3)) !important;
    box-shadow: 0 0 20px rgba(253, 203, 110, 0.4) !important;
}

.upload-area {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 2px dashed rgba(255, 255, 255, 0.7) !important;
}

.upload-area:hover {
    border-color: #a29bfe !important;
    background: rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 0 20px rgba(162, 155, 254, 0.3) !important;
}

.upload-area label {
    color: #6c5ce7 !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8) !important;
}

.upload-area label span {
    color: #74b9ff !important;
}

.site-input, .reaction-select, .ai-input, .name-input {
    background: rgba(255, 255, 255, 0.3) !important;
    border: 2px solid rgba(255, 255, 255, 0.6) !important;
    color: #6c5ce7 !important;
}

.site-input::placeholder, .ai-input::placeholder, .name-input::placeholder {
    color: rgba(108, 92, 231, 0.7) !important;
}

.site-input:focus, .reaction-select:focus, .ai-input:focus, .name-input:focus {
    border-color: #a29bfe !important;
    box-shadow: 0 0 20px rgba(162, 155, 254, 0.4) !important;
    background: rgba(255, 255, 255, 0.4) !important;
}

.reaction-select {
    color: #6c5ce7 !important;
}

.reaction-select option {
    background: #ffeaa7 !important;
    color: #6c5ce7 !important;
}

.preview-btn {
    background: linear-gradient(45deg, #a29bfe, #74b9ff) !important;
    box-shadow: 0 4px 15px rgba(162, 155, 254, 0.4) !important;
}

.remove-btn {
    background: linear-gradient(45deg, #fd79a8, #fdcb6e) !important;
    box-shadow: 0 4px 15px rgba(253, 121, 168, 0.4) !important;
}

#add-reaction, .ai-btn, .save-btn, .download-btn {
    background: linear-gradient(45deg, #a29bfe, #74b9ff, #fd79a8) !important;
    box-shadow: 0 8px 25px rgba(162, 155, 254, 0.4) !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5) !important;
}

.extension-download p {
    color: #74b9ff !important;
}

.reaction-card {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    color: #6c5ce7 !important;
}

.reaction-card span {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8) !important;
}

.reaction-card small {
    color: #74b9ff !important;
}

.tracking-info {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
}

.tracking-info h3 {
    color: #6c5ce7 !important;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8) !important;
}

.info-card {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
}

.info-card h4 {
    color: #6c5ce7 !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5) !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8) !important;
}

.info-card li {
    color: #74b9ff !important;
}

.info-card li strong {
    color: #6c5ce7 !important;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5) !important;
}

.demo-note {
    background: linear-gradient(45deg, rgba(162, 155, 254, 0.3), rgba(116, 185, 255, 0.3)) !important;
    color: #6c5ce7 !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 8px 25px rgba(162, 155, 254, 0.2) !important;
}

.ai-animation h3 {
    color: #6c5ce7 !important;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8) !important;
}

.animation-preview {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
}

.animation-preview h4 {
    color: #6c5ce7 !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8) !important;
}

/* Pricing Page Styles */
.nav-link {
    color: #6c5ce7;
    text-decoration: none;
    font-size: 16px;
    margin-top: 10px;
    display: inline-block;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #a29bfe;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(108, 92, 231, 0.2);
}

.pricing-card.free {
    border-color: #74b9ff;
}

.pricing-card.premium {
    border-color: #a29bfe;
}

.pricing-card.bundle {
    border-color: #fdcb6e;
    background: linear-gradient(135deg, rgba(253, 203, 110, 0.2), rgba(255, 255, 255, 0.4));
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #fd79a8, #fdcb6e);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(253, 121, 168, 0.4);
}

.plan-header h2 {
    color: #6c5ce7;
    font-size: 24px;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.price {
    font-size: 48px;
    font-weight: bold;
    color: #6c5ce7;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.price-options {
    margin-bottom: 15px;
}

.price-option {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.price-option.featured {
    background: rgba(162, 155, 254, 0.2);
    border: 2px solid #a29bfe;
}

.price-option .price {
    font-size: 24px;
    display: block;
}

.price-option .per {
    font-size: 14px;
    color: #74b9ff;
    display: block;
}

.price-option .save {
    font-size: 12px;
    color: #fd79a8;
    font-weight: bold;
    display: block;
}

.price-divider {
    color: #74b9ff;
    font-style: italic;
    margin: 10px 0;
}

.original-price {
    text-decoration: line-through;
    color: #74b9ff;
    font-size: 16px;
    margin-bottom: 10px;
}

.plan-header p {
    color: #74b9ff;
    margin-bottom: 20px;
}

.features {
    text-align: left;
    margin: 20px 0;
}

.feature {
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.feature.included {
    color: #6c5ce7;
}

.feature.excluded {
    color: #74b9ff;
    opacity: 0.6;
}

.plan-btn {
    background: linear-gradient(45deg, #a29bfe, #74b9ff);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 10px;
    box-shadow: 0 8px 25px rgba(162, 155, 254, 0.4);
}

.plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(162, 155, 254, 0.6);
}

.plan-btn.featured {
    background: linear-gradient(45deg, #fd79a8, #fdcb6e);
    box-shadow: 0 8px 25px rgba(253, 121, 168, 0.4);
}

.plan-btn.secondary {
    background: rgba(255, 255, 255, 0.3);
    color: #6c5ce7;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.plan-btn.current {
    background: rgba(116, 185, 255, 0.3);
    color: #74b9ff;
    cursor: not-allowed;
}

.plan-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.guarantee {
    margin-top: 15px;
    font-size: 12px;
    color: #74b9ff;
    font-style: italic;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 30px;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.modal-content h3 {
    color: #6c5ce7;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.pet-grid, .reaction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.selectable-item {
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.2);
    color: #6c5ce7;
}

.selectable-item:hover {
    border-color: #a29bfe;
    background: rgba(255, 255, 255, 0.3);
}

.selectable-item.selected {
    border-color: #fd79a8;
    background: rgba(253, 121, 168, 0.2);
    box-shadow: 0 0 15px rgba(253, 121, 168, 0.4);
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, #a29bfe, #74b9ff);
    color: white;
    box-shadow: 0 4px 15px rgba(162, 155, 254, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.3);
    color: #6c5ce7;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 20px;
        max-width: calc(100% - 40px);
    }
}

/* New Reaction States */
.pet.laughing {
    animation: laughing-bounce 0.4s ease-in-out infinite;
    filter: brightness(1.4) saturate(1.5) hue-rotate(45deg);
}

.pet.crying {
    animation: crying-droop 2s ease-in-out infinite;
    filter: brightness(0.6) saturate(0.5) blur(1px);
}

.pet.angry {
    animation: angry-shake 0.2s ease-in-out infinite;
    filter: brightness(1.3) saturate(2) hue-rotate(0deg) drop-shadow(0 0 15px rgba(255, 0, 0, 0.8));
}

.pet.surprised {
    animation: surprised-jump 0.8s ease-in-out infinite;
    filter: brightness(1.3) saturate(1.4);
}

.pet.bored {
    animation: bored-sag 4s ease-in-out infinite;
    filter: brightness(0.8) saturate(0.6);
}

.pet.love {
    animation: love-float 1s ease-in-out infinite;
    filter: brightness(1.4) saturate(1.6) hue-rotate(320deg) drop-shadow(0 0 20px rgba(255, 20, 147, 0.8));
}

.pet.sick {
    animation: sick-wobble 1.5s ease-in-out infinite;
    filter: brightness(0.7) saturate(0.4) hue-rotate(120deg);
}

.pet.cool {
    animation: cool-lean 2s ease-in-out infinite;
    filter: brightness(1.2) saturate(1.3) contrast(1.2);
}

.pet.scared {
    animation: scared-tremble 0.1s ease-in-out infinite;
    filter: brightness(0.8) saturate(0.7) blur(0.5px);
}

.pet.dizzy {
    animation: dizzy-spin 1s linear infinite;
    filter: brightness(0.9) saturate(0.8) blur(1px);
}

/* New Animation Keyframes */
@keyframes laughing-bounce {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.15); }
}

@keyframes crying-droop {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(5px) scale(0.95); }
}

@keyframes angry-shake {
    0% { transform: translateX(0px) rotate(0deg) scale(1); }
    25% { transform: translateX(-4px) rotate(-3deg) scale(1.05); }
    50% { transform: translateX(4px) rotate(3deg) scale(1.1); }
    75% { transform: translateX(-2px) rotate(-1deg) scale(1.05); }
    100% { transform: translateX(0px) rotate(0deg) scale(1); }
}

@keyframes surprised-jump {
    0%, 100% { transform: translateY(0px) scale(1); }
    25% { transform: translateY(-15px) scale(1.2); }
    50% { transform: translateY(-20px) scale(1.25); }
    75% { transform: translateY(-10px) scale(1.1); }
}

@keyframes bored-sag {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(8px) scale(0.9); }
}

@keyframes love-float {
    0%, 100% { transform: translateY(0px) scale(1) rotate(0deg); }
    25% { transform: translateY(-5px) scale(1.1) rotate(-2deg); }
    50% { transform: translateY(-8px) scale(1.15) rotate(0deg); }
    75% { transform: translateY(-3px) scale(1.05) rotate(2deg); }
}

@keyframes sick-wobble {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-3deg) scale(0.95); }
    50% { transform: rotate(0deg) scale(0.9); }
    75% { transform: rotate(3deg) scale(0.95); }
}

@keyframes cool-lean {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(-5deg) scale(1.05); }
}

@keyframes scared-tremble {
    0% { transform: translateX(0px) translateY(0px) scale(1); }
    25% { transform: translateX(-1px) translateY(-1px) scale(0.98); }
    50% { transform: translateX(1px) translateY(1px) scale(0.96); }
    75% { transform: translateX(-0.5px) translateY(-0.5px) scale(0.98); }
    100% { transform: translateX(0px) translateY(0px) scale(1); }
}

@keyframes dizzy-spin {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(0.95); }
    50% { transform: rotate(180deg) scale(0.9); }
    75% { transform: rotate(270deg) scale(0.95); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes headphones-bob {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-2px) rotate(-1deg); }
    50% { transform: translateY(-4px) rotate(0deg); }
    75% { transform: translateY(-2px) rotate(1deg); }
}

@keyframes excited-bounce {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-8px) scale(1.1); }
}

@keyframes excited-wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-3deg); }
    75% { transform: rotate(3deg); }
}

@keyframes sleepy-sway {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-3deg) scale(0.95); }
    50% { transform: rotate(0deg) scale(0.9); }
    75% { transform: rotate(3deg) scale(0.95); }
}

@keyframes sleepy-fade {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 0.5; }
}

@keyframes happy-bounce {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-6px) scale(1.08); }
}

@keyframes happy-glow {
    0%, 100% { filter: brightness(1.2) saturate(1.3) drop-shadow(0 0 8px rgba(255, 255, 0, 0.4)); }
    50% { filter: brightness(1.3) saturate(1.4) drop-shadow(0 0 12px rgba(255, 255, 0, 0.6)); }
}

/* Reactions Showcase */
.reactions-showcase {
    grid-column: 1 / -1;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.reactions-showcase h2 {
    text-align: center;
    margin-bottom: 10px;
    color: #333;
}

.reactions-showcase p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.reactions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.reaction-card {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.reaction-card:hover {
    border-color: #667eea;
    background: #f0f8ff;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.reaction-card.active {
    border-color: #667eea;
    background: #667eea;
    color: white;
}

.reaction-card.active .reaction-demo {
    border-color: white;
}

.reaction-demo {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    border: 2px solid #ddd;
    border-radius: 50%;
    position: relative;
}

.reaction-card span {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 14px;
}

.reaction-card small {
    color: #666;
    font-size: 12px;
}

.reaction-card.active small {
    color: rgba(255, 255, 255, 0.8);
}

/* Reaction demo animations */
.reaction-demo.headphones::before {
    content: '🎧';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
}

/* Make demo pets smaller versions */
.reaction-demo.cat {
    background: #ff9500;
}

.reaction-demo.cat::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 8px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 12px solid #ff9500;
    transform: rotate(-20deg);
}

.reaction-demo.cat::after {
    content: '';
    position: absolute;
    top: -6px;
    right: 8px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 12px solid #ff9500;
    transform: rotate(20deg);
}

/* Override for headphones demo */
.reaction-demo.headphones.cat::before {
    content: '🎧';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    border: none;
    width: auto;
    height: auto;
}

/* Pet States */
.pet.idle {
    animation: idle 2s ease-in-out infinite;
}

.pet.happy {
    animation: bounce 0.6s ease-in-out infinite;
    transform: scale(1.1);
}

.pet.sleepy {
    opacity: 0.7;
    animation: sway 3s ease-in-out infinite;
}

.pet.excited {
    animation: shake 0.5s ease-in-out infinite;
}

.pet.headphones::before {
    content: '🎧';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
}

/* Animations */
@keyframes idle {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0px) scale(1.1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

@keyframes sway {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0px); }
    25% { transform: translateX(-3px); }
    75% { transform: translateX(3px); }
}

.pet-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

/* Tracking Info Section */
.tracking-info {
    margin-top: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e9ecef;
}

.tracking-info h3 {
    text-align: center;
    color: #495057;
    margin-bottom: 20px;
    font-size: 18px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.info-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.info-card h4 {
    color: #495057;
    margin-bottom: 12px;
    font-size: 16px;
    border-bottom: 2px solid #667eea;
    padding-bottom: 8px;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card li {
    padding: 6px 0;
    font-size: 14px;
    color: #6c757d;
    border-bottom: 1px solid #f1f3f4;
}

.info-card li:last-child {
    border-bottom: none;
}

.info-card li strong {
    color: #495057;
    font-weight: 600;
}

.demo-note {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.demo-note p {
    margin: 0;
    font-size: 14px;
}

.demo-note strong {
    font-weight: 600;
}

.pet-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.pet-option {
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pet-option:hover, .pet-option.active {
    border-color: #667eea;
    background: #f0f8ff;
}

.pet-option.premium {
    border-color: #ffd700;
    background: linear-gradient(45deg, #fff9c4, #f7dc6f);
}

.pet-option .pet {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.upload-area {
    text-align: center;
    padding: 40px;
    border: 2px dashed #ddd;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.upload-area:hover {
    border-color: #667eea;
    background: #f0f8ff;
}

#avatar-upload {
    display: none;
}

.upload-area label {
    cursor: pointer;
    display: block;
    font-size: 18px;
    color: #667eea;
}

.upload-area label span {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

.reaction-list {
    margin-bottom: 20px;
}

.reaction-item {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    align-items: center;
}

.site-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.reaction-select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    min-width: 150px;
}

.preview-btn {
    background: #667eea;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.preview-btn:hover {
    background: #5a6fd8;
}

.remove-btn {
    background: #e74c3c;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
}

.reaction-preview {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #667eea;
}

.reaction-preview h3 {
    margin-bottom: 15px;
    color: #667eea;
    text-align: center;
}

.preview-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

#preview-pet {
    width: 60px;
    height: 60px;
}

.preview-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.preview-info span:first-child {
    font-weight: bold;
    color: #333;
}

.preview-info span:last-child {
    color: #666;
    font-size: 14px;
}

#add-reaction {
    background: #27ae60;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.download-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
}

.extension-download {
    text-align: center;
}

@media (max-width: 768px) {
    .dashboard {
        grid-template-columns: 1fr;
    }
    
    .pet-options {
        flex-direction: column;
        align-items: center;
    }
}

/* AI Animation Styles */
.ai-animation {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.ai-animation h3 {
    color: #667eea;
    margin-bottom: 15px;
}

.ai-controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.ai-input {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.ai-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.ai-input::placeholder {
    color: #999;
    font-style: italic;
}

.ai-select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
}

.ai-btn {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.ai-btn:hover {
    transform: translateY(-2px);
}

.ai-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.animation-preview {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.animation-preview h4 {
    margin-bottom: 15px;
    color: #333;
}

#animated-pet {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.save-controls {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.name-input {
    flex: 1;
    max-width: 200px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.name-input:focus {
    outline: none;
    border-color: #27ae60;
}

.save-btn {
    background: #27ae60;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    white-space: nowrap;
}

.ai-status {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}

.ai-status.loading {
    background: #fff3cd;
    color: #856404;
}

.ai-status.success {
    background: #d4edda;
    color: #155724;
}

.ai-status.error {
    background: #f8d7da;
    color: #721c24;
}

/* AI Generated Animations */
.pet.ai-bounce {
    animation: ai-bounce 0.8s ease-in-out infinite;
}

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

.pet.ai-wiggle {
    animation: ai-wiggle 0.6s ease-in-out infinite;
}

.pet.ai-pulse {
    animation: ai-pulse 2s ease-in-out infinite;
}

.pet.ai-spin {
    animation: ai-spin 2s linear infinite;
}

@keyframes ai-bounce {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

@keyframes ai-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-8px) rotate(2deg); }
    66% { transform: translateY(-4px) rotate(-2deg); }
}

@keyframes ai-wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

@keyframes ai-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

@keyframes ai-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
