.devs-description {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.description-card {
    background: rgba(45, 27, 78, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(196, 122, 255, 0.3);
    box-shadow: 0 8px 25px rgba(156, 89, 209, 0.3);
    position: relative;
    overflow: hidden;
}

.description-card::before {
    content: '❀';
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(228, 180, 225, 0.2);
    font-size: 3rem;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.card-header h3 {
    color: #e8b4e1;
    font-size: 2rem;
    font-weight: 400;
    margin: 0 0 1rem 0;
    text-shadow: 0 2px 8px rgba(228, 180, 225, 0.3);
}

.decorative-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, #e8b4e1, #c47aff, transparent);
    margin: 0 auto;
    width: 200px;
    border-radius: 2px;
}

.description-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #f8f0ff;
    text-align: justify;
    margin: 0;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.spec-card {
    background: rgba(45, 27, 78, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(196, 122, 255, 0.3);
    box-shadow: 0 6px 20px rgba(156, 89, 209, 0.3);
}

.spec-card h4 {
    color: #e8b4e1;
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0 0 1.5rem 0;
    text-align: center;
    text-shadow: 0 2px 6px rgba(228, 180, 225, 0.3);
}

.requirements-table {
    overflow-x: auto;
}

.requirements-table table {
    width: 100%;
    border-collapse: collapse;
    color: #f8f0ff;
}

.requirements-table th {
    background: linear-gradient(135deg, rgba(156, 89, 209, 0.6), rgba(196, 122, 255, 0.4));
    color: #f8f0ff;
    padding: 12px 8px;
    text-align: left;
    font-weight: 500;
    font-size: 0.9rem;
    border-bottom: 2px solid #c47aff;
}

.requirements-table td {
    padding: 10px 8px;
    border-bottom: 1px solid rgba(196, 122, 255, 0.2);
    font-size: 0.9rem;
}

.requirements-table tr:nth-child(even) {
    background: rgba(156, 89, 209, 0.1);
}

.requirements-table tr:hover td {
    background: rgba(228, 180, 225, 0.2);
}

.info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.info-card {
    background: rgba(45, 27, 78, 0.6);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(196, 122, 255, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(156, 89, 209, 0.3);
    transform: translateX(5px);
}

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-content strong {
    color: #e8b4e1;
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
}

.info-content span:not(.tag) {
    color: #f8f0ff;
}

.status-released {
    color: #a3e4a3 !important;
    font-weight: 500;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.tag {
    background: rgba(156, 89, 209, 0.3);
    color: #f8f0ff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    border: 1px solid rgba(196, 122, 255, 0.2);
}

.support-section {
    text-align: center;
    margin-bottom: 2rem;
}

.support-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #e8b4e1, #c47aff);
    color: #5a3a7a;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(156, 89, 209, 0.4);
}

.support-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(228, 180, 225, 0.6);
    color: #3d2a5e;
}

.btn-icon {
    font-size: 1.2rem;
}

/* Адаптивность */
@media (max-width: 968px) {
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .devs-description {
        padding: 1rem;
    }
    
    .description-card,
    .spec-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .info-card {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .tags {
        justify-content: center;
    }
    
    .card-header h3 {
        font-size: 1.5rem;
    }
    
    .description-text {
        font-size: 1rem;
        text-align: left;
    }
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.description-card,
.spec-card,
.info-card {
    animation: fadeInUp 0.6s ease-out;
}


/* Стили для локализации */
.localization-card {
    background: rgba(45, 27, 78, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(196, 122, 255, 0.3);
    box-shadow: 0 6px 20px rgba(156, 89, 209, 0.3);
}

.localization-card h4 {
    color: #e8b4e1;
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0 0 1.5rem 0;
    text-align: center;
    text-shadow: 0 2px 6px rgba(228, 180, 225, 0.3);
}

.localization-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.localization-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(156, 89, 209, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(196, 122, 255, 0.2);
    transition: all 0.3s ease;
}

.localization-item:hover {
    background: rgba(228, 180, 225, 0.2);
    transform: translateX(5px);
}

.localization-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.localization-content {
    flex: 1;
}

.localization-content strong {
    color: #e8b4e1;
    font-weight: 500;
    display: block;
    margin-bottom: 0.3rem;
}

.localization-content span {
    color: #f8f0ff;
}

/* Сетка для требований */
.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Стили для примечаний в таблицах */
.requirement-note {
    color: #e8b4e1;
    font-style: italic;
    font-size: 0.9em;
}

/* Секция тегов */
.tags-section {
    margin-bottom: 2rem;
}

.tags-section .spec-card {
    text-align: center;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tag {
    background: rgba(156, 89, 209, 0.3);
    color: #f8f0ff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    border: 1px solid rgba(196, 122, 255, 0.2);
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(228, 180, 225, 0.4);
    transform: translateY(-2px);
}

/* Адаптивность */
@media (max-width: 968px) {
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .localization-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .tags {
        gap: 0.3rem;
    }
    
    .tag {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
}



/* Карточка заголовка игры */
.game-header-card {
    background: rgba(45, 27, 78, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid rgba(196, 122, 255, 0.3);
    box-shadow: 0 8px 25px rgba(156, 89, 209, 0.3);
    margin: 3rem auto;
    padding: 2.5rem;
    max-width: 900px;
    position: relative;
    overflow: hidden;
}

.game-header-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e8b4e1, #c47aff, #9c59d1);
    border-radius: 3px 3px 0 0;
}

.game-header-content {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

/* Секция с логотипом */
.game-logo-section {
    flex-shrink: 0;
}

.logo-container {
    position: relative;
    display: inline-block;
}

.game-logo {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    border: 3px solid rgba(228, 180, 225, 0.3);
    box-shadow: 0 8px 20px rgba(156, 89, 209, 0.4);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(228, 180, 225, 0.2) 0%, transparent 70%);
    border-radius: 25px;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.logo-container:hover .game-logo {
    transform: scale(1.05);
    border-color: rgba(228, 180, 225, 0.6);
    box-shadow: 0 12px 30px rgba(228, 180, 225, 0.5);
}

.logo-container:hover .logo-glow {
    opacity: 1;
}

/* Секция с информацией */
.game-info-section {
    flex: 1;
}

.game-title-section {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.game-title {
    color: #e8b4e1;
    font-size: 2.5rem;
    font-weight: 400;
    margin: 0;
    text-shadow: 0 2px 8px rgba(228, 180, 225, 0.3);
    letter-spacing: 1px;
}

/* Стили для ценников */
.price-tag {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.price-tag.free {
    background: linear-gradient(45deg, #a3e4a3, #58d68d);
    color: #1a5276;
    border: 1px solid rgba(163, 228, 163, 0.5);
}

.price-tag.paid {
    background: linear-gradient(45deg, #f7dc6f, #f8c471);
    color: #7d6608;
    border: 1px solid rgba(247, 220, 111, 0.5);
}

.price-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Контейнер для itch.io embed */
.itch-embed-container {
    background: rgba(7, 16, 23, 0.7);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(196, 122, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.itch-embed-container:hover {
    border-color: rgba(228, 180, 225, 0.4);
    box-shadow: 0 6px 20px rgba(156, 89, 209, 0.3);
}

.itch-embed-container iframe {
    border-radius: 10px;
    border: none;
    height: 175px;
}

/* Декоративные элементы */
.game-header-card::after {
    content: '🎮';
    position: absolute;
    bottom: 15px;
    right: 20px;
    font-size: 2rem;
    opacity: 0.1;
    transform: rotate(15deg);
}

/* Анимация появления */
@keyframes headerSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.game-header-card {
    animation: headerSlideIn 0.6s ease-out;
}

.game-header-card:nth-child(2) {
    animation-delay: 0.2s;
}

/* Адаптивность */
@media (max-width: 968px) {
    .game-header-card {
        margin: 2rem 1rem;
        padding: 2rem;
    }
    
    .game-header-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .game-title-section {
        justify-content: center;
    }
    
    .game-logo {
        width: 180px;
        height: 180px;
    }
    
    .logo-glow {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .game-header-card {
        padding: 1.5rem;
    }
    
    .game-title {
        font-size: 2rem;
    }
    
    .game-logo {
        width: 150px;
        height: 150px;
    }
    
    .logo-glow {
        width: 170px;
        height: 170px;
    }
    
    .itch-embed-container {
        padding: 1rem;
    }
    
    .price-tag {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .game-header-card {
        margin: 1.5rem 0.5rem;
        padding: 1.2rem;
    }
    
    .game-title {
        font-size: 1.8rem;
    }
    
    .game-title-section {
        flex-direction: column;
        gap: 1rem;
    }
    
    .game-logo {
        width: 130px;
        height: 130px;
    }
    
    .logo-glow {
        width: 150px;
        height: 150px;
    }
}