/* ===================================
   SEAL ONLINE WIKI STYLES
   Enhanced with Animations & Effects
   =================================== */

.particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatParticle 15s infinite ease-in-out;
}

@keyframes floatParticle {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }

    25% {
        transform: translateY(-50px) translateX(30px);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-100px) translateX(-20px);
        opacity: 0.4;
    }

    75% {
        transform: translateY(-50px) translateX(40px);
        opacity: 0.5;
    }
}

.wiki-container {
    display: flex;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* Sidebar */
.wiki-sidebar {
    width: 260px;
    background: rgba(15, 15, 35, 0.98);
    border-right: 1px solid rgba(138, 43, 226, 0.3);
    padding: 1.5rem;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    backdrop-filter: blur(10px);
    box-shadow: 5px 0 30px rgba(138, 43, 226, 0.1);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(138, 43, 226, 0.5));
}

.sidebar-logo img {
    transition: transform 0.3s ease;
}

.sidebar-logo:hover img {
    transform: rotate(10deg) scale(1.1);
}

.sidebar-section {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.sidebar-section:nth-child(1) {
    animation-delay: 0.1s;
}

.sidebar-section:nth-child(2) {
    animation-delay: 0.2s;
}

.sidebar-section:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sidebar-title {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

.sidebar-menu {
    list-style: none;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 0.25rem;
    position: relative;
    overflow: hidden;
}

.sidebar-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(180deg, #8a2be2, #00d4ff);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.sidebar-menu a:hover::before,
.sidebar-menu a.active::before {
    transform: scaleY(1);
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    background: rgba(138, 43, 226, 0.2);
    color: var(--accent-purple);
    padding-left: 1.5rem;
}

.sidebar-menu a i {
    width: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.sidebar-menu a:hover i {
    transform: scale(1.2);
}

/* Main Content */
.wiki-main {
    flex: 1;
    margin-left: 260px;
    padding: 2rem;
}

/* Header with Animation */
.wiki-header {
    margin-bottom: 2rem;
    animation: slideInFromTop 0.6s ease;
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wiki-title {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.wiki-title i {
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(138, 43, 226, 0.5));
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px rgba(138, 43, 226, 0.8));
    }
}

/* Filter Bar */
.filter-bar {
    background: rgba(20, 20, 50, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    box-shadow: 0 8px 32px rgba(138, 43, 226, 0.15);
    animation: fadeIn 0.5s ease 0.3s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.search-box {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.search-box:focus-within i {
    color: var(--accent-purple);
    animation: searchPulse 1s infinite;
}

@keyframes searchPulse {

    0%,
    100% {
        transform: translateY(-50%) scale(1);
    }

    50% {
        transform: translateY(-50%) scale(1.2);
    }
}

.search-box input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.filter-select {
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 12px;
    color: var(--text-primary);
    min-width: 150px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Stats Summary */
.stats-bar {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.stat-box {
    background: rgba(20, 20, 50, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 16px;
    padding: 1.25rem 1.75rem;
    text-align: center;
    min-width: 130px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(138, 43, 226, 0.1), transparent);
    transform: rotate(45deg);
    animation: shineEffect 3s infinite;
}

@keyframes shineEffect {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.stat-box:hover {
    transform: translateY(-8px);
    border-color: rgba(138, 43, 226, 0.6);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.3);
}

.stat-box .value {
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.page-btn {
    padding: 0.6rem 1.1rem;
    background: rgba(20, 20, 50, 0.8);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 10px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.page-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.3);
}

.page-btn:hover,
.page-btn.active {
    background: var(--gradient-primary);
    border-color: var(--accent-purple);
    color: white;
}

/* Monster Specific */
.alphabet-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.alpha-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 20, 50, 0.8);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 8px;
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: popIn 0.4s ease forwards;
    opacity: 0;
    transform: scale(0);
}

@keyframes popIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.alpha-btn:hover {
    transform: translateY(-3px) scale(1.1);
}

.alpha-btn:hover,
.alpha-btn.active {
    background: linear-gradient(135deg, #8a2be2, #00d4ff);
    border-color: var(--accent-purple);
    color: white;
    box-shadow: 0 0 25px rgba(138, 43, 226, 0.5);
}

.monster-table {
    background: rgba(20, 20, 50, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    animation: tableSlideIn 0.6s ease 0.5s forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes tableSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.table-header {
    display: grid;
    grid-template-columns: 80px 1fr 80px 100px 100px 1fr 1fr;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(138, 43, 226, 0.2);
    font-weight: 700;
    color: var(--text-primary);
    border-bottom: 2px solid rgba(138, 43, 226, 0.3);
}

.monster-row {
    display: grid;
    grid-template-columns: 80px 1fr 80px 100px 100px 1fr 1fr;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(138, 43, 226, 0.1);
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: rgba(20, 20, 50, 0.4);
}

.monster-row:hover {
    background: rgba(138, 43, 226, 0.15);
    transform: scale(1.01);
}

.monster-id {
    color: var(--accent-purple);
    font-weight: 600;
}

.monster-name {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.monster-info h4 {
    margin: 0;
    color: white;
}

.monster-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.monster-level {
    font-weight: bold;
}

.monster-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, #8a2be2, #00d4ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

.element-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.element-none {
    background: rgba(158, 158, 158, 0.2);
    color: #9e9e9e;
}

.element-earth {
    background: rgba(121, 85, 72, 0.2);
    color: #795548;
}

.element-dark {
    background: rgba(156, 39, 176, 0.2);
    color: #9c27b0;
}

.element-fire {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
}

.monster-drops {
    display: flex;
    gap: 0.5rem;
}

.drop-item {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Skill Specific */
.skill-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.skill-card {
    background: rgba(20, 20, 50, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.skill-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-purple);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.3);
}

.skill-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.skill-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.skill-icon.knight {
    background: linear-gradient(135deg, #ff5722, #e64a19);
}

.skill-icon.mage {
    background: linear-gradient(135deg, #2196f3, #1976d2);
}

.skill-icon.priest {
    background: linear-gradient(135deg, #ffeb3b, #fbc02d);
}

.skill-icon.jester {
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
}

.skill-icon.craftsman {
    background: linear-gradient(135deg, #795548, #5d4037);
}

.skill-name {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 600;
}

.skill-class {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.skill-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.skill-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.skill-stat {
    background: rgba(138, 43, 226, 0.1);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.8rem;
}

.skill-stat .label {
    color: var(--text-muted);
}

.skill-stat .value {
    color: #00ff88;
    font-weight: 600;
}

.class-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.class-knight {
    background: rgba(255, 87, 34, 0.2);
    color: #ff5722;
}

.class-mage {
    background: rgba(33, 150, 243, 0.2);
    color: #2196f3;
}

.class-priest {
    background: rgba(255, 235, 59, 0.2);
    color: #fbc02d;
}

.class-jester {
    background: rgba(156, 39, 176, 0.2);
    color: #9c27b0;
}

.class-craftsman {
    background: rgba(121, 85, 72, 0.2);
    color: #795548;
}

/* Item Specific */
.item-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.item-card {
    background: rgba(20, 20, 50, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.item-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-purple);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.3);
}

.item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.item-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.item-icon.legendary {
    background: linear-gradient(135deg, #ff9800, #f57c00);
}

.item-icon.epic {
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
}

.item-icon.rare {
    background: linear-gradient(135deg, #2196f3, #1976d2);
}

.item-icon.uncommon {
    background: linear-gradient(135deg, #4caf50, #388e3c);
}

.item-icon.common {
    background: linear-gradient(135deg, #9e9e9e, #616161);
}

.item-card:hover .item-icon {
    transform: rotate(10deg) scale(1.1);
}

.item-name {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.item-type {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.item-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.item-stat {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(138, 43, 226, 0.1);
}

.item-stat:last-child {
    border-bottom: none;
}

.stat-name {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.stat-value {
    color: #00ff88;
    font-weight: 600;
    font-size: 0.9rem;
}

.item-rarity {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Pet Specific */
.pet-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
}

.pet-tab {
    padding: 0.75rem 1.25rem;
    background: rgba(20, 20, 50, 0.8);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 12px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pet-tab:hover,
.pet-tab.active {
    background: var(--gradient-primary);
    border-color: var(--accent-purple);
    color: white;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
}

.pet-tab .pet-icon {
    font-size: 1.2rem;
}

.evo-container {
    background: rgba(20, 20, 50, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.evo-title {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 4px solid var(--accent-purple);
    padding-left: 1rem;
}

.evo-tree {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.evo-stage {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.stage-label {
    width: 120px;
    text-align: right;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    flex-shrink: 0;
}

.stage-pets {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    flex: 1;
}

.evo-arrow {
    display: flex;
    justify-content: center;
    padding-left: 140px;
    color: var(--accent-purple);
    font-size: 1.8rem;
    margin: 0.5rem 0;
}

.evo-arrow i {
    animation: bounceDown 2s infinite;
}

@keyframes bounceDown {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.5;
    }

    50% {
        transform: translateY(8px);
        opacity: 1;
    }
}

/* Pet Card (Evo Tree Version) */
.evo-container .pet-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 16px;
    padding: 1.25rem;
    width: 140px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.evo-container .pet-card:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: var(--accent-purple);
    background: rgba(138, 43, 226, 0.1);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
}

.pet-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(0, 212, 255, 0.2));
    transition: all 0.3s ease;
}

.evo-container .pet-card:hover .pet-image {
    transform: rotate(5deg) scale(1.1);
}

.pet-name {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.pet-id {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.pet-rarity {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-top: 0.75rem;
    text-transform: uppercase;
}

.rarity-common {
    background: rgba(158, 158, 158, 0.2);
    color: #9e9e9e;
}

.rarity-rare {
    background: rgba(33, 150, 243, 0.2);
    color: #2196f3;
}

.rarity-epic {
    background: rgba(156, 39, 176, 0.2);
    color: #9c27b0;
}

.rarity-legendary {
    background: rgba(255, 152, 0, 0.2);
    color: #ff9800;
}

/* Pet Modal */
.pet-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

.pet-modal.active {
    display: flex;
}

.modal-content {
    background: rgba(20, 20, 50, 0.95);
    border: 2px solid rgba(138, 43, 226, 0.5);
    border-radius: 24px;
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0 0 50px rgba(138, 43, 226, 0.3);
    animation: modalScaleUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalScaleUp {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--accent-purple);
    transform: rotate(90deg);
}

.modal-pet-image {
    width: 140px;
    height: 140px;
    border-radius: 20px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.3), rgba(0, 212, 255, 0.3));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-pet-name {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-stats {
    margin-top: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
}

.modal-stat {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-stat:last-child {
    border-bottom: none;
}

.modal-stat-name {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.modal-stat-value {
    color: #00ff88;
    font-weight: 700;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .wiki-sidebar {
        display: none;
    }

    .wiki-main {
        margin-left: 0;
        padding: 1.5rem;
    }

    .monster-row,
    .table-header {
        font-size: 0.8rem;
        padding: 1rem;
    }

    .stage-label {
        width: 80px;
        font-size: 0.8rem;
    }

    .evo-arrow {
        padding-left: 100px;
    }

    .evo-container {
        padding: 1.5rem;
    }
}