.mods_header_actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.mods_info_btn {
    width: 48px;
    height: 48px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    flex-shrink: 0;
    overflow: visible;
}

.mods_info_btn svg {
    width: 24px;
    height: 24px;
    color: rgba(251, 191, 36, 1);
    stroke: currentColor;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mods_info_btn:hover {
    background: rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.5);
    transform: translateY(-2px);
}

.info-content {
    padding: 1.5rem;
    max-height: 70vh;
    overflow-y: auto;
}

.info-section {
    margin-bottom: 2.5rem;
}

.info-section:last-of-type {
    margin-bottom: 1.5rem;
}

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

.info-section-header svg {
    width: 24px;
    height: 24px;
    color: rgba(251, 191, 36, 1);
    flex-shrink: 0;
}

.info-section-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.info-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.info-code-block {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    overflow-x: auto;
}

.info-code-block pre {
    margin: 0;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.5;
}

.info-code-block code {
    color: rgba(251, 191, 36, 0.9);
}

.info-tips {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.info-tip {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(251, 191, 36, 0.05);
    border-left: 3px solid rgba(251, 191, 36, 0.5);
    border-radius: 4px;
}

.info-tip svg {
    width: 18px;
    height: 18px;
    color: rgba(251, 191, 36, 1);
    flex-shrink: 0;
    margin-top: 2px;
}

.info-tip span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

.info-tip code {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.125rem 0.375rem;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: rgba(251, 191, 36, 1);
}

.info-tip strong {
    color: rgba(251, 191, 36, 1);
    font-weight: 600;
}

.info-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
}

.info-footer .btn-primary {
    padding: 0.875rem 2rem;
    background: rgba(251, 191, 36, 1);
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.info-footer .btn-primary:hover {
    background: rgba(251, 191, 36, 0.9);
    transform: translateY(-2px);
}

.info-content::-webkit-scrollbar {
    width: 8px;
}

.info-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.info-content::-webkit-scrollbar-thumb {
    background: rgba(251, 191, 36, 0.3);
    border-radius: 4px;
}

.info-content::-webkit-scrollbar-thumb:hover {
    background: rgba(251, 191, 36, 0.5);
}

@media (max-width: 768px) {
    .mods_header_actions {
        flex-direction: column;
        width: 100%;
    }
    
    .mods_info_btn {
        width: 100%;
    }
    
    .info-content {
        max-height: 60vh;
    }
}
