:root {
    --dark-green: #1E2822;
    --medium-green: #273234;
    --gold: #D89950;
    --dark-gold: #A56923;
    --white: #FFFFFF;
    --light-bg: rgba(255,255,255,0.05);
}

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

body.wolf-corner {
    font-family: 'PT Sans', sans-serif;
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--dark-green);
    min-height: 100vh;
}

.wolf-corner h1,
.wolf-corner h2,
.wolf-corner h3,
.wolf-corner h4 {
    font-family: 'PT Sans Caption', serif;
    color: var(--gold);
    font-weight: normal;
}

.wolf-corner a {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.wolf-corner a:hover {
    color: var(--white);
}

.wolf-corner ::-webkit-scrollbar {
    width: 10px;
}

.wolf-corner ::-webkit-scrollbar-track {
    background: rgba(30, 40, 34, 0.5);
    border-radius: 5px;
}

.wolf-corner ::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 5px;
    border: 2px solid rgba(30, 40, 34, 0.5);
}

.wolf-corner ::-webkit-scrollbar-thumb:hover {
    background: var(--dark-gold);
}

.wolf-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.wolf-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: var(--medium-green);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px 0;
    box-shadow: 5px 0 25px rgba(0,0,0,0.3);
    transition: transform 0.4s ease;
    border-right: 2px solid rgba(216, 153, 80, 0.3);
}

.wolf-sidebar.hidden {
    transform: translateX(-100%);
}

.wolf-sidebar-header {
    padding: 0 20px 20px;
    border-bottom: 2px solid var(--gold);
    margin-bottom: 20px;
}

.wolf-logo {
    display: flex;
    align-items: center;
    font-size: 20px;
    color: var(--gold);
    font-family: 'PT Sans Caption', serif;
}

.wolf-logo i {
    margin-right: 10px;
    font-size: 24px;
}

.wolf-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wolf-nav li {
    margin-bottom: 5px;
}

.wolf-nav a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    border-radius: 8px;
    margin: 0 15px;
    gap: 12px;
}

.wolf-nav a:hover {
    background: rgba(216, 153, 80, 0.1);
    color: var(--gold);
    border-left-color: var(--gold);
    transform: translateX(5px);
}

.wolf-nav a.active {
    background: rgba(216, 153, 80, 0.2);
    color: var(--gold);
    border-left-color: var(--gold);
}

.wolf-nav i {
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.wolf-main {
    margin-left: 280px;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark-green) 0%, #1a231e 100%);
    transition: margin-left 0.4s ease;
}

.wolf-main.expanded {
    margin-left: 0;
}

.wolf-header {
    position: sticky;
    top: 0;
    background: rgba(30, 40, 34, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    z-index: 900;
    border-bottom: 2px solid var(--gold);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wolf-page-title {
    font-family: 'PT Sans Caption', serif;
    color: var(--gold);
    font-size: 32px;
    font-weight: normal;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.wolf-page-title i {
    margin-right: 10px;
}

.wolf-menu-toggle {
    display: none;
    background: var(--gold);
    border: none;
    color: var(--dark-green);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
}

.wolf-menu-toggle:hover {
    background: var(--dark-gold);
    transform: scale(1.05);
}

.wolf-content {
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.wolf-card {
    background: rgba(39, 50, 52, 0.7);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 1px solid rgba(216, 153, 80, 0.2);
    transition: all 0.3s ease;
}

.wolf-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    border-color: rgba(216, 153, 80, 0.4);
}

.wolf-search {
    margin-bottom: 30px;
}

.wolf-search-input {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    background: rgba(30, 40, 34, 0.8);
    border: 2px solid rgba(216, 153, 80, 0.3);
    border-radius: 10px;
    color: var(--white);
    transition: all 0.3s ease;
}

.wolf-search-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(216, 153, 80, 0.1);
    background: rgba(216, 153, 80, 0.05);
}

.wolf-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.wolf-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(30, 40, 34, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(216, 153, 80, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.wolf-filter-btn {
    padding: 10px 20px;
    background: rgba(30, 40, 34, 0.8);
    border: 2px solid rgba(216, 153, 80, 0.3);
    border-radius: 30px;
    color: var(--white);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wolf-filter-btn:hover {
    border-color: var(--gold);
    background: rgba(216, 153, 80, 0.1);
    transform: translateY(-2px);
}

.wolf-filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark-green);
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(216, 153, 80, 0.3);
}

.wolf-filter-btn.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

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

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

.wolf-grid {
    display: grid;
    gap: 25px;
}

.wolf-grid-smells {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.wolf-grid-awards {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.wolf-grid-herbs {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.wolf-grid-memories {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

.wolf-grid-prey {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.wolf-grid-litter {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
}

.section-header {
    color: var(--gold);
    font-size: 28px;
    font-weight: normal;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(216, 153, 80, 0.3);
    font-family: 'PT Sans Caption', serif;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
}

.wolf-item {
    background: rgba(30, 40, 34, 0.8);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(216, 153, 80, 0.1);
    animation: fadeInUp 0.5s ease forwards;
}

.wolf-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 25px rgba(216, 153, 80, 0.2);
}

.wolf-item-img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
    padding: 10px;
}

.wolf-item-text {
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
}

.wolf-memories-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.wolf-memory-row {
    display: flex;
    align-items: stretch;
    gap: 20px;
    background: var(--light-bg);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid rgba(216, 153, 80, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.5s ease forwards;
}

.wolf-memory-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--gold);
}

.wolf-memory-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wolf-memory-row:hover::before {
    opacity: 1;
}

.wolf-memory-image {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10px;
    align-self: center;
}

.wolf-memory-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.wolf-memory-row:hover .wolf-memory-image img {
    transform: scale(1.05);
}

.wolf-memory-content {
    flex-grow: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.wolf-memory-text {
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 16px;
    text-align: justify;
    flex-grow: 1;
}

.wolf-memory-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    border-top: 1px solid rgba(216, 153, 80, 0.2);
    padding-top: 15px;
}

.wolf-memory-date {
    font-weight: bold;
    color: var(--gold);
    font-family: 'PT Sans Caption', serif;
}

.wolf-memory-faction {
    background: rgba(216, 153, 80, 0.1);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--gold);
    border: 1px solid rgba(216, 153, 80, 0.3);
    font-family: 'PT Sans Caption', serif;
}

.badges-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.badge-card {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid rgba(216, 153, 80, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.5s ease forwards;
}

.badge-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--gold);
}

.badge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.badge-card:hover::before {
    opacity: 1;
}

.badge-image {
    width: 150px;
    height: 150px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    margin-bottom: 20px;
}

.badge-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

.badge-card:hover .badge-image img {
    transform: scale(1.1);
}

.badge-name {
    font-weight: bold;
    color: var(--white);
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.4;
    font-family: 'PT Sans Caption', serif;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-affiliation {
    font-size: 14px;
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 20px;
    background: rgba(216, 153, 80, 0.1);
    border: 1px solid rgba(216, 153, 80, 0.3);
    font-family: 'PT Sans Caption', serif;
}

.herbs-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.herb-card {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid rgba(216, 153, 80, 0.2);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.5s ease forwards;
}

.herb-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--gold);
}

.herb-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.herb-card:hover::before {
    opacity: 1;
}

.herb-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(216, 153, 80, 0.2);
}

.herb-name {
    font-weight: bold;
    color: var(--gold);
    font-size: 20px;
    margin: 0;
    line-height: 1.4;
    font-family: 'PT Sans Caption', serif;
}

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

.herb-image-container {
    text-align: center;
    min-width: 0;
}

.herb-image-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    font-family: 'PT Sans Caption', serif;
}

.herb-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.herb-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.herb-card:hover .herb-image img {
    transform: scale(1.1);
}

.herb-description {
    padding: 15px;
    background: rgba(30, 40, 34, 0.4);
    border-radius: 10px;
    margin-top: 15px;
    border: 1px solid rgba(216, 153, 80, 0.1);
}

.herb-symptom {
    font-size: 15px;
    color: var(--white);
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    text-align: center;
}

.herb-symptom i {
    color: rgba(255, 255, 255, 0.6);
}

.prey-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.faction-section {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid rgba(216, 153, 80, 0.2);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.5s ease forwards;
}

.faction-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(216, 153, 80, 0.3);
    position: relative;
}

.faction-name {
    font-family: 'PT Sans Caption', serif;
    color: var(--gold);
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    display: flex;
    align-items: center;
}

.faction-name::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
}

.prey-types-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.prey-type {
    background: rgba(30, 40, 34, 0.4);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(216, 153, 80, 0.1);
}

.prey-type-header {
    margin-bottom: 20px;
    text-align: center;
}

.prey-type-name {
    font-family: 'PT Sans Caption', serif;
    color: var(--white);
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    padding: 8px 20px;
    background: rgba(216, 153, 80, 0.1);
    border-radius: 20px;
    display: inline-block;
    border: 1px solid rgba(216, 153, 80, 0.3);
}

.prey-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.prey-card {
    background: rgba(20, 25, 22, 0.8);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(216, 153, 80, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.prey-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--gold);
}

.prey-status {
    font-family: 'PT Sans Caption', serif;
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 15px;
    padding: 5px 15px;
    background: rgba(216, 153, 80, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(216, 153, 80, 0.2);
}

.prey-image {
    width: 100%;
    max-width: 180px;
    height: 150px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-bottom: 15px;
}

.prey-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.prey-card:hover .prey-image img {
    transform: scale(1.1);
}

.prey-images-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    width: 100%;
}

.prey-image-small {
    width: 100%;
    height: 100px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.prey-image-small img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.smells-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 20px;
}

.smell-section {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid rgba(216, 153, 80, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.smell-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
}

.section-title {
    color: var(--gold);
    font-size: 24px;
    font-weight: normal;
    margin: 40px 0 25px;
    padding: 15px 0;
    border-bottom: 3px solid rgba(216, 153, 80, 0.3);
    font-family: 'PT Sans Caption', serif;
    position: relative;
    grid-column: 1 / -1;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
}

.section-title i {
    color: var(--gold);
    font-size: 28px;
}

.smells-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 10px;
}

.smell-card {
    background: rgba(30, 40, 34, 0.8);
    border-radius: 12px;
    padding: 25px 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid rgba(216, 153, 80, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.smell-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    margin-bottom: 20px;
}

.smell-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.smell-name {
    color: var(--white);
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.4;
    font-family: 'PT Sans Caption', serif;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.smell-type {
    color: var(--gold);
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 20px;
    background: rgba(216, 153, 80, 0.1);
    border: 1px solid rgba(216, 153, 80, 0.3);
    font-family: 'PT Sans Caption', serif;
}

.clan-smell .smell-type {
    background: rgba(216, 153, 80, 0.15);
    border-color: rgba(216, 153, 80, 0.4);
}

.spirit-smell .smell-type {
    background: rgba(76, 175, 80, 0.15);
    border-color: rgba(76, 175, 80, 0.4);
    color: #4CAF50;
}

.activity-smell .smell-type {
    background: rgba(33, 150, 243, 0.15);
    border-color: rgba(33, 150, 243, 0.4);
    color: #2196F3;
}

.section-divider {
    margin: 30px 0;
    text-align: center;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(216, 153, 80, 0.3), transparent);
}

.section-divider span {
    background: var(--dark-green);
    padding: 0 20px;
    color: var(--gold);
    font-size: 14px;
    font-family: 'PT Sans Caption', serif;
    position: relative;
    font-style: italic;
}

.litter-container {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-top: 20px;
}

.litter-category {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid rgba(216, 153, 80, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.litter-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
}

.category-header {
    color: var(--gold);
    font-size: 22px;
    font-weight: normal;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(216, 153, 80, 0.3);
    font-family: 'PT Sans Caption', serif;
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-header i {
    color: var(--gold);
    font-size: 24px;
}

.items-count {
    background: rgba(216, 153, 80, 0.2);
    color: var(--gold);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-left: auto;
    border: 1px solid rgba(216, 153, 80, 0.3);
    font-family: 'PT Sans', sans-serif;
}

.litter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 20px;
    margin-top: 10px;
}

.litter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.item-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: all 0.3s ease;
}

.item-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.item-name {
    color: var(--white);
    font-size: 12px;
    margin-top: 8px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    font-family: 'PT Sans', sans-serif;
    max-width: 90px;
    word-break: break-word;
    line-height: 1.3;
}

.story-section {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    border: 2px solid rgba(216, 153, 80, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
}

.story-content {
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    line-height: 1.8;
    text-align: justify;
    font-family: 'PT Sans', sans-serif;
}

.story-content p {
    margin-bottom: 25px;
    text-indent: 20px;
}

.story-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 12px;
    border: 2px solid rgba(216, 153, 80, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.story-divider {
    margin: 50px 0;
    text-align: center;
    position: relative;
}

.story-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(216, 153, 80, 0.3), transparent);
}

.story-divider span {
    background: var(--dark-green);
    padding: 0 25px;
    color: var(--gold);
    font-size: 16px;
    font-family: 'PT Sans Caption', serif;
    position: relative;
    font-style: italic;
    letter-spacing: 2px;
}

.nav-toc {
    position: fixed;
    right: 30px;
    top: 150px;
    background: var(--light-bg);
    border-radius: 12px;
    padding: 25px;
    width: 250px;
    border: 2px solid rgba(216, 153, 80, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    display: none;
}

.toc-title {
    color: var(--gold);
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 20px;
    font-family: 'PT Sans Caption', serif;
    border-bottom: 1px solid rgba(216, 153, 80, 0.3);
    padding-bottom: 10px;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-item {
    margin-bottom: 10px;
}

.toc-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.toc-link:hover {
    color: var(--gold);
    background: rgba(216, 153, 80, 0.1);
    border-left-color: var(--gold);
}

.quote {
    background: rgba(39, 50, 52, 0.8);
    border-left: 4px solid var(--gold);
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    position: relative;
}

.quote::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 15px;
    font-size: 60px;
    color: rgba(216, 153, 80, 0.3);
    font-family: 'PT Sans Caption', serif;
}

.maps-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 20px;
}

.map-category {
    position: relative;
    overflow: hidden;
}

.category-title {
    color: var(--gold);
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(216, 153, 80, 0.3);
    font-family: 'PT Sans Caption', serif;
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-title i {
    color: var(--gold);
    font-size: 28px;
}

.maps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 15px;
}

.map-card {
    background: rgba(30, 40, 34, 0.8);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid rgba(216, 153, 80, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.map-link {
    display: inline-block;
    background: var(--gold);
    color: var(--dark-green) !important;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    margin: 20px 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(216, 153, 80, 0.3);
    font-family: 'PT Sans Caption', serif;
    border: 2px solid rgba(216, 153, 80, 0.3);
}

.map-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(216, 153, 80, 0.5);
    background: linear-gradient(135deg, var(--dark-gold), var(--gold));
    color: var(--white) !important;
}

.map-authors {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-top: 10px;
    line-height: 1.6;
    width: 100%;
}

.map-author {
    display: block;
    margin: 5px 0;
    padding: 3px 0;
    border-bottom: 1px solid rgba(216, 153, 80, 0.1);
}

.map-author:last-child {
    border-bottom: none;
}

.map-author-id {
    color: var(--gold);
    font-weight: bold;
    margin-left: 5px;
    font-family: 'PT Sans Caption', serif;
}

.bots-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.bot-card {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid rgba(216, 153, 80, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bot-image {
    width: 350px;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.bot-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.3));
}

.bot-name {
    color: var(--white);
    font-weight: bold;
    font-size: 18px;
    line-height: 1.4;
    font-family: 'PT Sans Caption', serif;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bot-type {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-top: 5px;
    font-family: 'PT Sans', sans-serif;
}

.bots-stats {
    margin-top: 50px;
    padding: 30px;
    background: rgba(30, 40, 34, 0.8);
    border-radius: 15px;
    border: 2px solid rgba(216, 153, 80, 0.2);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.stats-title {
    color: var(--gold);
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 25px;
    font-family: 'PT Sans Caption', serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stats-title i {
    color: var(--gold);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.stats-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(216, 153, 80, 0.2);
}

.stats-row:last-child {
    border-bottom: none;
}

.stats-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.stats-value {
    color: var(--gold);
    font-weight: bold;
    font-size: 18px;
    font-family: 'PT Sans Caption', serif;
}

.wolf-herb-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 20px;
    align-items: center;
    padding: 15px;
    background: rgba(30, 40, 34, 0.6);
    border-radius: 12px;
    margin-bottom: 15px;
    animation: fadeInUp 0.5s ease forwards;
}

.wolf-herb-name {
    font-size: 18px;
    font-weight: bold;
    color: var(--gold);
}

.wolf-herb-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    font-style: italic;
    margin-top: 5px;
}

.wolf-herb-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.wolf-prey-group {
    margin-bottom: 40px;
}

.wolf-prey-title {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
}

.wolf-prey-variants {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.wolf-prey-variant {
    text-align: center;
}

.wolf-prey-variant-name {
    font-size: 16px;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.9);
}

.wolf-story {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 16px;
}

.wolf-story-img {
    width: 100%;
    max-width: 600px;
    margin: 30px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.wolf-story-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--gold);
}

.wolf-story-text {
    margin-bottom: 30px;
    text-align: justify;
}

.no-results {
    text-align: center;
    padding: 40px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    grid-column: 1 / -1;
    font-family: 'PT Sans Caption', serif;
}

.wolf-loading {
    text-align: center;
    padding: 40px;
}

.wolf-loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(216, 153, 80, 0.3);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: wolf-spin 1s linear infinite;
    margin: 0 auto 20px;
}

.wolf-no-results {
    text-align: center;
    padding: 50px 20px;
    color: rgba(255,255,255,0.6);
    font-size: 18px;
}

.wolf-no-results i {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0.5;
}

.wolf-tooltip {
    position: relative;
    display: inline-block;
}

.wolf-tooltip .wolf-tooltip-text {
    visibility: hidden;
    width: 200px;
    background-color: var(--medium-green);
    color: var(--white);
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    border: 1px solid var(--gold);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    font-size: 14px;
}

.wolf-tooltip:hover .wolf-tooltip-text {
    visibility: visible;
    opacity: 1;
}

.wolf-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--dark-green);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.wolf-back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.wolf-back-to-top:hover {
    background: var(--dark-gold);
    transform: translateY(-3px);
}

@media (max-width: 1200px) {
    .nav-toc {
        display: none;
    }
}

@media (max-width: 992px) {
    .wolf-sidebar {
        width: 250px;
        transform: translateX(-100%);
    }
    
    .wolf-sidebar.active {
        transform: translateX(0);
    }
    
    .wolf-main {
        margin-left: 0 !important;
    }
    
    .wolf-menu-toggle {
        display: flex;
    }
    
    .wolf-grid-smells { 
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); 
    }
    
    .wolf-grid-awards { 
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); 
    }
    
    .wolf-grid-herbs { 
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
    }
    
    .wolf-grid-memories { 
        grid-template-columns: 1fr; 
    }
    
    .badges-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .herbs-container {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .prey-cards {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .smells-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .litter-grid {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        gap: 15px;
    }
    
    .item-image {
        width: 80px;
        height: 80px;
    }
    
    .maps-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .bots-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .bot-image {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 768px) {
    .wolf-main {
        padding: 15px;
    }
    
    .wolf-page-title {
        font-size: 24px;
    }
    
    .wolf-header {
        padding: 15px;
    }
    
    .wolf-content {
        padding: 20px;
    }
    
    .wolf-filters {
        padding: 15px;
        gap: 8px;
    }
    
    .wolf-filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .wolf-card {
        padding: 20px;
    }
    
    .wolf-memory-row {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
    }
    
    .wolf-memory-image {
        width: 100%;
        max-width: 250px;
        height: 250px;
        margin: 0 auto 20px;
    }
    
    .wolf-memory-text {
        font-size: 15px;
    }
    
    .wolf-grid-smells { 
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); 
    }
    
    .wolf-grid-awards { 
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); 
    }
    
    .wolf-herb-row { 
        grid-template-columns: 1fr; 
    }
    
    .badges-container {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 15px;
    }
    
    .badge-card {
        padding: 20px 15px;
    }
    
    .badge-image {
        width: 120px;
        height: 120px;
        margin-bottom: 15px;
    }
    
    .badge-name {
        font-size: 15px;
        min-height: 40px;
    }
    
    .section-title {
        font-size: 20px;
        margin: 30px 0 20px;
    }
    
    .herbs-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .herb-card {
        padding: 20px 15px;
    }
    
    .herb-name {
        font-size: 18px;
    }
    
    .herb-image {
        height: 100px;
    }
    
    .faction-section {
        padding: 20px 15px;
    }
    
    .faction-name {
        font-size: 20px;
    }
    
    .prey-cards {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 12px;
    }
    
    .prey-card {
        padding: 15px;
    }
    
    .prey-image {
        max-width: 160px;
        height: 130px;
    }
    
    .smell-section {
        padding: 20px;
    }
    
    .section-title {
        font-size: 20px;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }
    
    .section-title i {
        font-size: 22px;
    }
    
    .smells-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }
    
    .smell-card {
        padding: 20px 15px;
    }
    
    .smell-image {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }
    
    .smell-name {
        font-size: 16px;
        min-height: 40px;
    }
    
    .litter-category {
        padding: 20px;
    }
    
    .category-header {
        font-size: 18px;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }
    
    .category-header i {
        font-size: 20px;
    }
    
    .litter-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 12px;
    }
    
    .item-image {
        width: 70px;
        height: 70px;
        padding: 8px;
    }
    
    .item-name {
        font-size: 11px;
    }
    
    .story-section {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .section-header {
        font-size: 22px;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }
    
    .story-content {
        font-size: 16px;
        line-height: 1.7;
    }
    
    .story-content p {
        margin-bottom: 20px;
    }
    
    .story-content img {
        margin: 20px auto;
    }
    
    .story-divider {
        margin: 30px 0;
    }
    
    .quote {
        padding: 15px;
        margin: 20px 0;
    }
    
    .map-category {
        padding: 20px;
    }
    
    .category-title {
        font-size: 20px;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }
    
    .category-title i {
        font-size: 22px;
    }
    
    .maps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .map-card {
        padding: 20px;
    }
    
    .map-link {
        padding: 10px 25px;
        font-size: 15px;
        margin: 15px 0;
    }
    
    .bots-container {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }
    
    .bot-card {
        padding: 20px 15px;
    }
    
    .bot-image {
        width: 140px;
        height: 140px;
        margin-bottom: 15px;
    }
    
    .bot-name {
        font-size: 16px;
        min-height: 40px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .wolf-content {
        padding: 15px;
    }
    
    .wolf-memory-info {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .wolf-filters {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .wolf-filter-btn {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
    
    .wolf-memory-image {
        height: 180px;
    }
    
    .wolf-grid-smells { 
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); 
    }
    
    .wolf-grid-awards { 
        grid-template-columns: 1fr; 
    }
    
    .wolf-memory-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .badges-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .badge-card {
        padding: 20px;
    }
    
    .badge-image {
        width: 140px;
        height: 140px;
    }
    
    .herbs-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .herb-card {
        padding: 20px;
    }
    
    .herb-images {
        flex-direction: column;
        gap: 20px;
    }
    
    .herb-image {
        height: 120px;
    }
    
    .prey-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .prey-card {
        padding: 20px;
    }
    
    .prey-image {
        max-width: 180px;
        height: 140px;
    }
    
    .prey-images-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .smells-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .smell-card {
        padding: 15px 10px;
    }
    
    .smell-image {
        width: 80px;
        height: 80px;
        padding: 10px;
    }
    
    .smell-name {
        font-size: 14px;
        min-height: 35px;
    }
    
    .smell-type {
        font-size: 12px;
        padding: 5px 15px;
    }
    
    .litter-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    
    .item-image {
        width: 60px;
        height: 60px;
        padding: 6px;
    }
    
    .item-name {
        font-size: 10px;
        max-width: 60px;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .items-count {
        margin-left: 0;
        align-self: flex-start;
    }
    
    .wolf-page-title {
        font-size: 24px;
    }
    
    .story-section {
        padding: 20px;
    }
    
    .section-header {
        font-size: 20px;
    }
    
    .story-content {
        font-size: 15px;
        text-align: left;
    }
    
    .quote {
        padding: 12px;
    }
    
    .maps-grid {
        gap: 15px;
    }
    
    .map-card {
        padding: 15px;
    }
    
    .map-link {
        padding: 8px 20px;
        font-size: 14px;
    }
    
    .map-authors {
        font-size: 13px;
    }
    
    .bots-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .bot-card {
        padding: 15px 10px;
    }
    
    .bot-image {
        width: 120px;
        height: 120px;
        padding: 10px;
    }
    
    .bot-name {
        font-size: 15px;
        min-height: 35px;
    }
    
    .bot-type {
        font-size: 12px;
    }
    
    .bots-stats {
        padding: 20px;
    }
}

@media (max-width: 360px) {
    .wolf-memory-image {
        height: 160px;
    }
    
    .badge-image {
        width: 120px;
        height: 120px;
    }
    
    .badge-name {
        font-size: 14px;
    }
    
    .herb-name {
        font-size: 16px;
    }
    
    .herb-image {
        height: 100px;
    }
    
    .faction-name {
        font-size: 18px;
    }
    
    .prey-image {
        max-width: 160px;
        height: 120px;
    }
    
    .smells-grid {
        grid-template-columns: 1fr;
    }
    
    .smell-card {
        padding: 20px;
    }
    
    .smell-image {
        width: 100px;
        height: 100px;
    }
    
    .litter-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .item-image {
        width: 70px;
        height: 70px;
    }
    
    .bots-container {
        grid-template-columns: 1fr;
    }
    
    .bot-card {
        padding: 20px;
    }
    
    .bot-image {
        width: 160px;
        height: 160px;
    }
}